LZScene

Форк
0
/
FGUISkinEditor.lfm 
671 строка · 15.8 Кб
1
object GUISkinEditor: TGUISkinEditor
2
  Left = 167
3
  Height = 366
4
  Top = 216
5
  Width = 764
6
  ActiveControl = Button5
7
  Caption = 'Skin Editor'
8
  ClientHeight = 366
9
  ClientWidth = 764
10
  Font.Height = -11
11
  Font.Name = 'MS Sans Serif'
12
  OnCreate = FormCreate
13
  OnDestroy = FormDestroy
14
  OnResize = FormResize
15
  Visible = False
16
  object StatusBar: TStatusBar
17
    Left = 0
18
    Height = 23
19
    Top = 343
20
    Width = 764
21
    Panels = <    
22
      item
23
        Text = 'x:'
24
        Width = 50
25
      end    
26
      item
27
        Text = 'y:'
28
        Width = 50
29
      end    
30
      item
31
        Text = 'dx:'
32
        Width = 50
33
      end    
34
      item
35
        Text = 'dy:'
36
        Width = 50
37
      end    
38
      item
39
        Width = 50
40
      end>
41
  end
42
  object panBottom: TPanel
43
    Left = 0
44
    Height = 32
45
    Top = 311
46
    Width = 764
47
    Align = alBottom
48
    BevelOuter = bvNone
49
    ClientHeight = 32
50
    ClientWidth = 764
51
    TabOrder = 1
52
    object Button5: TButton
53
      Left = 600
54
      Height = 25
55
      Top = 5
56
      Width = 75
57
      Anchors = [akTop, akRight]
58
      Caption = 'OK'
59
      ModalResult = 1
60
      TabOrder = 0
61
    end
62
    object Button6: TButton
63
      Left = 682
64
      Height = 25
65
      Top = 5
66
      Width = 75
67
      Anchors = [akTop, akRight]
68
      Caption = 'Cancel'
69
      ModalResult = 2
70
      TabOrder = 1
71
    end
72
  end
73
  object panZoomImage: TPanel
74
    Left = 285
75
    Height = 311
76
    Top = 0
77
    Width = 330
78
    Align = alClient
79
    BevelOuter = bvNone
80
    ClientHeight = 311
81
    ClientWidth = 330
82
    TabOrder = 2
83
    object imgFull: TImage
84
      Left = 1
85
      Height = 285
86
      Top = 1
87
      Width = 309
88
      OnMouseDown = imgFullMouseDown
89
      OnMouseMove = imgFullMouseMove
90
      OnMouseUp = imgFullMouseUp
91
    end
92
    object sbarHorizontal: TScrollBar
93
      Left = 1
94
      Height = 17
95
      Top = 286
96
      Width = 308
97
      LargeChange = 64
98
      Max = 256
99
      Min = 1
100
      PageSize = 256
101
      Position = 1
102
      TabOrder = 0
103
      OnChange = ScrollbarChange
104
      OnScroll = ScrollBarScroll
105
    end
106
    object sbarVertical: TScrollBar
107
      Left = 310
108
      Height = 284
109
      Top = 1
110
      Width = 17
111
      Kind = sbVertical
112
      LargeChange = 64
113
      Max = 256
114
      Min = 1
115
      PageSize = 256
116
      Position = 1
117
      TabOrder = 1
118
      OnChange = ScrollbarChange
119
      OnScroll = ScrollBarScroll
120
    end
121
  end
122
  object panImageProperties: TPanel
123
    Left = 615
124
    Height = 311
125
    Top = 0
126
    Width = 149
127
    Align = alRight
128
    ClientHeight = 311
129
    ClientWidth = 149
130
    TabOrder = 3
131
    object Label5: TLabel
132
      Left = 12
133
      Height = 13
134
      Top = 212
135
      Width = 28
136
      Caption = 'Width'
137
      ParentColor = False
138
    end
139
    object Label6: TLabel
140
      Left = 12
141
      Height = 13
142
      Top = 236
143
      Width = 31
144
      Caption = 'Height'
145
      ParentColor = False
146
    end
147
    object Panel2: TPanel
148
      Left = 11
149
      Height = 130
150
      Top = 3
151
      Width = 130
152
      ClientHeight = 130
153
      ClientWidth = 130
154
      TabOrder = 0
155
      object imgPreview: TImage
156
        Cursor = crHandPoint
157
        Left = 1
158
        Height = 128
159
        Top = 1
160
        Width = 128
161
        Align = alClient
162
        OnMouseDown = imgPreviewMouseDown
163
        OnMouseMove = imgPreviewMouseMove
164
      end
165
    end
166
    object Panel3: TPanel
167
      Left = 12
168
      Height = 27
169
      Top = 140
170
      Width = 129
171
      BevelOuter = bvLowered
172
      ClientHeight = 27
173
      ClientWidth = 129
174
      TabOrder = 1
175
      object Label2: TLabel
176
        Left = 80
177
        Height = 13
178
        Top = 7
179
        Width = 15
180
        Alignment = taRightJustify
181
        Caption = '1.0'
182
        ParentColor = False
183
      end
184
      object Label1: TLabel
185
        Left = 12
186
        Height = 13
187
        Top = 7
188
        Width = 30
189
        Caption = 'Zoom:'
190
        ParentColor = False
191
      end
192
      object Button3: TButton
193
        Left = 113
194
        Height = 12
195
        Top = 1
196
        Width = 15
197
        Caption = '+'
198
        Font.Height = -11
199
        Font.Name = 'MS Sans Serif'
200
        Font.Style = [fsBold]
201
        OnClick = Button3Click
202
        ParentFont = False
203
        TabOrder = 0
204
      end
205
      object Button4: TButton
206
        Left = 113
207
        Height = 12
208
        Top = 13
209
        Width = 15
210
        Caption = '-'
211
        Font.Height = -11
212
        Font.Name = 'MS Sans Serif'
213
        Font.Style = [fsBold]
214
        OnClick = Button4Click
215
        ParentFont = False
216
        TabOrder = 1
217
      end
218
    end
219
    object CheckBox1: TCheckBox
220
      Left = 12
221
      Height = 19
222
      Top = 180
223
      Width = 88
224
      Caption = 'Show Preview'
225
      OnClick = CheckBox1Click
226
      TabOrder = 2
227
    end
228
    object WidthEdit: TEdit
229
      Left = 48
230
      Height = 21
231
      Top = 208
232
      Width = 95
233
      OnChange = WidthEditChange
234
      TabOrder = 3
235
      Text = '256'
236
    end
237
    object HeightEdit: TEdit
238
      Left = 48
239
      Height = 21
240
      Top = 232
241
      Width = 95
242
      OnChange = HeightEditChange
243
      TabOrder = 4
244
      Text = '256'
245
    end
246
  end
247
  object panElements: TPanel
248
    Left = 0
249
    Height = 311
250
    Top = 0
251
    Width = 285
252
    Align = alLeft
253
    ClientHeight = 311
254
    ClientWidth = 285
255
    TabOrder = 4
256
    object Bevel2: TBevel
257
      Left = 140
258
      Height = 57
259
      Top = 212
260
      Width = 137
261
    end
262
    object Bevel1: TBevel
263
      Left = 140
264
      Height = 133
265
      Top = 72
266
      Width = 137
267
    end
268
    object Label3: TLabel
269
      Left = 4
270
      Height = 13
271
      Top = 12
272
      Width = 81
273
      Caption = 'Skin Elements'
274
      Font.Height = -11
275
      Font.Name = 'MS Sans Serif'
276
      Font.Style = [fsBold]
277
      ParentColor = False
278
      ParentFont = False
279
    end
280
    object Label4: TLabel
281
      Tag = 1
282
      Left = 144
283
      Height = 13
284
      Top = 44
285
      Width = 43
286
      Alignment = taRightJustify
287
      Caption = 'Skin Part'
288
      ParentColor = False
289
    end
290
    object Label11: TLabel
291
      Tag = 1
292
      Left = 144
293
      Height = 13
294
      Top = 112
295
      Width = 18
296
      Alignment = taRightJustify
297
      Caption = 'Left'
298
      ParentColor = False
299
    end
300
    object Label12: TLabel
301
      Tag = 1
302
      Left = 187
303
      Height = 13
304
      Top = 80
305
      Width = 19
306
      Alignment = taRightJustify
307
      Caption = 'Top'
308
      ParentColor = False
309
    end
310
    object Label13: TLabel
311
      Tag = 1
312
      Left = 233
313
      Height = 13
314
      Top = 112
315
      Width = 25
316
      Alignment = taRightJustify
317
      Caption = 'Right'
318
      ParentColor = False
319
    end
320
    object Label9: TLabel
321
      Tag = 1
322
      Left = 169
323
      Height = 13
324
      Top = 220
325
      Width = 37
326
      Alignment = taRightJustify
327
      Caption = 'Scale X'
328
      ParentColor = False
329
    end
330
    object Label10: TLabel
331
      Tag = 1
332
      Left = 169
333
      Height = 13
334
      Top = 248
335
      Width = 37
336
      Alignment = taRightJustify
337
      Caption = 'Scale Y'
338
      ParentColor = False
339
    end
340
    object Label14: TLabel
341
      Tag = 1
342
      Left = 189
343
      Height = 13
344
      Top = 156
345
      Width = 33
346
      Alignment = taRightJustify
347
      Caption = 'Bottom'
348
      ParentColor = False
349
    end
350
    object lbElements: TListBox
351
      Left = 4
352
      Height = 257
353
      Top = 36
354
      Width = 129
355
      ItemHeight = 0
356
      OnClick = lbElementsClick
357
      OnKeyDown = lbElementsKeyDown
358
      TabOrder = 0
359
    end
360
    object btnAdd: TButton
361
      Left = 88
362
      Height = 17
363
      Top = 12
364
      Width = 21
365
      Caption = '+'
366
      Font.Height = -16
367
      Font.Name = 'MS Sans Serif'
368
      Font.Style = [fsBold]
369
      OnClick = btnAddClick
370
      ParentFont = False
371
      TabOrder = 1
372
    end
373
    object btnDelete: TButton
374
      Tag = 1
375
      Left = 112
376
      Height = 17
377
      Top = 12
378
      Width = 21
379
      Caption = '-'
380
      Font.Height = -16
381
      Font.Name = 'MS Sans Serif'
382
      Font.Style = [fsBold]
383
      OnClick = btnDeleteClick
384
      ParentFont = False
385
      TabOrder = 2
386
    end
387
    object ComboBox1: TComboBox
388
      Tag = 1
389
      Left = 196
390
      Height = 21
391
      Top = 40
392
      Width = 81
393
      ItemHeight = 13
394
      Items.Strings = (
395
        'TopLeft'
396
        'Top'
397
        'TopRight'
398
        'Left'
399
        'Center'
400
        'Right'
401
        'BottomLeft'
402
        'Bottom'
403
        'BottomRight'
404
      )
405
      OnChange = ComboBox1Change
406
      Style = csDropDownList
407
      TabOrder = 3
408
    end
409
    object LeftEdit: TEdit
410
      Tag = 1
411
      Left = 144
412
      Height = 21
413
      Top = 128
414
      Width = 40
415
      OnChange = LeftEditChange
416
      OnKeyPress = EditKeyPress
417
      TabOrder = 4
418
      Text = '256'
419
    end
420
    object TopEdit: TEdit
421
      Tag = 1
422
      Left = 188
423
      Height = 21
424
      Top = 96
425
      Width = 40
426
      OnChange = TopEditChange
427
      OnKeyPress = EditKeyPress
428
      TabOrder = 5
429
      Text = '256'
430
    end
431
    object RightEdit: TEdit
432
      Tag = 1
433
      Left = 232
434
      Height = 21
435
      Top = 128
436
      Width = 40
437
      OnChange = RightEditChange
438
      OnKeyPress = EditKeyPress
439
      TabOrder = 6
440
      Text = '256'
441
    end
442
    object BottomEdit: TEdit
443
      Tag = 1
444
      Left = 188
445
      Height = 21
446
      Top = 172
447
      Width = 40
448
      OnChange = BottomEditChange
449
      OnKeyPress = EditKeyPress
450
      TabOrder = 7
451
      Text = '256'
452
    end
453
    object ScaleXEdit: TEdit
454
      Tag = 1
455
      Left = 216
456
      Height = 21
457
      Top = 216
458
      Width = 40
459
      OnChange = ScaleXEditChange
460
      OnKeyPress = EditKeyPress
461
      TabOrder = 8
462
      Text = '1'
463
    end
464
    object ScaleYEdit: TEdit
465
      Tag = 1
466
      Left = 216
467
      Height = 21
468
      Top = 244
469
      Width = 40
470
      OnChange = ScaleYEditChange
471
      OnKeyPress = EditKeyPress
472
      TabOrder = 9
473
      Text = '1'
474
    end
475
  end
476
  object GLScene1: TGLScene
477
    left = 324
478
    top = 12
479
    object HUDSprite1: TGLHUDSprite
480
      TagFloat = 0
481
      Material.BackProperties.Ambient.Red = 0.200000002980232
482
      Material.BackProperties.Ambient.Green = 0.200000002980232
483
      Material.BackProperties.Ambient.Blue = 0.200000002980232
484
      Material.BackProperties.Ambient.Alpha = 1
485
      Material.BackProperties.Diffuse.Red = 0.800000011920929
486
      Material.BackProperties.Diffuse.Green = 0.800000011920929
487
      Material.BackProperties.Diffuse.Blue = 0.800000011920929
488
      Material.BackProperties.Diffuse.Alpha = 1
489
      Material.BackProperties.Emission.Red = 0
490
      Material.BackProperties.Emission.Green = 0
491
      Material.BackProperties.Emission.Blue = 0
492
      Material.BackProperties.Emission.Alpha = 1
493
      Material.BackProperties.Specular.Red = 0
494
      Material.BackProperties.Specular.Green = 0
495
      Material.BackProperties.Specular.Blue = 0
496
      Material.BackProperties.Specular.Alpha = 1
497
      Material.FrontProperties.Ambient.Red = 0.137254998087883
498
      Material.FrontProperties.Ambient.Green = 0.556863009929657
499
      Material.FrontProperties.Ambient.Blue = 0.137254998087883
500
      Material.FrontProperties.Ambient.Alpha = 1
501
      Material.FrontProperties.Ambient.Color = {
502
        938C0C3E938E0E3F938C0C3E0000803F
503
      }
504
      Material.FrontProperties.Diffuse.Red = 0.137254998087883
505
      Material.FrontProperties.Diffuse.Green = 0.556863009929657
506
      Material.FrontProperties.Diffuse.Blue = 0.137254998087883
507
      Material.FrontProperties.Diffuse.Alpha = 1
508
      Material.FrontProperties.Diffuse.Color = {
509
        938C0C3E938E0E3F938C0C3E0000803F
510
      }
511
      Material.FrontProperties.Emission.Red = 0.137254998087883
512
      Material.FrontProperties.Emission.Green = 0.556863009929657
513
      Material.FrontProperties.Emission.Blue = 0.137254998087883
514
      Material.FrontProperties.Emission.Alpha = 1
515
      Material.FrontProperties.Emission.Color = {
516
        938C0C3E938E0E3F938C0C3E0000803F
517
      }
518
      Material.FrontProperties.Specular.Red = 0.137254998087883
519
      Material.FrontProperties.Specular.Green = 0.556863009929657
520
      Material.FrontProperties.Specular.Blue = 0.137254998087883
521
      Material.FrontProperties.Specular.Alpha = 1
522
      Material.FrontProperties.Specular.Color = {
523
        938C0C3E938E0E3F938C0C3E0000803F
524
      }
525
      Material.Texture.EnvColor.Red = 0
526
      Material.Texture.EnvColor.Green = 0
527
      Material.Texture.EnvColor.Blue = 0
528
      Material.Texture.EnvColor.Alpha = 0
529
      Material.Texture.BorderColor.Red = 0
530
      Material.Texture.BorderColor.Green = 0
531
      Material.Texture.BorderColor.Blue = 0
532
      Material.Texture.BorderColor.Alpha = 0
533
      PitchAngle = 0
534
      Position.Coordinates = {
535
        0000804300008043000000000000803F
536
      }
537
      RollAngle = 0
538
      TurnAngle = 0
539
      Visible = False
540
      Width = 512
541
      Height = 512
542
      Rotation = 0
543
    end
544
    object GLPanel1: TGLPanel
545
      TagFloat = 0
546
      Autosize = False
547
      RedrawAtOnce = False
548
      Rotation = 0
549
      NoZWrite = False
550
      DoChangesOnProgress = False
551
      Visible = False
552
      Width = 256
553
      Height = 256
554
      Left = 0
555
      Top = 0
556
    end
557
    object GLCamera1: TGLCamera
558
      TagFloat = 0
559
      DepthOfView = 100
560
      FocalLength = 50
561
      Position.Coordinates = {
562
        0000000000000000000020410000803F
563
      }
564
      object GLLightSource1: TGLLightSource
565
        TagFloat = 0
566
        Ambient.Red = 0
567
        Ambient.Green = 0
568
        Ambient.Blue = 0
569
        Ambient.Alpha = 1
570
        ConstAttenuation = 1
571
        Diffuse.Red = 1
572
        Diffuse.Green = 1
573
        Diffuse.Blue = 1
574
        Diffuse.Alpha = 1
575
        LinearAttenuation = 0
576
        QuadraticAttenuation = 0
577
        LightStyle = lsOmni
578
        Specular.Red = 0
579
        Specular.Green = 0
580
        Specular.Blue = 0
581
        Specular.Alpha = 1
582
        SpotCutOff = 180
583
        SpotExponent = 0
584
      end
585
    end
586
  end
587
  object GLMemoryViewer1: TGLMemoryViewer
588
    Camera = GLCamera1
589
    Buffer.AmbientColor.Red = 0.200000002980232
590
    Buffer.AmbientColor.Green = 0.200000002980232
591
    Buffer.AmbientColor.Blue = 0.200000002980232
592
    Buffer.AmbientColor.Alpha = 1
593
    Buffer.ContextOptions = []
594
    Buffer.DepthTest = False
595
    Buffer.FaceCulling = False
596
    Buffer.Lighting = False
597
    Buffer.ColorDepth = cd8bits
598
    left = 324
599
    top = 60
600
  end
601
  object popElements: TPopupMenu
602
    left = 72
603
    top = 68
604
    object mnuTopLeft: TMenuItem
605
      Caption = 'TopLeft'
606
      OnClick = MenuItemClick
607
    end
608
    object mnuTop: TMenuItem
609
      Tag = 1
610
      Caption = 'Top'
611
      OnClick = MenuItemClick
612
    end
613
    object mnuTopRight: TMenuItem
614
      Tag = 2
615
      Caption = 'TopRight'
616
      OnClick = MenuItemClick
617
    end
618
    object mnuLeft: TMenuItem
619
      Tag = 3
620
      Caption = 'Left'
621
      OnClick = MenuItemClick
622
    end
623
    object mnuCenter: TMenuItem
624
      Tag = 4
625
      Caption = 'Center'
626
      OnClick = MenuItemClick
627
    end
628
    object mnuRight: TMenuItem
629
      Tag = 5
630
      Caption = 'Right'
631
      OnClick = MenuItemClick
632
    end
633
    object mnuBottomLeft: TMenuItem
634
      Tag = 6
635
      Caption = 'BottomLeft'
636
      OnClick = MenuItemClick
637
    end
638
    object mnuBottom: TMenuItem
639
      Tag = 7
640
      Caption = 'Bottom'
641
      OnClick = MenuItemClick
642
    end
643
    object mnuBottomRight: TMenuItem
644
      Tag = 8
645
      Caption = 'BottomRight'
646
      OnClick = MenuItemClick
647
    end
648
    object N1: TMenuItem
649
      Caption = '-'
650
    end
651
    object mnuAddAll: TMenuItem
652
      Caption = 'Add all'
653
      OnClick = mnuAddAllClick
654
    end
655
    object N2: TMenuItem
656
      Caption = '-'
657
    end
658
    object mnuAllTop: TMenuItem
659
      Caption = 'All Top'
660
      OnClick = mnuAllTopClick
661
    end
662
    object mnuAllMiddle: TMenuItem
663
      Caption = 'All Middle'
664
      OnClick = mnuAllMiddleClick
665
    end
666
    object mnuAllBottom: TMenuItem
667
      Caption = 'All Bottom'
668
      OnClick = mnuAllBottomClick
669
    end
670
  end
671
end
672

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.