forked from MattNF/map-sources
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathticketbooth_green.vmf
6801 lines (6801 loc) · 159 KB
/
ticketbooth_green.vmf
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
versioninfo
{
"editorversion" "400"
"editorbuild" "7554"
"mapversion" "12"
"formatversion" "100"
"prefab" "0"
}
visgroups
{
}
viewsettings
{
"bSnapToGrid" "1"
"bShowGrid" "1"
"bShowLogicalGrid" "0"
"nGridSpacing" "1"
"bShow3DGrid" "0"
}
world
{
"id" "1"
"mapversion" "12"
"classname" "worldspawn"
"detailmaterial" "detail/detailsprites"
"detailvbsp" "detail.vbsp"
"maxpropscreenwidth" "-1"
"skyname" "sky_day01_01"
}
entity
{
"id" "102"
"classname" "propper_model"
"autocenter" "1"
"concave" "1"
"disp_nowarp" "0"
"mass" "0.0"
"mat_nonormal" "1"
"materialpath" "darkcarnremix/ticketbooth_green"
"modelname" "darkcarnremix/ticketbooth_green"
"origin" "10.5 288 98"
"physmodel" "ticketbooth_green"
"scale" "1.0"
"smoothangle" "45"
"smoothing" "1"
"snaptogrid" "0"
"sourcefolder" "c:/propsource"
"surfaceprop" "wood"
"targetname" "ticketbooth_green"
"weldvertices" ".01"
solid
{
"id" "103"
side
{
"id" "1962"
"plane" "(35 207 134) (-29 207 134) (-74 252 134)"
"material" "WOOD/WOODSIDING_EXT_05"
"uaxis" "[1 0 0 -56] 0.25"
"vaxis" "[0 -1 0 -152] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "1961"
"plane" "(35 360 132) (-29 360 132) (-74 315 132)"
"material" "WOOD/WOOD_EXT_01"
"uaxis" "[1 0 0 -56] 0.25"
"vaxis" "[0 -1 0 -152] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "1960"
"plane" "(-29 360 132) (35 360 132) (35 360 134)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[1 0 0 -56] 0.25"
"vaxis" "[0 0 -1 0] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "1959"
"plane" "(-74 315 132) (-29 360 132) (-29 360 134)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[0 1 0 24] 0.25"
"vaxis" "[0 0 -1 0] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "1958"
"plane" "(-74 252 132) (-74 315 132) (-74 315 134)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[0 1 0 24] 0.25"
"vaxis" "[0 0 -1 0] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "1957"
"plane" "(-29 207 132) (-74 252 132) (-74 252 134)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[0 1 0 24] 0.25"
"vaxis" "[0 0 -1 0] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "1956"
"plane" "(35 207 132) (-29 207 132) (-29 207 134)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[1 0 0 -56] 0.25"
"vaxis" "[0 0 -1 0] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "1955"
"plane" "(80 252 132) (35 207 132) (35 207 134)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[0 1 0 24] 0.25"
"vaxis" "[0 0 -1 0] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "1954"
"plane" "(80 315 132) (80 252 132) (80 252 134)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[0 1 0 24] 0.25"
"vaxis" "[0 0 -1 0] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "1953"
"plane" "(35 360 132) (80 315 132) (80 315 134)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[0 1 0 24] 0.25"
"vaxis" "[0 0 -1 0] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
editor
{
"color" "220 30 220"
"visgroupshown" "1"
"visgroupautoshown" "1"
}
}
solid
{
"id" "118"
side
{
"id" "2093"
"plane" "(30.0957 350.465 134) (3 284 178) (70 312.193 134)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[0.920505 0.390731 0 -35.2802] 0.25"
"vaxis" "[0.390731 -0.920505 0 -31.8934] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2092"
"plane" "(70 312.197 135) (3 284 179) (30.0934 350.467 135)"
"material" "WOOD/MILROOF001"
"uaxis" "[-0.72134 0.69258 0 -16.88] 0.25"
"vaxis" "[0.57834 0.602051 -0.550508 -40.492] 0.25"
"rotation" "131"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2091"
"plane" "(70 312.197 134) (3 284 178) (3 284 179)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[0.920505 0.390731 0 -35.281] 0.25"
"vaxis" "[0 0 -1 0] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2090"
"plane" "(3 284 178) (30.094 350.466 134) (30.0938 350.469 135)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[-0.390731 0.920505 0 31.8934] 0.25"
"vaxis" "[0 0 -1 0] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2089"
"plane" "(30.0938 350.465 134) (70 312.195 134) (70 312.195 135)"
"material" "WOOD/MILROOF001"
"uaxis" "[-0.390731 0.920505 0 31.8934] 0.25"
"vaxis" "[0 0 -1 0] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
editor
{
"color" "220 30 220"
"visgroupshown" "1"
"visgroupautoshown" "1"
}
}
solid
{
"id" "119"
side
{
"id" "2098"
"plane" "(-25.2012 350.656 134) (3 284 178) (30.0956 350.466 134)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[0.920505 0.390731 0 -35.2802] 0.25"
"vaxis" "[0.390731 -0.920505 0 -31.8934] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2097"
"plane" "(30.0996 350.465 135) (3 284 179) (-25.1978 350.657 135)"
"material" "WOOD/MILROOF001"
"uaxis" "[-1 0 0.0022916 55] 0.25"
"vaxis" "[-0.00126417 0.834203 -0.551457 23.582] 0.25"
"rotation" "180"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2096"
"plane" "(30.0918 350.465 134) (3 284 178) (3 284 179)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[-0.390731 0.920505 0 31.8934] 0.25"
"vaxis" "[0 0 -1 0] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2095"
"plane" "(3 284 178) (-25.2 350.657 134) (-25.1992 350.656 135)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[-0.390731 0.920505 0 31.8934] 0.25"
"vaxis" "[0 0 -1 0] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2094"
"plane" "(-25.1953 350.657 134) (30.0977 350.466 134) (30.0938 350.466 135)"
"material" "WOOD/MILROOF001"
"uaxis" "[0.920505 0.390731 0 -35.2806] 0.25"
"vaxis" "[0 0 -1 0] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
editor
{
"color" "220 30 220"
"visgroupshown" "1"
"visgroupautoshown" "1"
}
}
solid
{
"id" "120"
side
{
"id" "2103"
"plane" "(-63.4648 310.754 134) (3 284 178) (-25.2015 350.655 134)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[0.920505 0.390731 0 -35.2802] 0.25"
"vaxis" "[0.390731 -0.920505 0 -31.8934] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2102"
"plane" "(-25.2012 350.656 135) (3 284 179) (-63.47 310.752 135)"
"material" "WOOD/MILROOF001"
"uaxis" "[0.685278 0.728255 -0.00626958 1.80467] 0.25"
"vaxis" "[0.609707 -0.568975 0.551838 1.343] 0.25"
"rotation" "52"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2101"
"plane" "(-25.2012 350.66 134) (3 284 178) (3 284 179)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[-0.390731 0.920505 0 31.8934] 0.25"
"vaxis" "[0 0 -1 0] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2100"
"plane" "(3 284 178) (-63.47 310.752 134) (-63.4727 310.752 135)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[-0.390731 0.920505 0 31.8934] 0.25"
"vaxis" "[0 0 -1 0] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2099"
"plane" "(-63.4688 310.75 134) (-25.1992 350.656 134) (-25.2031 350.652 135)"
"material" "WOOD/MILROOF001"
"uaxis" "[0.920505 0.390731 0 -35.2806] 0.25"
"vaxis" "[0 0 -1 0] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
editor
{
"color" "220 30 220"
"visgroupshown" "1"
"visgroupautoshown" "1"
}
}
solid
{
"id" "121"
side
{
"id" "2108"
"plane" "(3 284 178) (-63.47 310.754 134) (-63.6602 255.463 134)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[0.920505 0.390731 0 -35.2802] 0.25"
"vaxis" "[0.390731 -0.920505 0 -31.8934] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2107"
"plane" "(-63.4727 310.756 135) (3 284 179) (-63.66 255.462 135)"
"material" "WOOD/MILROOF001"
"uaxis" "[0.0301668 1 0.0176524 -16.563] 0.25"
"vaxis" "[0.833652 -0.0348996 0.551186 -59.781] 0.25"
"rotation" "88"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2106"
"plane" "(-63.4727 310.752 134) (3 284 178) (3 284 179)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[-0.390731 0.920505 0 31.8934] 0.25"
"vaxis" "[0 0 -1 0] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2105"
"plane" "(3 284 178) (-63.66 255.464 134) (-63.6602 255.465 135)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[0.920505 0.390731 0 -35.281] 0.25"
"vaxis" "[0 0 -1 0] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2104"
"plane" "(-63.6599 255.465 134) (-63.4698 310.754 134) (-63.4698 310.75 135)"
"material" "WOOD/MILROOF001"
"uaxis" "[-0.390731 0.920505 0 31.8934] 0.25"
"vaxis" "[0 0 -1 0] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
editor
{
"color" "220 30 220"
"visgroupshown" "1"
"visgroupautoshown" "1"
}
}
solid
{
"id" "122"
side
{
"id" "2113"
"plane" "(3 284 178) (-63.66 255.462 134) (-23.75 217.195 134)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[0.920505 0.390731 0 -35.2802] 0.25"
"vaxis" "[0.390731 -0.920505 0 -31.8934] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2112"
"plane" "(-63.6602 255.461 135) (3 284 179) (-23.7517 217.193 135)"
"material" "WOOD/MILROOF001"
"uaxis" "[-0.71113 0.702989 0.0100369 56.481] 0.25"
"vaxis" "[0.590893 0.589878 0.550354 -31.6333] 0.25"
"rotation" "130"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2111"
"plane" "(-63.6641 255.463 134) (3 284 178) (3 284 179)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[0.920505 0.390731 0 -35.2806] 0.25"
"vaxis" "[0 0 -1 0] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2110"
"plane" "(3 284 178) (-23.75 217.192 134) (-23.75 217.191 135)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[-0.390731 0.920505 0 31.8934] 0.25"
"vaxis" "[0 0 -1 0] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2109"
"plane" "(-23.75 217.188 134) (-63.6602 255.461 134) (-63.6641 255.465 135)"
"material" "WOOD/MILROOF001"
"uaxis" "[-0.390731 0.920505 0 31.8934] 0.25"
"vaxis" "[0 0 -1 0] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
editor
{
"color" "220 30 220"
"visgroupshown" "1"
"visgroupautoshown" "1"
}
}
solid
{
"id" "123"
side
{
"id" "2118"
"plane" "(3 284 178) (-23.752 217.192 134) (31.5371 217 134)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[0.920505 0.390731 0 -35.2802] 0.25"
"vaxis" "[0.390731 -0.920505 0 -31.8934] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2117"
"plane" "(-23.752 217.191 135) (3 284 179) (31.5361 217 135)"
"material" "WOOD/MILROOF001"
"uaxis" "[1 0 0.00227971 -9.07401] 0.25"
"vaxis" "[0.00125269 -0.835497 -0.549493 -2.22023] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2116"
"plane" "(-23.752 217.191 134) (3 284 178) (3 284 179)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[-0.390731 0.920505 0 31.8934] 0.25"
"vaxis" "[0 0 -1 0] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2115"
"plane" "(3 284 178) (31.538 217 134) (31.5391 217 135)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[-0.390731 0.920505 0 31.8934] 0.25"
"vaxis" "[0 0 -1 0] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2114"
"plane" "(31.5391 217 134) (-23.7539 217.192 134) (-23.7461 217.192 135)"
"material" "WOOD/MILROOF001"
"uaxis" "[0.920505 0.390731 0 -35.281] 0.25"
"vaxis" "[0 0 -1 0] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
editor
{
"color" "220 30 220"
"visgroupshown" "1"
"visgroupautoshown" "1"
}
}
solid
{
"id" "124"
side
{
"id" "2123"
"plane" "(69.8047 256.9 134) (3 284 178) (31.5341 217 134)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[0.920505 0.390731 0 -35.2802] 0.25"
"vaxis" "[0.390731 -0.920505 0 -31.8934] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2122"
"plane" "(31.5352 217 135) (3 284 179) (69.8069 256.905 135)"
"material" "WOOD/MILROOF001"
"uaxis" "[0.695179 0.718832 -0.00275594 -27.1779] 0.25"
"vaxis" "[0.599727 -0.582098 -0.549082 22.106] 0.25"
"rotation" "51"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2121"
"plane" "(31.5371 217 134) (3 284 178) (3 284 179)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[-0.390731 0.920505 0 31.8934] 0.25"
"vaxis" "[0 0 -1 0] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2120"
"plane" "(3 284 178) (69.8082 256.906 134) (69.8086 256.904 135)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[-0.390731 0.920505 0 31.8934] 0.25"
"vaxis" "[0 0 -1 0] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2119"
"plane" "(69.8047 256.906 134) (31.5352 217 134) (31.5391 217 135)"
"material" "WOOD/MILROOF001"
"uaxis" "[0.920505 0.390731 0 -35.2806] 0.25"
"vaxis" "[0 0 -1 0] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
editor
{
"color" "220 30 220"
"visgroupshown" "1"
"visgroupautoshown" "1"
}
}
solid
{
"id" "125"
side
{
"id" "2128"
"plane" "(70 312.193 134) (3 284 178) (69.808 256.906 134)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[0.920505 0.390731 0 -35.2802] 0.25"
"vaxis" "[0.390731 -0.920505 0 -31.8934] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2127"
"plane" "(69.8086 256.908 135) (3.01172 284 179) (70 312.189 135)"
"material" "WOOD/MILROOF001"
"uaxis" "[0.0010466 1 0.00159135 -25.2869] 0.25"
"vaxis" "[0.835501 0 -0.549489 -1.216] 0.25"
"rotation" "90"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2126"
"plane" "(69.8086 256.906 134) (3 284 178) (3 284 179)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[-0.390731 0.920505 0 31.8934] 0.25"
"vaxis" "[0 0 -1 0] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2125"
"plane" "(3 284 178) (70 312.198 134) (70 312.197 135)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[0.920505 0.390731 0 -35.2806] 0.25"
"vaxis" "[0 0 -1 0] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2124"
"plane" "(70 312.195 134) (69.8079 256.902 134) (69.8079 256.902 135)"
"material" "WOOD/MILROOF001"
"uaxis" "[-0.390731 0.920505 0 31.8934] 0.25"
"vaxis" "[0 0 -1 0] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
editor
{
"color" "220 30 220"
"visgroupshown" "1"
"visgroupautoshown" "1"
}
}
solid
{
"id" "126"
side
{
"id" "2192"
"plane" "(4.89453 285.902 193.466) (2.98438 284 194) (2.98438 286.708 193.466)"
"material" "WOOD/WOOD_EXT_01"
"uaxis" "[1 0 0 -396] 0.25"
"vaxis" "[0 -1 0 156] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2191"
"plane" "(5.70343 284 193.466) (2.98828 284 194) (4.89423 285.902 193.467)"
"material" "WOOD/WOOD_EXT_01"
"uaxis" "[1 0 0 -396] 0.25"
"vaxis" "[0 -1 0 156] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2190"
"plane" "(4.89258 282.08 193.466) (2.97656 284 194) (5.70392 284 193.465)"
"material" "WOOD/WOOD_EXT_01"
"uaxis" "[1 0 0 -396] 0.25"
"vaxis" "[0 -1 0 156] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2189"
"plane" "(3 281.301 193.466) (3 284 194) (4.9007 282.101 193.467)"
"material" "WOOD/WOOD_EXT_01"
"uaxis" "[1 0 0 -396] 0.25"
"vaxis" "[0 -1 0 156] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2188"
"plane" "(1.09393 282.102 193.466) (3 284 194) (3 281.296 193.465)"
"material" "WOOD/WOOD_EXT_01"
"uaxis" "[1 0 0 -396] 0.25"
"vaxis" "[0 -1 0 156] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2187"
"plane" "(0.297058 284 193.467) (3 284 194) (1.08997 282.102 193.465)"
"material" "WOOD/WOOD_EXT_01"
"uaxis" "[1 0 0 -396] 0.25"
"vaxis" "[0 -1 0 156] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2186"
"plane" "(1.09827 285.899 193.466) (3 284 194) (0.301514 284 193.467)"
"material" "WOOD/WOOD_EXT_01"
"uaxis" "[1 0 0 -396] 0.25"
"vaxis" "[0 -1 0 156] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2185"
"plane" "(3 286.695 193.47) (3 284.02 194) (1.10541 285.918 193.465)"
"material" "WOOD/WOOD_EXT_01"
"uaxis" "[1 0 0 -396] 0.25"
"vaxis" "[0 -1 0 156] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2184"
"plane" "(4.87891 285.904 193.471) (3.01654 286.688 193.471) (2.93298 288.824 192.022)"
"material" "WOOD/WOOD_EXT_01"
"uaxis" "[1 0 0 -396] 0.25"
"vaxis" "[0 -1 0 156] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2183"
"plane" "(7.80469 284.074 192.043) (5.70898 284 193.465) (4.89941 285.914 193.465)"
"material" "WOOD/WOOD_EXT_01"
"uaxis" "[1 0 0 -396] 0.25"
"vaxis" "[0 -1 0 156] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2182"
"plane" "(6.4007 280.464 191.955) (4.90039 282.094 193.466) (5.70313 284 193.466)"
"material" "WOOD/WOOD_EXT_01"
"uaxis" "[1 0 0 -396] 0.25"
"vaxis" "[0 -1 0 156] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2181"
"plane" "(3.08252 279.191 192.035) (3 281.301 193.467) (4.89856 282.099 193.467)"
"material" "WOOD/WOOD_EXT_01"
"uaxis" "[1 0 0 -396] 0.25"
"vaxis" "[0 -1 0 156] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2180"
"plane" "(-0.534058 280.597 191.957) (1.09766 282.102 193.467) (3 281.301 193.467)"
"material" "WOOD/WOOD_EXT_01"
"uaxis" "[1 0 0 -396] 0.25"
"vaxis" "[0 -1 0 156] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2179"
"plane" "(-1.8125 283.918 192.033) (0.305908 284 193.468) (1.10504 282.103 193.468)"
"material" "WOOD/WOOD_EXT_01"
"uaxis" "[1 0 0 -396] 0.25"
"vaxis" "[0 -1 0 156] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2178"
"plane" "(-0.407349 287.535 191.953) (1.09796 285.904 193.466) (0.298279 284 193.466)"
"material" "WOOD/WOOD_EXT_01"
"uaxis" "[1 0 0 -396] 0.25"
"vaxis" "[0 -1 0 156] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2177"
"plane" "(3 286.699 193.467) (1.10168 285.899 193.467) (-0.408691 287.536 191.95)"
"material" "WOOD/WOOD_EXT_01"
"uaxis" "[1 0 0 -396] 0.25"
"vaxis" "[0 -1 0 156] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2176"
"plane" "(7.51563 288.613 189.793) (6.5473 287.553 191.849) (3 288.901 191.949)"
"material" "WOOD/WOOD_EXT_01"
"uaxis" "[1 0 0 -396] 0.25"
"vaxis" "[0 0 -1 -44] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2175"
"plane" "(9.46948 283.925 189.677) (7.89844 284 191.949) (7.81036 284.083 192.036)"
"material" "WOOD/WOOD_EXT_01"
"uaxis" "[0 1 0 -396] 0.25"
"vaxis" "[0 0 -1 -44] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2174"
"plane" "(7.61298 279.483 189.794) (6.5531 280.453 191.849) (7.90118 284 191.949)"
"material" "WOOD/WOOD_EXT_01"
"uaxis" "[0 1 0 -396] 0.25"
"vaxis" "[0 0 -1 -44] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2173"
"plane" "(2.9209 277.532 189.678) (3 279.105 191.953) (3.08234 279.198 192.041)"
"material" "WOOD/WOOD_EXT_01"
"uaxis" "[1 0 0 -396] 0.25"
"vaxis" "[0 0 -1 -44] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2172"
"plane" "(-1.521 279.388 189.788) (-0.546753 280.453 191.853) (3 279.104 191.954)"
"material" "WOOD/WOOD_EXT_01"
"uaxis" "[1 0 0 -396] 0.25"
"vaxis" "[0 0 -1 -44] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2171"
"plane" "(-3.46741 284.079 189.68) (-1.89844 284 191.949) (-1.80554 283.918 192.039)"
"material" "WOOD/WOOD_EXT_01"
"uaxis" "[0 1 0 -156] 0.25"
"vaxis" "[0 0 -1 -44] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2170"
"plane" "(-1.61304 288.516 189.795) (-0.552612 287.546 191.851) (-1.90137 284 191.949)"
"material" "WOOD/WOOD_EXT_01"
"uaxis" "[0 1 0 -156] 0.25"
"vaxis" "[0 0 -1 -44] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2169"
"plane" "(3.07092 290.469 189.684) (3 288.902 191.949) (2.91797 288.813 192.035)"
"material" "WOOD/WOOD_EXT_01"
"uaxis" "[1 0 0 -396] 0.25"
"vaxis" "[0 0 -1 -44] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2168"
"plane" "(7.84473 288.96 187.195) (7.60156 288.596 189.679) (7.51489 288.61 189.799)"
"material" "WOOD/WOOD_EXT_01"
"uaxis" "[1 0 0 -396] 0.25"
"vaxis" "[0 0 -1 -44] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2167"
"plane" "(9.96161 283.909 187) (9.52051 284 189.562) (7.60101 288.6 189.678)"
"material" "WOOD/WOOD_EXT_01"
"uaxis" "[0 1 0 -396] 0.25"
"vaxis" "[0 0 -1 -44] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2166"
"plane" "(7.96503 279.16 187.21) (7.604 279.402 189.679) (7.61603 279.479 189.787)"
"material" "WOOD/WOOD_EXT_01"
"uaxis" "[0 1 0 -396] 0.25"
"vaxis" "[0 0 -1 -44] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "2165"
"plane" "(2.90942 277.038 187) (3 277.479 189.561) (7.59979 279.399 189.677)"
"material" "WOOD/WOOD_EXT_01"
"uaxis" "[1 0 0 -396] 0.25"
"vaxis" "[0 0 -1 -44] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"