blob: a7a69eb82965073f57edeafc426c76ab0ac5c1ba (
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
181
182
183
184
185
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<panel
border="true"
follows="left|top|right|bottom"
height="418"
label="View"
layout="topleft"
left="102"
name="view_panel"
top="1"
width="517">
<icon
follows="left|top"
height="18"
image_name="Cam_FreeCam_Off"
layout="topleft"
name="camera_icon"
mouse_opaque="false"
visible="true"
width="18"
left="30"
top="4"/>
<text
follows="top|left|right"
height="16"
layout="topleft"
left="80"
top_delta="0"
width="100">
Preset in use:
</text>
<text
follows="top|left|right"
height="16"
layout="topleft"
left_delta="100"
name="preset_camera_text"
width="120">
(None)
</text>
<slider
can_edit_text="true"
control_name="CameraAngle"
decimal_digits="2"
follows="left|top"
height="16"
top_pad="5"
increment="0.025"
initial_value="1.57"
layout="topleft"
label_width="100"
label="View angle"
left="80"
max_val="2.97"
min_val="0.17"
name="camera_fov"
show_text="false"
width="240" />
<slider
can_edit_text="true"
control_name="CameraOffsetScale"
decimal_digits="2"
follows="left|top"
height="16"
increment="0.025"
initial_value="1"
layout="topleft"
label="Distance"
left_delta="0"
label_width="100"
max_val="3"
min_val="0.5"
name="camera_offset_scale"
show_text="false"
width="240"
top_pad="5"/>
<text
follows="left|top"
type="string"
length="1"
height="10"
left="80"
name="heading2"
width="200"
top_pad="5">
Automatic position for:
</text>
<spinner
control_name="CameraOpacity"
decimal_digits="1"
follows="top|left|right"
height="24"
max_val="1.0"
min_val="0.0"
increment="0.1"
initial_value="1.0"
label="Camera controls opacity:"
label_width="180"
layout="topleft"
top_pad="-10"
left_pad="10"
width="220" />
<check_box
control_name="EditCameraMovement"
height="20"
follows="left|top"
label="Build/Edit"
layout="topleft"
left="100"
name="edit_camera_movement"
tool_tip="Use automatic camera positioning when entering and exiting edit mode"
width="280"
top_pad="-10" />
<check_box
control_name="AppearanceCameraMovement"
follows="left|top"
height="16"
label="Appearance"
layout="topleft"
name="appearance_camera_movement"
tool_tip="Use automatic camera positioning while in edit mode"
width="242" />
<button
follows="top|left"
height="23"
label="Advanced..."
layout="topleft"
left_pad="-102"
name="PreferencesViewAdvanced"
tool_tip="Adjust camera positioning"
width="115">
<button.commit_callback
function="Floater.Show"
parameter="prefs_view_advanced" />
</button>
<button
follows="top|left"
height="23"
label="Save settings as a preset..."
layout="topleft"
left="30"
name="PrefCameraSaveButton"
top_pad="10"
width="200">
<button.commit_callback
function="Pref.PrefSave"
parameter="camera" />
</button>
<button
follows="top|left"
height="23"
label="Load preset..."
layout="topleft"
left_pad="10"
name="PrefCameraLoadButton"
top_delta="0"
width="115">
<button.commit_callback
function="Pref.PrefLoad"
parameter="camera"/>
</button>
<button
follows="top|left"
height="23"
label="Delete preset..."
layout="topleft"
left_pad="10"
name="PrefCameraDeleteButton"
top_delta="0"
width="115">
<button.commit_callback
function="Pref.PrefDelete"
parameter="camera"/>
</button>
</panel>
|