blob: ea4128976993c8681e9ff6c7ead60079e7b9453f (
plain)
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<floater
height="225"
layout="topleft"
name="beacons"
save_rect="true"
save_visibility="true"
single_instance="true"
title="Beacons"
width="250">
<panel
follows="left|top|right|bottom"
height="200"
layout="topleft"
left="10"
name="beacons_panel"
top="15"
width="230">
<check_box
bottom_delta="33"
control_name="scripttouchbeacon"
label="Scripted Objects with Touch Only"
layout="topleft"
name="touch_only" >
<check_box.commit_callback
function="Beacons.UICheck" />
</check_box>
<check_box
bottom_delta="20"
control_name="scriptsbeacon"
label="Scripted Objects"
layout="topleft"
name="scripted">
<check_box.commit_callback
function="Beacons.UICheck" />
</check_box>
<check_box
bottom_delta="20"
control_name="physicalbeacon"
label="Physical Objects"
layout="topleft"
name="physical" >
<check_box.commit_callback
function="Beacons.UICheck" />
</check_box>
<check_box
bottom_delta="20"
control_name="soundsbeacon"
label="Sound Sources"
layout="topleft"
name="sounds" >
<check_box.commit_callback
function="Beacons.UICheck" />
</check_box>
<check_box
bottom_delta="20"
control_name="particlesbeacon"
label="Particle Sources"
layout="topleft"
name="particles" >
<check_box.commit_callback
function="Beacons.UICheck" />
</check_box>
<check_box
bottom_delta="20"
control_name="renderhighlights"
label="Render Highlights"
layout="topleft"
name="highlights" >
<check_box.commit_callback
function="Beacons.UICheck" />
</check_box>
<check_box
bottom_delta="20"
control_name="renderbeacons"
label="Render Beacons"
layout="topleft"
name="beacons" >
<check_box.commit_callback
function="Beacons.UICheck" />
</check_box>
<text
type="string"
length="1"
follows="left|top"
height="12"
layout="topleft"
left="5"
name="beacon_width_label"
top="171"
width="128">
Beacon Width:
</text>
<slider
control_name="DebugBeaconLineWidth"
decimal_digits="0"
height="16"
increment="1"
initial_value="1"
layout="topleft"
left="30"
max_val="16"
min_val="1"
name="beacon_width"
top="187"
width="185" />
</panel>
</floater>
|