123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- object MainForm: TMainForm
- Left = 0
- Top = 0
- Caption = 'Post Effect'
- ClientHeight = 340
- ClientWidth = 545
- Color = clBtnFace
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'Tahoma'
- Font.Style = []
- OldCreateOrder = False
- OnCreate = FormCreate
- PixelsPerInch = 96
- TextHeight = 13
- object Label1: TLabel
- Left = 543
- Top = 33
- Width = 2
- Height = 307
- Align = alRight
- AutoSize = False
- ExplicitLeft = 497
- ExplicitHeight = 293
- end
- object Panel1: TPanel
- Left = 0
- Top = 0
- Width = 545
- Height = 33
- Align = alTop
- TabOrder = 0
- object Label2: TLabel
- Left = 8
- Top = 10
- Width = 50
- Height = 13
- Caption = 'PostEffect'
- end
- object ComboBox1: TComboBox
- Left = 64
- Top = 6
- Width = 145
- Height = 21
- Style = csDropDownList
- ItemIndex = 0
- TabOrder = 0
- Text = 'None'
- OnChange = ComboBox1Change
- Items.Strings = (
- 'None'
- 'Gray'
- 'Negative'
- 'Distort'
- 'Noise'
- 'NightVision'
- 'Blur'
- 'Custom')
- end
- end
- object GLSceneViewer1: TGLSceneViewer
- Left = 0
- Top = 33
- Width = 543
- Height = 307
- Camera = GLCamera1
- Buffer.BackgroundColor = 16776176
- FieldOfView = 143.915725708007800000
- Align = alClient
- TabOrder = 1
- end
- object GLScene1: TGLScene
- Left = 32
- Top = 48
- object GLActor1: TGLActor
- Material.Texture.TextureMode = tmReplace
- Direction.Coordinates = {000000000000803F0000000000000000}
- Scale.Coordinates = {CDCCCC3DCDCCCC3DCDCCCC3D00000000}
- Up.Coordinates = {0000000000000000000080BF00000000}
- Interval = 100
- AutoCentering = [macCenterX, macCenterY, macCenterZ]
- end
- object GLPostEffect1: TGLPostEffect
- OnCustomEffect = GLPostEffect1CustomEffect
- end
- object GLLightSource1: TGLLightSource
- ConstAttenuation = 1.000000000000000000
- Position.Coordinates = {0000204100002041000020410000803F}
- SpotCutOff = 180.000000000000000000
- end
- object GLCamera1: TGLCamera
- DepthOfView = 100.000000000000000000
- FocalLength = 50.000000000000000000
- TargetObject = GLActor1
- Position.Coordinates = {0000A04000008040000040400000803F}
- end
- end
- object GLMaterialLibrary1: TGLMaterialLibrary
- Left = 128
- Top = 48
- end
- object GLCadencer1: TGLCadencer
- Scene = GLScene1
- OnProgress = GLCadencer1Progress
- Left = 32
- Top = 112
- end
- object GLSimpleNavigation1: TGLSimpleNavigation
- Form = Owner
- GLSceneViewer = GLSceneViewer1
- FormCaption = 'GLScene Post Effect - %FPS'
- KeyCombinations = <
- item
- ShiftState = [ssLeft, ssRight]
- Action = snaZoom
- end
- item
- ShiftState = [ssLeft]
- Action = snaMoveAroundTarget
- end
- item
- ShiftState = [ssRight]
- Action = snaMoveAroundTarget
- end>
- Left = 128
- Top = 112
- end
- end
|