blob: 21518338ff02ad8c7955e31618bcb213a3062277 (
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
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<panel
border="true"
follows="top|left"
height="300"
label="Environment"
layout="topleft"
help_topic="panel_region_environment_tab"
name="panel_env_info"
width="530">
<layout_stack
left_offset="0"
top_offset="0"
width="420"
height="250"
follows="left|right|top|bottom"
orientation="vertical">
<layout_panel
auto_resize="false"
user_resize="true"
bg_alpha_color="red"
min_height="130"
background_visible="false">
<layout_stack
left_offset="5"
top_offset="5"
right_offset="-5"
follows="left|right|top|bottom"
orientation="horizontal">
<layout_panel
border="true"
bevel_style="in"
auto_resize="false"
user_resize="false"
width="160"
background_visible="true">
<text follows="top|left"
halign="left"
text_color="white">Environment Source</text>
<radio_group
follows="top|left"
height="45"
layout="topleft"
left_delta="10"
name="environment_select_radio_group"
bottom_delta="50"
max_width="200"
width="200">
<radio_item
label="Default Environment"
layout="topleft"
name="use_default_setting"
height="20"/>
<radio_item
label="Custom Environment"
layout="topleft"
height="20"
name="use_custom_setting"/>
</radio_group>
<button
follows="top|right"
height="23"
label="Edit Custom"
right_offset="30"
bottom_offset="30"
width="100"
name="edit_btn"/>
</layout_panel>
<layout_panel
border="true"
bevel_style="in"
auto_resize="false"
user_resize="true"
height="11"
width="220"
background_visible="true">
<text follows="top|left|right"
halign="left"
text_color="white">Day Settings</text>
<text
type="string"
length="1"
follows="left|top"
height="12"
layout="topleft"
left_delta="10"
top_pad="10"
width="200">
Day Length (hours)
</text>
<slider
can_edit_text="true"
control_name="DayLengthSLD"
decimal_digits="1"
follows="left|top"
height="20"
increment="0.5"
initial_value="4"
layout="topleft"
left_delta="0"
top_pad="6"
name="day_length_sld"
min_val="4"
max_val="178"
width="200" />
<text
type="string"
length="1"
follows="left|top"
height="12"
layout="topleft"
left_delta="0"
top_pad="10"
width="200">
Day Offset (hours)
</text>
<slider
can_edit_text="true"
control_name="DayOffsetSLD"
decimal_digits="1"
follows="left|top"
height="20"
increment="0.5"
initial_value="-8"
layout="topleft"
left_delta="0"
top_pad="6"
name="day_offset_sld"
min_val="-12"
max_val="12"
width="200" />
</layout_panel>
<layout_panel name="flex"
auto_resize="true"
user_resize="true"
visible="false"
bg_alpha_color="blue"
height="100"
background_visible="true">
</layout_panel>
</layout_stack>
</layout_panel>
<layout_panel
auto_resize="true"
user_resize="true"
height="21"
min_height="0"
background_visible="false">
<check_box
control_name="may_override_chk"
height="16"
label="Parcel Owners May Override"
layout="topleft"
left_offset="10"
top_offset="10"
name="allow_override_chk"
width="200" />
<button
follows="top|left"
height="23"
label="Apply"
left_offset="160"
top_offset="60"
name="apply_btn"
width="100" />
<button
follows="top|left"
height="23"
label="Cancel"
layout="topleft"
left_pad="10"
name="cancel_btn"
width="100" />
</layout_panel>
</layout_stack>
</panel>
|