File: mainf.lfm

package info (click to toggle)
castle-game-engine 6.4%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 194,520 kB
  • sloc: pascal: 364,585; ansic: 8,606; java: 2,851; objc: 2,601; cpp: 1,412; xml: 851; makefile: 725; sh: 563; php: 26
file content (99 lines) | stat: -rw-r--r-- 2,306 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
object Main: TMain
  Left = 434
  Height = 474
  Top = 173
  Width = 617
  Caption = 'Main'
  ClientHeight = 474
  ClientWidth = 617
  OnCreate = FormCreate
  LCLVersion = '1.1'
  object CastleControl2: TCastleControl
    AnchorSideLeft.Control = CastleControl1
    AnchorSideLeft.Side = asrBottom
    AnchorSideBottom.Control = LabelFps2
    Left = 304
    Height = 375
    Top = 8
    Width = 302
    Anchors = [akTop, akLeft, akRight, akBottom]
    BorderSpacing.Left = 8
    BorderSpacing.Bottom = 8
    TabOrder = 0
  end
  object CastleControl1: TCastleControl
    AnchorSideBottom.Control = LabelFps1
    Left = 8
    Height = 375
    Top = 8
    Width = 288
    Anchors = [akTop, akLeft, akBottom]
    BorderSpacing.Bottom = 8
    TabOrder = 1
  end
  object ButtonLoad1: TButton
    AnchorSideTop.Control = CastleControl1
    AnchorSideTop.Side = asrBottom
    Left = 9
    Height = 37
    Top = 425
    Width = 131
    Anchors = [akLeft, akBottom]
    AutoSize = True
    BorderSpacing.Top = 8
    Caption = 'Load 1st scene'
    OnClick = ButtonLoad1Click
    TabOrder = 2
  end
  object ButtonLoad2: TButton
    AnchorSideLeft.Control = CastleControl1
    AnchorSideLeft.Side = asrBottom
    AnchorSideTop.Control = CastleControl2
    AnchorSideTop.Side = asrBottom
    Left = 304
    Height = 37
    Top = 425
    Width = 134
    Anchors = [akLeft, akBottom]
    AutoSize = True
    BorderSpacing.Left = 8
    BorderSpacing.Top = 8
    Caption = 'Load 2nd scene'
    OnClick = ButtonLoad2Click
    TabOrder = 3
  end
  object LabelFps1: TLabel
    AnchorSideBottom.Control = ButtonLoad1
    Left = 8
    Height = 26
    Top = 391
    Width = 166
    Anchors = [akLeft, akBottom]
    BorderSpacing.Bottom = 8
    Caption = 'FPS: 123 (real: 456)'
    ParentColor = False
  end
  object LabelFps2: TLabel
    AnchorSideLeft.Control = CastleControl1
    AnchorSideLeft.Side = asrBottom
    AnchorSideBottom.Control = ButtonLoad2
    Left = 304
    Height = 26
    Top = 391
    Width = 166
    Anchors = [akLeft, akBottom]
    BorderSpacing.Left = 8
    BorderSpacing.Bottom = 8
    Caption = 'FPS: 123 (real: 456)'
    ParentColor = False
  end
  object OpenDialog: TOpenDialog
    left = 46
    top = 112
  end
  object Timer: TTimer
    OnTimer = TimerTimer
    left = 46
    top = 36
  end
end