-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathUnit_FrameTesterTool.dfm
146 lines (146 loc) · 2.66 KB
/
Unit_FrameTesterTool.dfm
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
object FrameTesterTool: TFrameTesterTool
Left = 0
Top = 0
Width = 249
Height = 386
TabOrder = 0
object Label1: TLabel
Left = 152
Top = 160
Width = 63
Height = 13
Caption = 'Include Flags'
end
object Label2: TLabel
Left = 152
Top = 248
Width = 65
Height = 13
Caption = 'Exclude Flags'
end
object rgToolMode: TRadioGroup
Left = 8
Top = 8
Width = 233
Height = 137
Caption = 'rgToolMode'
Items.Strings = (
'TOOLMODE_PATHFIND_FOLLOW'
'TOOLMODE_PATHFIND_STRAIGHT'
'TOOLMODE_PATHFIND_SLICED'
'TOOLMODE_RAYCAST'
'TOOLMODE_DISTANCE_TO_WALL'
'TOOLMODE_FIND_POLYS_IN_CIRCLE'
'TOOLMODE_FIND_POLYS_IN_SHAPE'
'TOOLMODE_FIND_LOCAL_NEIGHBOURHOOD')
TabOrder = 0
end
object rgVerticesAtCrossings: TRadioGroup
Left = 8
Top = 152
Width = 129
Height = 65
Caption = ' Vertices at crossings '
Items.Strings = (
'None'
'Area'
'All')
TabOrder = 1
end
object btnSetRandomStart: TButton
Left = 8
Top = 224
Width = 129
Height = 25
Caption = 'Set Random Start'
TabOrder = 2
end
object btnSetRandomEnd: TButton
Left = 8
Top = 256
Width = 129
Height = 25
Caption = 'Set Random End'
TabOrder = 3
end
object btnMakeRandomPoints: TButton
Left = 8
Top = 288
Width = 129
Height = 25
Caption = 'Make Random Points'
TabOrder = 4
end
object btnMakeRandomPointsAround: TButton
Left = 8
Top = 320
Width = 129
Height = 25
Caption = 'Make Random Points Around'
TabOrder = 5
end
object cbInclWalk: TCheckBox
Left = 152
Top = 176
Width = 49
Height = 17
Caption = 'Walk'
TabOrder = 6
end
object cbInclSwim: TCheckBox
Left = 152
Top = 192
Width = 49
Height = 17
Caption = 'Swim'
TabOrder = 7
end
object cbInclDoor: TCheckBox
Left = 152
Top = 208
Width = 49
Height = 17
Caption = 'Door'
TabOrder = 8
end
object cbInclJump: TCheckBox
Left = 152
Top = 224
Width = 49
Height = 17
Caption = 'Jump'
TabOrder = 9
end
object cbExclWalk: TCheckBox
Left = 152
Top = 264
Width = 49
Height = 17
Caption = 'Walk'
TabOrder = 10
end
object cbExclSwim: TCheckBox
Left = 152
Top = 280
Width = 49
Height = 17
Caption = 'Swim'
TabOrder = 11
end
object cbExclDoor: TCheckBox
Left = 152
Top = 296
Width = 49
Height = 17
Caption = 'Door'
TabOrder = 12
end
object cbExclJump: TCheckBox
Left = 152
Top = 312
Width = 49
Height = 17
Caption = 'Jump'
TabOrder = 13
end
end