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
|
<?xml version="1.0" ?>
<GUILayout>
<Window Type="Vanilla/FrameWindow" Name="RaiseWindow">
<Property Name="UnifiedPosition" Value="{{.30, 0}, {.40, 0}}" />
<Property Name="UnifiedSize" Value="{{.4, 0}, {.2, 0}}" />
<Property Name="Text" Value="foobar" />
<Window Type="Vanilla/StaticText" Name="radius_lbl">
<Property Name="UnifiedPosition" Value="{{0, 0}, {0, 0}}" />
<Property Name="UnifiedSize" Value="{{0, 90}, {.3, 0}}" />
<Property Name="Text" Value="Radius" />
</Window>
<Window Type="Vanilla/HorizontalScrollbar" Name="radius_sb">
<Property Name="UnifiedPosition" Value="{{0, 90}, {0, 0}}" />
<Property Name="UnifiedSize" Value="{{1, -150}, {.3, 0}}" />
<Property Name="DocumentSize" Value="50.0" />
</Window>
<Window Type="Vanilla/StaticText" Name="radius_sb_lbl">
<Property Name="UnifiedPosition" Value="{{1, -60}, {0, 0}}" />
<Property Name="UnifiedSize" Value="{{0, 60}, {.3, 0}}" />
</Window>
<Window Type="Vanilla/StaticText" Name="focus_lbl">
<Property Name="UnifiedPosition" Value="{{0, 0}, {.3, 0}}" />
<Property Name="UnifiedSize" Value="{{0, 90}, {.3, 0}}" />
<Property Name="Text" Value="Focus" />
</Window>
<Window Type="Vanilla/HorizontalScrollbar" Name="focus_sb">
<Property Name="UnifiedPosition" Value="{{0, 90}, {.3, 0}}" />
<Property Name="UnifiedSize" Value="{{1, -150}, {.3, 0}}" />
<Property Name="DocumentSize" Value="2.0" />
<Property Name="StepSize" Value=".1" />
</Window>
<Window Type="Vanilla/StaticText" Name="focus_sb_lbl">
<Property Name="UnifiedPosition" Value="{{1, -60}, {.3, 0}}" />
<Property Name="UnifiedSize" Value="{{0, 60}, {.3, 0}}" />
</Window>
<Window Type="Vanilla/StaticText" Name="strength_lbl">
<Property Name="UnifiedPosition" Value="{{0, 0}, {.6, 0}}" />
<Property Name="UnifiedSize" Value="{{0, 90}, {.3, 0}}" />
<Property Name="Text" Value="Strength" />
</Window>
<Window Type="Vanilla/HorizontalScrollbar" Name="strength_sb">
<Property Name="UnifiedPosition" Value="{{0, 90}, {.6, 0}}" />
<Property Name="UnifiedSize" Value="{{1, -150}, {.3, 0}}" />
<Property Name="DocumentSize" Value="1.0" />
<Property Name="StepSize" Value=".1" />
</Window>
<Window Type="Vanilla/StaticText" Name="strength_sb_lbl">
<Property Name="UnifiedPosition" Value="{{1, -60}, {.6, 0}}" />
<Property Name="UnifiedSize" Value="{{0, 60}, {.3, 0}}" />
</Window>
</Window>
</GUILayout>
|