forked from stuntrally/stuntrally3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEditor_Options.layout
1107 lines (1024 loc) · 51.1 KB
/
Editor_Options.layout
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<MyGUI type="Layout" version="3.2.0">
<Widget type="Window" skin="WindowC" position="20 932 800 600" align="Center" layer="Overlapped" name="OptionsWnd">
<Property key="MinSize" value="500 400"/>
<Property key="Caption" value="#{Options}"/>
<Property key="Alpha" value="0.3"/>
<Property key="Snap" value="true"/>
<Property key="Visible" value="true"/>
<Widget type="TabControl" skin="TabControlIcon" position="0 0 800 600" align="Stretch" layer="Back" name="TabWndOpts">
<Property key="InheritsAlpha" value="false"/>
<Property key="Colour" value="0.7 0.9 1"/>
<Property key="SmoothShow" value="false"/>
<Widget type="TabItem" skin="" position="2 24 794 562">
<Property key="Caption" value="#FFE0C0<#{BackMenu}"/>
<Property key="Colour" value="1 0.6 0.2"/>
</Widget>
<Widget type="TabItem" skin="" position="2 24 794 562">
<Property key="Caption" value="#C0E0FF#{Screen}"/>
<Widget type="TabControl" skin="TabControl" position="16 15 744 500" name="SubTab">
<Property key="Colour" value="0.73 0.88 1"/>
<Property key="SmoothShow" value="false"/>
<Widget type="TabItem" skin="" position="2 24 738 472">
<Property key="Caption" value="#B0F0FF#{InputMain}"/>
<!-- <Widget type="ImageBox" skin="ImageBox" position="32 56 96 96">
<Property key="ImageCoord" value="128 0 128 128"/>
<Property key="Alpha" value="1.0"/>
<Property key="ImageTexture" value="gui_icons.png"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="164 56 204 24">
<Property key="Caption" value="#{Resolution} **"/>
<Property key="Colour" value="0 0 0"/>
<Property key="TextColour" value="0.8 0.92 1"/>
<Property key="FontName" value="font.big"/>
<Property key="TextShadow" value="true"/>
</Widget>
<Widget type="Button" skin="CheckBox" position="164 156 190 24" name="FullScreen">
<Property key="Caption" value="#{Fullscreen}"/>
<Property key="TextColour" value="0.6 0.8 1"/>
<Property key="FontName" value="font.big"/>
</Widget>
<Widget type="ComboBox" skin="ComboBox" position="164 92 190 32" name="ResList">
<Property key="Static" value="true"/>
<Property key="ReadOnly" value="true"/>
<Property key="Colour" value="0.7 0.86 1"/>
<Property key="TextColour" value="0.8 0.9 1"/>
<Property key="FontName" value="font.big"/>
</Widget>
<Widget type="Button" skin="Button" position="384 96 108 24" name="ResChange">
<Property key="Caption" value="#{Change}"/>
<Property key="TextColour" value="0.7 0.85 1"/>
<Property key="Colour" value="0.6 0.8 1"/>
<Property key="FontName" value="font.big"/>
</Widget> -->
<Widget type="ImageBox" skin="ImageBox" position="32 36 96 96">
<Property key="ImageCoord" value="384 256 128 128"/>
<Property key="Alpha" value="0.9"/>
<Property key="ImageTexture" value="gui_icons.png"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="164 44 322 24">
<Property key="Caption" value="#{GraphicsPreset} **"/>
<Property key="TextColour" value="0.7 1 1"/>
<Property key="FontName" value="font.big"/>
<Property key="TextShadow" value="true"/>
</Widget>
<Widget type="ComboBox" skin="ComboBox" position="164 80 190 32" name="CmbGraphicsPreset">
<Property key="Static" value="true"/>
<Property key="ReadOnly" value="true"/>
<Property key="Colour" value="0.4 0.9 0.9"/>
<Property key="TextColour" value="0.8 1 1"/>
<Property key="FontName" value="font.big"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="384 88 260 24">
<Property key="Caption" value="*#{NeedRestart}"/>
<Property key="TextColour" value="0.5 0.8 0.8"/>
<Property key="FontName" value="font.big"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 336 248 24">
<Property key="Caption" value="#{Brightness}"/>
<Property key="TextColour" value="0.9 0.7 0.7"/>
<Property key="Alpha" value="0.8"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="296 336 48 24" name="BrightVal">
<Property key="TextColour" value="0.9 0.7 0.7"/>
</Widget>
<Widget type="Slider" skin="Slider" position="344 336 216 16" name="Bright">
<Property key="Colour" value="0.9 0.7 0.7"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 366 248 24">
<Property key="Caption" value="#{Contrast}"/>
<Property key="TextColour" value="0.9 0.5 0.5"/>
<Property key="Alpha" value="0.8"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="296 366 48 24" name="ContrastVal">
<Property key="TextColour" value="0.9 0.5 0.5"/>
</Widget>
<Widget type="Slider" skin="Slider" position="344 366 216 16" name="Contrast">
<Property key="Colour" value="0.9 0.5 0.5"/>
</Widget>
</Widget>
<Widget type="TabItem" skin="" position="2 24 738 472" layer="Back">
<Property key="Caption" value="#A090A0#{GUI}"/>
<Widget type="TextBox" skin="TextBox" position="32 56 136 24">
<Property key="Caption" value="*#{NeedRestart}"/>
<Property key="TextColour" value="0.6 0.5 0.6"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 106 248 24">
<Property key="Caption" value="#{WindowMargin}"/>
<Property key="TextColour" value="0.8 0.8 0.9"/>
<Property key="Alpha" value="0.8"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="296 106 48 24" name="FntWndVal">
<Property key="TextColour" value="0.8 0.8 0.9"/>
</Widget>
<Widget type="Slider" skin="Slider" position="344 106 316 16" name="FntWnd">
<Property key="Colour" value="0.8 0.8 0.9"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 136 248 24">
<Property key="Caption" value="#{FontSizes}"/>
<Property key="TextColour" value="0.8 0.7 0.8"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 166 248 24">
<Property key="Caption" value="#{GUI}"/>
<Property key="TextColour" value="0.9 0.5 0.9"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="296 166 48 24" name="FntGuiVal">
<Property key="TextColour" value="0.9 0.5 0.9"/>
</Widget>
<Widget type="Slider" skin="Slider" position="344 166 316 16" name="FntGui">
<Property key="Colour" value="0.9 0.5 0.9"/>
</Widget>
</Widget>
<!-- <Widget type="TabItem" skin="" position="2 24 738 472" layer="Back">
<Property key="Caption" value="#60D0FF#{Video}"/> -->
<!-- <Widget type="Button" skin="CheckBox" position="32 48 176 24" name="VSync">
<Property key="Caption" value="#{VSync} **"/>
<Property key="TextColour" value="0.5 0.9 1"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 92 176 24">
<Property key="Caption" value="#{AntiAliasing} **"/>
<Property key="TextColour" value="0.6 0.9 1"/>
</Widget>
<Widget type="ComboBox" skin="ComboBox" position="212 88 50 24" name="CmbAntiAliasing">
<Property key="TextColour" value="0.7 0.85 1.0"/>
<Property key="Colour" value="0.6 0.8 1.0"/>
<Property key="Static" value="true"/>
<Property key="ReadOnly" value="true"/>
</Widget> -->
<!--<Widget type="TextBox" skin="TextBox" position="396 48 264 24">
<Property key="TextColour" value="0.7 0.9 0.9"/>
<Property key="Alpha" value="0.6"/>
<Property key="Caption" value="#{RenderSystem} **"/>
</Widget>
<Widget type="ComboBox" skin="ComboBox" position="392 88 272 24" name="CmbRendSys">
<Property key="TextColour" value="0.7 1 1"/>
<Property key="Colour" value="0.7 0.9 0.9"/>
<Property key="Alpha" value="0.6"/>
<Property key="Static" value="true"/>
<Property key="ReadOnly" value="true"/>
</Widget>
<Widget type="Button" skin="CheckBox" position="364 156 190 24" name="VRmode">
<Property key="Caption" value="#{VRmode} * = #{NotDone}"/>
<Property key="TextColour" value="0.3 0.6 0.8"/>
<Property key="FontName" value="font.small"/>
</Widget>
<Widget type="Button" skin="CheckBox" position="32 176 292 26" name="LimitFpsOn">
<Property key="Caption" value="#{LimitFPS} **"/>
<Property key="TextColour" value="0.6 0.6 0.8"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 210 164 24">
<Property key="Caption" value="#{FramesPerSec}"/>
<Property key="TextColour" value="0.7 0.7 0.8"/>
<Property key="Alpha" value="0.8"/>
</Widget>
<Widget type="EditBox" skin="EditBox" position="200 206 60 24" name="LimitFpsEdit">
<Property key="TextColour" value="0.8 0.7 0.8"/>
<Property key="Colour" value="0.7 0.7 0.8"/>
<Property key="Alpha" value="0.8"/>
</Widget>
<Widget type="Slider" skin="Slider" position="270 210 320 16" name="LimitFps">
<Property key="Colour" value="0.7 0.7 0.8"/>
<Property key="Alpha" value="0.8"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 240 164 24">
<Property key="Caption" value="#{SleepMS}"/>
<Property key="TextColour" value="0.7 0.6 0.8"/>
<Property key="Alpha" value="0.8"/>
</Widget>
<Widget type="EditBox" skin="EditBox" position="200 236 60 24" name="LimitSleepEdit">
<Property key="TextColour" value="0.7 0.6 0.8"/>
<Property key="Colour" value="0.7 0.6 0.8"/>
<Property key="Alpha" value="0.8"/>
</Widget>
<Widget type="Slider" skin="Slider" position="270 240 320 16" name="LimitSleep">
<Property key="Colour" value="0.7 0.6 0.8"/>
<Property key="Alpha" value="0.8"/>
</Widget>
</Widget> -->
</Widget>
</Widget>
<!-- 📊 Graphics -->
<Widget type="TabItem" skin="" position="2 24 794 562">
<Property key="Caption" value="#C0C0F0#{Graphics}"/>
<Widget type="TextBox" skin="TextBox" position="582 460 236 24">
<Property key="Caption" value="#{NeedReload}"/>
<Property key="TextColour" value="0.5 1 0.9"/>
<Property key="FontName" value="font.small"/>
<Property key="Alpha" value="0.7"/>
</Widget>
<!-- <Widget type="TextBox" skin="TextBox" position="582 480 236 24">
<Property key="Caption" value="*#{NeedRestart}"/>
<Property key="TextColour" value="0.5 0.9 1"/>
<Property key="FontName" value="font.small"/>
<Property key="Alpha" value="0.7"/>
</Widget> -->
<Widget type="TextBox" skin="TextBox" position="582 480 236 24">
<Property key="Caption" value="^ #{NeedApply}"/>
<Property key="TextColour" value="0.5 1 0.9"/>
<Property key="FontName" value="font.small"/>
<Property key="Alpha" value="0.7"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="582 500 236 24">
<Property key="Caption" value="= #{NotDone}"/>
<Property key="TextColour" value="0.5 1 0.9"/>
<Property key="FontName" value="font.small"/>
<Property key="Alpha" value="0.7"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="582 520 236 24">
<Property key="Caption" value="## #{Ignored}"/>
<Property key="TextColour" value="0.5 1 0.9"/>
<Property key="FontName" value="font.small"/>
<Property key="Alpha" value="0.7"/>
</Widget>
<Widget type="EditBox" skin="EditBoxEmpty" position="32 524 664 72">
<Property key="ReadOnly" value="true"/>
<Property key="MultiLine" value="true"/>
<Property key="WordWrap" value="true"/>
<Property key="TextColour" value="0.4 0.9 0.4"/>
<Property key="FontName" value="font.small"/>
<Property key="Alpha" value="0.6"/>
<Property key="Caption" value="#{GraphicsRightHQ}"/>
</Widget>
<Widget type="Button" skin="Button" position="276 460 160 32" name="NewGame1">
<Property key="Caption" value="#{LoadTrack}"/>
<Property key="Colour" value="0.6 1.0 0.3"/>
<Property key="TextColour" value="0.3 1 0.2"/>
<UserString key="tip" value="#{TipLoadTrkEditor}"/>
</Widget>
<Widget type="TabControl" skin="TabControl" position="16 32 700 400" name="SubTab">
<Property key="ButtonAutoWidth" value="true"/>
<Property key="Colour" value="0.73 1 0.98"/>
<Property key="SmoothShow" value="false"/>
<!-- 🔮 Reflect Cube -->
<Widget type="TabItem" skin="" position="2 24 694 272">
<Property key="Caption" value="#FFD8B0#{Reflections}"/>
<Widget type="Button" skin="Button" position="32 240 200 26" layer="Back" name="ApplyRefl">
<Property key="Caption" value="#{Apply}"/>
<Property key="Colour" value="1.0 0.9 0.7"/>
<Property key="TextColour" value="1.0 0.9 0.7"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="268 52 12 16">
<Property key="Caption" value="#00FF00+"/>
<Property key="Alpha" value="0.6"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 50 176 24">
<Property key="Caption" value="#{FrameSkip}"/>
<Property key="Colour" value="0 0 0"/>
<Property key="TextColour" value="1 0.8 0.4"/>
</Widget>
<Widget type="Slider" skin="Slider" position="280 50 320 18" name="ReflSkip"/>
<Widget type="TextBox" skin="TextBox" position="210 50 60 24" name="ReflSkipVal">
<Property key="TextColour" value="1 0.8 0.4"/>
</Widget>
<Widget type="Slider" skin="Slider" position="280 80 320 18" name="ReflFaces"/>
<Widget type="TextBox" skin="TextBox" position="32 80 176 24">
<Property key="Caption" value="#{FacesOnce}"/>
<Property key="Colour" value="0 0 0"/>
<Property key="TextColour" value="1.0 0.6 0.4"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="210 80 60 24" name="ReflFacesVal">
<Property key="TextColour" value="1.0 0.6 0.4"/>
</Widget>
<Widget type="Slider" skin="Slider" position="280 110 320 18" name="ReflSize"/>
<Widget type="TextBox" skin="TextBox" position="32 110 176 24">
<Property key="Caption" value="#{MapSize} ^"/>
<Property key="Colour" value="0 0 0"/>
<Property key="TextColour" value="1 0.8 0.2"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="210 110 60 24" name="ReflSizeVal">
<Property key="TextColour" value="1 0.8 0.2"/>
</Widget>
<Widget type="Slider" skin="Slider" position="280 140 320 18" name="ReflDist"/>
<Widget type="TextBox" skin="TextBox" position="32 140 176 24">
<Property key="Caption" value="#{Distance}"/>
<Property key="Colour" value="0 0 0"/>
<Property key="TextColour" value="0.9 0.5 0.5"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="210 140 60 24" name="ReflDistVal">
<Property key="TextColour" value="0.9 0.5 0.5"/>
</Widget>
<Widget type="Slider" skin="Slider" position="280 170 320 18" name="ReflLod"/>
<Widget type="TextBox" skin="TextBox" position="32 170 176 24">
<Property key="Caption" value="#{Detail}"/>
<Property key="Colour" value="0 0 0"/>
<Property key="TextColour" value="1.0 0.6 0.7"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="210 170 60 24" name="ReflLodVal">
<Property key="TextColour" value="0.9 0.5 0.7"/>
</Widget>
<Widget type="Slider" skin="Slider" position="280 200 320 18" name="ReflIbl"/>
<Widget type="TextBox" skin="TextBox" position="32 200 176 24">
<Property key="Caption" value="#{IblSamples} ^"/>
<Property key="Colour" value="0 0 0"/>
<Property key="TextColour" value="0.9 0.6 0.4"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="210 200 60 24" name="ReflIblVal">
<Property key="TextColour" value="0.8 0.5 0.5"/>
</Widget>
</Widget>
<!-- 🌊 Water -->
<Widget type="TabItem" skin="" position="2 24 694 272">
<Property key="Caption" value="#60B0FF#{Water}"/>
<Widget type="Button" skin="Button" position="32 240 200 26" layer="Back" name="ApplyShadersWater">
<Property key="Caption" value="#{Apply} ="/>
<Property key="Colour" value="0.5 0.75 1.0"/>
<Property key="TextColour" value="0.5 0.75 1.0"/>
</Widget>
<Widget type="Button" skin="CheckBox" position="32 48 200 24" name="WaterReflection">
<Property key="Caption" value="#{WaterReflection} *"/>
<Property key="TextColour" value="0.6 0.8 1"/>
</Widget>
<Widget type="Button" skin="CheckBox" position="32 78 200 24" name="WaterRefraction">
<Property key="Caption" value="#{WaterRefraction} ="/>
<Property key="TextColour" value="0.6 0.8 1"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 110 164 24">
<Property key="Colour" value="0 0 0"/>
<Property key="Caption" value="#{MapSize} *"/>
<Property key="TextColour" value="0.7 0.85 1.0"/>
</Widget>
<Widget type="Slider" skin="Slider" position="280 110 320 18" name="WaterSize"/>
<Widget type="TextBox" skin="TextBox" position="210 110 60 24" name="WaterSizeVal">
<Property key="TextColour" value="0.7 0.85 1.0"/>
</Widget>
<Widget type="Slider" skin="Slider" position="280 140 320 18" name="WaterDist"/>
<Widget type="TextBox" skin="TextBox" position="32 140 176 24">
<Property key="Caption" value="#{Distance}"/>
<Property key="Colour" value="0 0 0"/>
<Property key="TextColour" value="0.5 0.5 0.9"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="210 140 60 24" name="WaterDistVal">
<Property key="TextColour" value="0.5 0.5 0.9"/>
</Widget>
<Widget type="Slider" skin="Slider" position="280 170 320 18" name="WaterLod"/>
<Widget type="TextBox" skin="TextBox" position="32 170 176 24">
<Property key="Caption" value="#{Detail}"/>
<Property key="Colour" value="0 0 0"/>
<Property key="TextColour" value="0.6 0.7 1.0"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="210 170 60 24" name="WaterLodVal">
<Property key="TextColour" value="0.5 0.7 0.9"/>
</Widget>
<!-- <Widget type="TextBox" skin="TextBox" position="268 202 12 16">
<Property key="Caption" value="#00FF00+"/>
<Property key="Alpha" value="0.6"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 200 176 24">
<Property key="Caption" value="#{FrameSkip} ="/>
<Property key="Colour" value="0 0 0"/>
<Property key="TextColour" value="0.4 0.8 1"/>
</Widget>
<Widget type="Slider" skin="Slider" position="280 200 320 18" name="WaterSkip"/>
<Widget type="TextBox" skin="TextBox" position="210 200 60 24" name="WaterSkipVal">
<Property key="TextColour" value="0.4 0.8 1"/>
</Widget> -->
</Widget>
<!-- 🌒 Shadows -->
<Widget type="TabItem" skin="" position="2 24 694 272">
<Property key="Caption" value="#B0B0B0#{Shadows}"/>
<Widget type="Button" skin="Button" position="32 240 200 26" layer="Back" name="ApplyShadows">
<Property key="Caption" value="#{Apply}"/>
<Property key="Colour" value="0.9 0.97 1.0"/>
<Property key="TextColour" value="0.9 0.97 1.0"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 50 176 24">
<Property key="Caption" value="#{Shadows} **"/>
<Property key="Colour" value="0 0 0"/>
<Property key="TextColour" value="0.5 0.8 1"/>
</Widget>
<Widget type="Slider" skin="Slider" position="280 50 320 18" name="ShadowType"/>
<Widget type="TextBox" skin="TextBox" position="210 50 60 24" name="ShadowTypeVal">
<Property key="TextColour" value="0.5 0.8 1"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 80 176 24">
<Property key="Caption" value="#{Count} * ="/>
<Property key="Colour" value="0 0 0"/>
<Property key="TextColour" value="0.75 0.85 1"/>
</Widget>
<Widget type="Slider" skin="Slider" position="280 80 320 18" name="ShadowCount"/>
<Widget type="TextBox" skin="TextBox" position="210 80 60 24" name="ShadowCountVal">
<Property key="TextColour" value="0.75 0.85 1"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 110 176 24">
<Property key="Caption" value="#{MapSize} *"/>
<Property key="Colour" value="0 0 0"/>
<Property key="TextColour" value="0.5 0.8 1"/>
</Widget>
<Widget type="Slider" skin="Slider" position="280 110 320 18" name="ShadowSize"/>
<Widget type="TextBox" skin="TextBox" position="210 110 60 24" name="ShadowSizeVal">
<Property key="TextColour" value="0.5 0.8 1"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 140 176 24">
<Property key="Caption" value="#{Distance} *"/>
<Property key="Colour" value="0 0 0"/>
<Property key="TextColour" value="0.7 0.8 0.9"/>
</Widget>
<Widget type="Slider" skin="Slider" position="280 140 320 18" name="ShadowDist"/>
<Widget type="TextBox" skin="TextBox" position="210 140 60 24" name="ShadowDistVal">
<Property key="TextColour" value="0.7 0.8 0.9"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 170 176 24">
<Property key="Caption" value="#{ShadowFilter} ^"/>
<Property key="Colour" value="0 0 0"/>
<Property key="TextColour" value="0.6 0.7 0.8"/>
</Widget>
<Widget type="Slider" skin="Slider" position="280 170 320 18" name="ShadowFilter"/>
<Widget type="TextBox" skin="TextBox" position="210 170 60 24" name="ShadowFilterVal">
<Property key="TextColour" value="0.6 0.7 0.8"/>
</Widget>
</Widget>
<!-- 💡 Lights -->
<Widget type="TabItem" skin="" position="2 24 694 272">
<Property key="Caption" value="#F8F888#{Lights}"/>
<Widget type="Button" skin="CheckBox" position="32 48 200 24" name="CarLights">
<Property key="Caption" value="#{VehicleLights} ##"/>
<Property key="TextColour" value="0.9 1 1"/>
</Widget>
<Widget type="Button" skin="CheckBox" position="32 78 200 24" name="CarLightsShadows">
<Property key="Caption" value="#{Shadows} ##"/>
<Property key="TextColour" value="0.7 0.7 0.7"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 110 176 24">
<Property key="Caption" value="#{Brightness} ##"/>
<Property key="TextColour" value="0.8 0.8 0.6"/>
</Widget>
<Widget type="Slider" skin="Slider" position="280 110 320 18" name="CarLightBright"/>
<Widget type="TextBox" skin="TextBox" position="210 110 60 24" name="CarLightBrightVal">
<Property key="TextColour" value="0.8 0.8 0.6"/>
</Widget>
</Widget>
<!-- 🌳🌿 Vegetation -->
<Widget type="TabItem" skin="" position="2 24 694 272">
<Property key="Caption" value="#90FF30#{Vegetation}"/>
<Widget type="Button" skin="Button" position="32 180 200 26" layer="Back" name="ApplyVeget">
<Property key="Caption" value="#{Apply}"/>
<Property key="Colour" value="0.8 1 0.7"/>
<Property key="TextColour" value="0.8 1 0.7"/>
</Widget>
<Widget type="Button" skin="Button" position="464 180 136 26" name="VegetReset">
<Property key="Caption" value="#{Reset}"/>
<Property key="Colour" value="0.6 1.0 0.3"/>
<Property key="TextColour" value="0.3 1 0.2"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 50 176 24">
<Property key="Caption" value="#{TreeMult}"/>
<Property key="Colour" value="0 0 0"/>
<Property key="TextColour" value="0.5 1 0.5"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 80 176 24">
<Property key="Caption" value="#{DistMult}"/>
<Property key="Colour" value="0 0 0"/>
<Property key="TextColour" value="0.5 0.8 0.5"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 110 176 24">
<Property key="Caption" value="#{GrassMult}"/>
<Property key="Colour" value="0 0 0"/>
<Property key="TextColour" value="0.7 1 0.5"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 140 176 24">
<Property key="Caption" value="#{DistMult}"/>
<Property key="Colour" value="0 0 0"/>
<Property key="TextColour" value="0.7 0.8 0.5"/>
</Widget>
<Widget type="Slider" skin="Slider" position="280 50 320 18" name="Trees"/>
<Widget type="Slider" skin="Slider" position="280 80 320 18" name="TreesDist"/>
<Widget type="Slider" skin="Slider" position="280 110 320 18" name="Grass"/>
<Widget type="Slider" skin="Slider" position="280 140 320 18" name="GrassDist"/>
<Widget type="TextBox" skin="TextBox" position="210 50 60 24" name="TreesVal">
<Property key="TextColour" value="0.5 1 0.5"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="210 80 60 24" name="TreesDistVal">
<Property key="TextColour" value="0.5 0.8 0.5"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="210 110 60 24" name="GrassVal">
<Property key="TextColour" value="0.7 1 0.5"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="210 140 60 24" name="GrassDistVal">
<Property key="TextColour" value="0.7 0.8 0.5"/>
</Widget>
</Widget>
<!-- 🖼️ Textures -->
<Widget type="TabItem" skin="" position="2 24 694 272">
<Property key="Caption" value="#60FF60#{Textures}"/>
<Widget type="ComboBox" skin="ComboBox" position="210 47 136 24" name="TexFiltering">
<Property key="Static" value="true"/>
<Property key="ReadOnly" value="true"/>
<Property key="TextColour" value="0.2 1 0.2"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 50 172 24">
<Property key="Caption" value="#{Textures} **"/>
<Property key="Colour" value="0 0 0"/>
<Property key="Alpha" value="1"/>
<Property key="TextColour" value="0.2 1 0.2"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 80 172 24">
<Property key="Caption" value="#{Anisotropy} **"/>
<Property key="Colour" value="0 0 0"/>
<Property key="TextColour" value="0.2 1 0.2"/>
</Widget>
<Widget type="Slider" skin="Slider" position="280 80 320 18" name="Anisotropy"/>
<Widget type="TextBox" skin="TextBox" position="210 80 60 24" name="AnisotropyVal">
<Property key="TextColour" value="0.2 1 0.2"/>
</Widget>
<!-- 🏔️ Triplanar -->
<Widget type="TextBox" skin="TextBox" position="32 110 172 24">
<Property key="Caption" value="#{Triplanar}"/>
<Property key="Colour" value="0 0 0"/>
<Property key="TextColour" value="0.6 0.9 0.6"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 140 172 24">
<Property key="Caption" value="#{Terrain} *"/>
<Property key="Colour" value="0 0 0"/>
<Property key="TextColour" value="0.6 0.9 0.6"/>
</Widget>
<Widget type="Slider" skin="Slider" position="280 140 320 18" name="TerTripl"/>
<Widget type="TextBox" skin="TextBox" position="210 140 60 24" name="TerTriplVal">
<Property key="TextColour" value="0.6 0.9 0.6"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 170 176 24">
<Property key="Caption" value="#{Horizon} *"/>
<Property key="Colour" value="0 0 0"/>
<Property key="TextColour" value="0.6 0.8 0.9"/>
</Widget>
<Widget type="Slider" skin="Slider" position="280 170 320 18" name="TriplHoriz"/>
<Widget type="TextBox" skin="TextBox" position="210 170 60 24" name="TriplHorizVal">
<Property key="TextColour" value="0.6 0.8 0.9"/>
</Widget>
<!-- <Widget type="Button" skin="Button" position="32 120 200 26" layer="Back" name="ApplyShaders">
<Property key="Caption" value="#{Apply}"/>
<Property key="Colour" value="0.8 1.0 0.7"/>
<Property key="TextColour" value="0.8 1.0 0.7"/>
</Widget> -->
</Widget>
<!-- 🪨📦 Detail -->
<Widget type="TabItem" skin="" position="2 24 694 272">
<Property key="Caption" value="#80FFD0#{Detail}"/>
<Widget type="TextBox" skin="TextBox" position="32 50 172 24">
<Property key="Caption" value="#{Vegetation}, #{Objects}"/>
<Property key="TextColour" value="0.6 0.9 0.3"/>
</Widget>
<Widget type="Slider" skin="Slider" position="280 50 320 18" name="LodBias"/>
<Widget type="TextBox" skin="TextBox" position="210 50 60 24" name="LodBiasVal">
<Property key="TextColour" value="0.6 0.9 0.3"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 80 172 24">
<Property key="Caption" value="#{RoadQual}"/>
<Property key="TextColour" value="0.9 0.6 0.3"/>
</Widget>
<Widget type="Slider" skin="Slider" position="280 80 320 18" name="RoadDist"/>
<Widget type="TextBox" skin="TextBox" position="210 80 60 24" name="RoadDistVal">
<Property key="TextColour" value="0.9 0.6 0.3"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 140 172 24">
<Property key="Caption" value="#{ViewDist}"/>
<Property key="TextColour" value="0.5 0.7 0.8"/>
</Widget>
<Widget type="Slider" skin="Slider" position="280 140 320 18" name="ViewDist"/>
<Widget type="TextBox" skin="TextBox" position="210 140 60 24" name="ViewDistVal">
<Property key="TextColour" value="0.5 0.7 0.8"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 170 172 24">
<Property key="Caption" value="#{Horizon} #{max} ##"/>
<Property key="TextColour" value="0.4 0.7 1.0"/>
</Widget>
<Widget type="Slider" skin="Slider" position="280 170 320 18" name="Horizons"/>
<Widget type="TextBox" skin="TextBox" position="210 170 60 24" name="HorizonsVal">
<Property key="TextColour" value="0.4 0.7 1.0"/>
</Widget>
<!-- ter lod -->
<Widget type="TextBox" skin="TextBox" position="32 200 172 24">
<Property key="Caption" value="#{Detail}"/>
<Property key="TextColour" value="0.3 0.7 0.3"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 230 172 24">
<Property key="Caption" value="#{Terrain}"/>
<Property key="TextColour" value="0.3 0.7 0.3"/>
</Widget>
<Widget type="Slider" skin="Slider" position="280 230 320 18" name="TerLod"/>
<Widget type="TextBox" skin="TextBox" position="210 230 60 24" name="TerLodVal">
<Property key="TextColour" value="0.3 0.7 0.3"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 260 172 24">
<Property key="Caption" value="#{Horizon}"/>
<Property key="TextColour" value="0.3 0.7 0.6"/>
</Widget>
<Widget type="Slider" skin="Slider" position="280 260 320 18" name="HorizLod"/>
<Widget type="TextBox" skin="TextBox" position="210 260 60 24" name="HorizLodVal">
<Property key="TextColour" value="0.3 0.7 0.6"/>
</Widget>
</Widget>
</Widget>
</Widget>
<!-- Settings -->
<Widget type="TabItem" skin="" position="2 24 794 562">
<Property key="Caption" value="#80D0FF#{View}"/>
<Widget type="TextBox" skin="TextBox" position="16 524 304 20">
<Property key="Caption" value="#{SREditorVersion} #{GameVersion}"/>
<Property key="TextColour" value="0.6 0.7 0.8"/>
<Property key="Alpha" value="0.6"/>
</Widget>
<Widget type="TabControl" skin="TabControl" position="16 15 744 500" name="SubTab">
<Property key="Colour" value="0.73 0.88 1"/>
<Property key="SmoothShow" value="false"/>
<!-- View -->
<Widget type="TabItem" skin="" position="2 24 738 432">
<Property key="Caption" value="#80D0FF#{Camera}"/>
<Widget type="ImageBox" skin="ImageBox" position="660 12 60 60">
<Property key="ImageCoord" value="0 512 128 128"/>
<Property key="Alpha" value="0.6"/>
<Property key="ImageTexture" value="gui_icons.png"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="36 32 176 24">
<Property key="TextColour" value="0.5 0.75 1"/>
<Property key="Caption" value="#{SetCamTo}:"/>
</Widget>
<Widget type="Button" skin="Button" position="144 108 64 40" name="CamTop">
<Property key="Colour" value="0.4 0.65 0.9"/>
<Property key="TextColour" value="0.4 0.65 0.9"/>
<Property key="Caption" value="#{Top}"/>
</Widget>
<Widget type="Button" skin="Button" position="96 112 48 32" name="CamLeft">
<Property key="Colour" value="0.6 0.8 1"/>
<Property key="TextColour" value="0.6 0.8 1"/>
<Property key="Caption" value="#{Left}"/>
</Widget>
<Widget type="Button" skin="Button" position="208 112 48 32" name="CamRight">
<Property key="Colour" value="0.6 0.8 1"/>
<Property key="TextColour" value="0.6 0.8 1"/>
<Property key="Caption" value="#{Right}"/>
</Widget>
<Widget type="Button" skin="Button" position="150 76 52 32" name="CamBack">
<Property key="Colour" value="0.6 0.8 1"/>
<Property key="TextColour" value="0.6 0.8 1"/>
<Property key="Caption" value="#{Back}"/>
</Widget>
<Widget type="Button" skin="Button" position="150 148 52 32" name="CamFront">
<Property key="Colour" value="0.6 0.8 1"/>
<Property key="TextColour" value="0.6 0.8 1"/>
<Property key="Caption" value="#{Front}"/>
</Widget>
<Widget type="Button" skin="Button" position="354 78 96 24" name="CamView1">
<Property key="Colour" value="0.5 0.75 1"/>
<Property key="TextColour" value="0.5 0.75 1"/>
<Property key="Caption" value="#{ViewFront}"/>
</Widget>
<Widget type="Button" skin="Button" position="298 116 96 24" name="CamView2">
<Property key="Colour" value="0.5 0.75 1"/>
<Property key="TextColour" value="0.5 0.75 1"/>
<Property key="Caption" value="#{ViewLeft}"/>
</Widget>
<Widget type="Button" skin="Button" position="410 116 96 24" name="CamView3">
<Property key="Colour" value="0.5 0.75 1"/>
<Property key="TextColour" value="0.5 0.75 1"/>
<Property key="Caption" value="#{ViewRight}"/>
</Widget>
<Widget type="Button" skin="Button" position="344 148 116 36" name="CamView4">
<Property key="Colour" value="0.8 0.6 1"/>
<Property key="TextColour" value="0.8 0.6 1"/>
<Property key="Caption" value="#{ViewStart}"/>
<Widget type="ImageBox" skin="ImageBox" position="2 8 16 16">
<Property key="ImageCoord" value="256 0 128 128"/>
<Property key="Alpha" value="0.7"/>
<Property key="ImageTexture" value="gui_icons.png"/>
<Property key="NeedMouse" value="false"/>
</Widget>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 270 220 24">
<Property key="Caption" value="#{CamSpeed}"/>
<Property key="TextColour" value="0.5 0.75 1"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="256 270 60 24" name="CamSpeedVal">
<Property key="TextColour" value="0.5 0.75 1"/>
</Widget>
<Widget type="Slider" skin="Slider" position="320 270 320 16" name="CamSpeed">
<Property key="Colour" value="0.5 0.75 1"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 300 220 24">
<Property key="TextColour" value="0.4 0.65 0.9"/>
<Property key="Caption" value="#{CamInertia}"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="256 300 60 24" name="CamInertVal">
<Property key="TextColour" value="0.4 0.65 0.9"/>
</Widget>
<Widget type="Slider" skin="Slider" position="320 300 320 16" name="CamInert">
<Property key="Colour" value="0.4 0.65 0.9"/>
</Widget>
</Widget>
<!-- Minimap -->
<Widget type="TabItem" skin="" position="2 24 738 432">
<Property key="Caption" value="#90F890#{Minimap}"/>
<Widget type="ImageBox" skin="ImageBox" position="660 12 60 60">
<Property key="ImageCoord" value="512 512 128 128"/>
<Property key="Alpha" value="0.6"/>
<Property key="ImageTexture" value="gui_icons.png"/>
</Widget>
<Widget type="Button" skin="CheckBox" position="32 60 196 24" name="Minimap">
<Property key="Caption" value="#{MinimapAndSize}"/>
<Property key="TextColour" value="0.4 0.9 0.9"/>
</Widget>
<Widget type="Slider" skin="Slider" position="302 62 320 16" name="SizeMinimap">
<Property key="Colour" value="0.6 1.0 1.0"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="236 62 60 24" name="SizeMinimapVal">
<Property key="TextColour" value="0.5 0.8 0.8"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 92 96 24">
<Property key="TextColour" value="0.4 0.7 0.4"/>
<Property key="Caption" value="#{MiniType}"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="166 92 130 24" name="MiniNumVal">
<Property key="TextColour" value="0.4 0.7 0.4"/>
</Widget>
<Widget type="Slider" skin="Slider" position="302 92 320 16" name="MiniNum">
<Property key="Colour" value="0.4 0.7 0.4"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 122 196 24">
<Property key="TextColour" value="0.4 0.7 0.4"/>
<Property key="Alpha" value="0.6"/>
<Property key="Caption" value="#{MinimapUpdSkip} ="/>
</Widget>
<!--
<Widget type="TextBox" skin="TextBox" position="236 92 60 24" name="MiniUpdVal">
<Property key="TextColour" value="0.4 0.7 0.4"/>
</Widget>
<Widget type="Slider" skin="Slider" position="302 92 320 16" name="MiniUpd">
<Property key="Colour" value="0.4 0.7 0.4"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 122 196 24">
<Property key="Caption" value="#{TerUpdSkip} ="/>
<Property key="TextColour" value="0.5 0.8 0.3"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="236 122 60 24" name="TerUpdVal">
<Property key="TextColour" value="0.5 0.8 0.3"/>
</Widget>
<Widget type="Slider" skin="Slider" position="302 122 320 16" name="TerUpd">
<Property key="Colour" value="0.4 0.9 0.4"/>
</Widget> -->
<Widget type="TextBox" skin="TextBox" position="32 172 196 24">
<Property key="Caption" value="#{RoadUpdSkip}"/>
<Property key="TextColour" value="0.8 0.5 0.3"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="236 172 60 24" name="RoadUpdVal">
<Property key="TextColour" value="0.8 0.5 0.3"/>
</Widget>
<Widget type="Slider" skin="Slider" position="302 172 320 16" name="RoadUpd">
<Property key="Colour" value="0.9 0.6 0.4"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 202 196 24">
<Property key="Caption" value="#{RoadPointSize}"/>
<Property key="TextColour" value="1.0 0.7 0.5"/>
</Widget>
<Widget type="Slider" skin="Slider" position="302 202 320 16" name="SizeRoadP">
<Property key="Colour" value="1.0 0.7 0.5"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="236 202 60 24" name="SizeRoadPVal">
<Property key="TextColour" value="1.0 0.7 0.5"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 242 196 24">
<Property key="Caption" value="3D #{MinimapRotate}"/>
<Property key="TextColour" value="0.8 0.8 0.7"/>
</Widget>
<Widget type="Slider" skin="Slider" position="302 242 320 16" name="PrvRotSpd">
<Property key="Colour" value="0.8 0.8 0.7"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="236 242 60 24" name="PrvRotSpdVal">
<Property key="TextColour" value="0.8 0.8 0.7"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 282 196 24">
<Property key="Caption" value="#{EditSpd}"/>
<Property key="TextColour" value="0.6 1.0 0.6"/>
</Widget>
<Widget type="Slider" skin="Slider" position="302 282 320 16" name="MoveSpd">
<Property key="Colour" value="0.6 1.0 0.6"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="236 282 60 24" name="MoveSpdVal">
<Property key="TextColour" value="0.6 1.0 0.6"/>
</Widget>
</Widget>
<!-- pacenotes -->
<Widget type="TabItem" skin="" position="2 24 794 562">
<Property key="Caption" value="#C0C060#{Pacenotes}"/>
<Widget type="Button" skin="CheckBox" position="32 16 132 24" name="ReverseOn">
<Property key="Caption" value="#{Track} - #{Reverse}"/>
<Property key="Colour" value="0.8 1 0.6"/>
<Property key="TextColour" value="0.8 1 0.5"/>
<UserString key="tip" value="#{TipReverse}"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="32 56 268 24">
<Property key="Caption" value="#{Pacenotes} - #{Detail}"/>
<Property key="TextColour" value="1.0 1.0 0.9"/>
</Widget>
<Widget type="Slider" skin="Slider" position="344 56 180 20" name="PaceShow">
<Property key="Colour" value="1.0 1.0 0.9"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="296 56 60 24" name="PaceShowVal">
<Property key="TextColour" value="0.9 0.9 0.6"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="32 130 72 72">
<Property key="ImageCoord" value="640 512 128 128"/>
<Property key="Alpha" value="0.3"/>
<Property key="ImageTexture" value="gui_icons.png"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="162 96 164 24">
<Property key="TextColour" value="0.9 0.9 0.7"/>
<Property key="Caption" value="#{ViewDist}"/>
</Widget>
<Widget type="Slider" skin="Slider" position="344 96 320 18" name="PaceDist">
<Property key="Colour" value="0.9 0.9 0.7"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="296 96 48 24" name="PaceDistVal">
<Property key="TextColour" value="0.9 0.9 0.7"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="232 136 64 24">
<Property key="TextColour" value="0.8 0.8 0.6"/>
<Property key="Caption" value="#{Size}"/>
</Widget>
<Widget type="Slider" skin="Slider" position="344 136 320 18" name="PaceSize">
<Property key="Colour" value="0.8 0.8 0.6"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="296 136 48 24" name="PaceSizeVal">
<Property key="TextColour" value="0.8 0.8 0.6"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="232 176 64 24">
<Property key="Caption" value="#{Near}"/>
<Property key="TextColour" value="0.7 0.7 0.5"/>
</Widget>
<Widget type="Slider" skin="Slider" position="344 176 320 18" name="PaceNear">
<Property key="Colour" value="0.7 0.7 0.5"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="296 176 48 24" name="PaceNearVal">
<Property key="TextColour" value="0.7 0.7 0.5"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="162 216 164 24">
<Property key="Caption" value="#{Transparency}"/>
<Property key="TextColour" value="0.6 0.6 0.4"/>
</Widget>
<Widget type="Slider" skin="Slider" position="344 216 320 18" name="PaceAlpha">
<Property key="Colour" value="0.6 0.6 0.4"/>
</Widget>
<Widget type="TextBox" skin="TextBox" position="296 216 48 24" name="PaceAlphaVal">
<Property key="TextColour" value="0.6 0.6 0.4"/>
</Widget>
<Widget type="Button" skin="CheckBox" position="32 316 184 24" name="ChkTrail">
<Property key="Caption" value="#{RacingLine} *"/>
<Property key="TextColour" value="1.0 0.7 0.4"/>
</Widget>
<Widget type="ImageBox" skin="ImageBox" position="32 346 72 72">
<Property key="ImageCoord" value="768 640 128 128"/>
<Property key="Alpha" value="0.7"/>
<Property key="ImageTexture" value="gui_icons.png"/>
</Widget>
</Widget>
<!--<Widget type="TabItem" skin="" position="2 24 754 478">
<Property key="Caption" value="#A0C080#{Generator}"/>
</Widget>-->
</Widget>
</Widget>
<!-- Settings -->
<Widget type="TabItem" skin="" position="2 24 794 562">
<Property key="Caption" value="#60A0FF#{Settings}"/>
<Widget type="TextBox" skin="TextBox" position="16 524 304 20">
<Property key="Caption" value="#{SREditorVersion} #{GameVersion}"/>
<Property key="TextColour" value="0.6 0.7 0.8"/>
<Property key="Alpha" value="0.6"/>
</Widget>
<Widget type="TabControl" skin="TabControl" position="16 15 744 500" name="SubTab">
<Property key="Colour" value="0.73 0.88 1"/>
<Property key="SmoothShow" value="false"/>
<!-- Settings -->
<Widget type="TabItem" skin="" position="2 24 738 432">
<Property key="Caption" value="#60A0FF#{Settings}"/>
<Widget type="TextBox" skin="TextBox" position="32 32 252 24">
<Property key="TextColour" value="0.68 0.74 0.8"/>
<Property key="Caption" value="#{Startup}"/>
</Widget>
<Widget type="Button" skin="CheckBox" position="32 62 308 24" name="StartInMain">
<Property key="TextColour" value="0.5 0.7 1.0"/>
<Property key="Caption" value="#{StartInMain}"/>
</Widget>
<Widget type="Button" skin="CheckBox" position="32 94 308 24" name="AutoStart">
<Property key="TextColour" value="0.7 0.8 0.9"/>
<Property key="Caption" value="#{TrackAutoLoad}"/>
</Widget>
<Widget type="Button" skin="CheckBox" position="32 126 308 24" name="EscQuits">
<Property key="TextColour" value="1.0 0.6 0.6"/>
<Property key="Caption" value="#{EscQuit}"/>
</Widget>
<Widget type="Button" skin="CheckBox" position="32 188 308 24" name="OgreDialog">
<Property key="TextColour" value="0.6 0.9 0.6"/>
<Property key="Caption" value="#{OgreDialog}"/>
</Widget>
<Widget type="Button" skin="CheckBox" position="32 222 356 24" name="MouseCapture">
<Property key="TextColour" value="0.6 0.8 0.8"/>
<Property key="Caption" value="#{MouseCapture}"/>
</Widget>
<!-- hlms -->
<Widget type="Button" skin="CheckBox" position="376 62 256 24" name="CacheHlms">
<Property key="TextColour" value="0.7 0.7 0.9"/>
<Property key="Caption" value="#{CacheMaterials}"/>
</Widget>
<Widget type="Button" skin="CheckBox" position="376 94 256 24" name="CacheShaders">
<Property key="TextColour" value="0.7 0.7 0.7"/>
<Property key="Caption" value="#{CacheShaders}"/>
</Widget>
</Widget>
<Widget type="TabItem" skin="" position="2 24 738 432">
<Property key="Caption" value="#7060B0#{Tweak}"/>
<!-- fps -->
<Widget type="ImageBox" skin="ImageBox" position="32 54 30 30">