forked from MattNF/map-sources
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathticketbooth_blue.vmf
6910 lines (6910 loc) · 163 KB
/
ticketbooth_blue.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" "2"
"formatversion" "100"
"prefab" "0"
}
visgroups
{
}
viewsettings
{
"bSnapToGrid" "1"
"bShowGrid" "1"
"bShowLogicalGrid" "0"
"nGridSpacing" "64"
"bShow3DGrid" "0"
}
world
{
"id" "1"
"mapversion" "2"
"classname" "worldspawn"
"detailmaterial" "detail/detailsprites"
"detailvbsp" "detail.vbsp"
"maxpropscreenwidth" "-1"
"skyname" "sky_day01_01"
}
entity
{
"id" "2"
"classname" "propper_model"
"autocenter" "1"
"concave" "1"
"disp_nowarp" "0"
"mass" "0.0"
"mat_nonormal" "1"
"materialpath" "darkcarnremix/ticketbooth_blue"
"modelname" "darkcarnremix/ticketbooth_blue"
"origin" "16.5 5 97.5"
"physmodel" "ticketbooth_blue"
"scale" "1.0"
"smoothangle" "45"
"smoothing" "1"
"snaptogrid" "0"
"sourcefolder" "c:/propsource"
"surfaceprop" "wood"
"targetname" "ticketbooth_blue"
"weldvertices" ".01"
solid
{
"id" "3"
side
{
"id" "618"
"plane" "(10.9314 2.8642 192.466) (9.02124 0.961853 193) (9.02124 3.67024 192.466)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 -1 0 -208.153] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "617"
"plane" "(11.7403 0.961853 192.466) (9.02515 0.961853 193) (10.9311 2.86383 192.467)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 -1 0 -208.153] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "616"
"plane" "(10.9294 -0.958084 192.466) (9.01343 0.961853 193) (11.7408 0.961853 192.465)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 -1 0 -208.153] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "615"
"plane" "(9.03687 -1.73747 192.466) (9.03687 0.961853 193) (10.9376 -0.936844 192.467)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 -1 0 -208.153] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "614"
"plane" "(7.1308 -0.936417 192.466) (9.03687 0.961853 193) (9.03687 -1.74207 192.465)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 -1 0 -208.153] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "613"
"plane" "(6.33392 0.961853 192.467) (9.03687 0.961853 193) (7.12683 -0.936417 192.465)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 -1 0 -208.153] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "612"
"plane" "(7.13513 2.8613 192.466) (9.03687 0.961853 193) (6.33838 0.961853 192.467)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 -1 0 -208.153] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "611"
"plane" "(9.03687 3.65717 192.47) (9.03687 0.981384 193) (7.14227 2.87987 192.465)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 -1 0 -208.153] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "610"
"plane" "(10.9158 2.86615 192.471) (9.05341 3.65028 192.471) (8.96985 5.78615 191.022)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 -1 0 -208.153] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "609"
"plane" "(13.8416 1.03607 191.043) (11.7458 0.961853 192.465) (10.9363 2.87592 192.465)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 -1 0 -208.153] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "608"
"plane" "(12.4376 -2.57416 190.955) (10.9373 -0.944397 192.466) (11.74 0.961853 192.466)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 -1 0 -208.153] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "607"
"plane" "(9.11938 -3.84674 191.035) (9.03687 -1.73737 192.467) (10.9354 -0.938919 192.467)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 -1 0 -208.153] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "606"
"plane" "(5.50281 -2.44078 190.957) (7.13452 -0.936584 192.467) (9.03687 -1.73686 192.467)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 -1 0 -208.153] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "605"
"plane" "(4.22437 0.879944 191.033) (6.34277 0.961853 192.468) (7.14191 -0.935501 192.468)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 -1 0 -208.153] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "604"
"plane" "(5.62952 4.49722 190.953) (7.13483 2.86607 192.466) (6.33514 0.961853 192.466)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 -1 0 -208.153] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "603"
"plane" "(9.03687 3.66057 192.467) (7.13855 2.86044 192.467) (5.62817 4.49811 190.95)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 -1 0 -208.153] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "602"
"plane" "(13.5525 5.57513 188.793) (12.5842 4.51489 190.849) (9.03687 5.86288 190.949)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 0 -1 -48] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "601"
"plane" "(15.5063 0.886826 188.677) (13.9353 0.961853 190.949) (13.8472 1.0444 191.036)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[0 1 0 208.153] 0.25"
"vaxis" "[0 0 -1 -48] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "600"
"plane" "(13.6498 -3.55484 188.794) (12.59 -2.58549 190.849) (13.938 0.961853 190.949)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[0 1 0 208.153] 0.25"
"vaxis" "[0 0 -1 -48] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "599"
"plane" "(8.95776 -5.50574 188.678) (9.03687 -3.93268 190.953) (9.1192 -3.84048 191.041)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 0 -1 -48] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "598"
"plane" "(4.51587 -3.65042 188.788) (5.49011 -2.5854 190.853) (9.03687 -3.93405 190.954)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 0 -1 -48] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "597"
"plane" "(2.56946 1.0407 188.68) (4.13843 0.961853 190.949) (4.23132 0.87944 191.039)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[0 1 0 208.153] 0.25"
"vaxis" "[0 0 -1 -48] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "596"
"plane" "(4.42383 5.47792 188.795) (5.48425 4.508 190.851) (4.1355 0.961853 190.949)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[0 1 0 208.153] 0.25"
"vaxis" "[0 0 -1 -48] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "595"
"plane" "(9.10779 7.4306 188.684) (9.03687 5.8642 190.949) (8.95483 5.77435 191.035)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 0 -1 -48] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "594"
"plane" "(13.8816 5.92181 186.195) (13.6384 5.55814 188.679) (13.5518 5.57155 188.799)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 0 -1 -48] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "593"
"plane" "(15.9985 0.870651 186) (15.5574 0.961853 188.562) (13.6379 5.56171 188.678)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[0 1 0 208.153] 0.25"
"vaxis" "[0 0 -1 -48] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "592"
"plane" "(14.0019 -3.87802 186.21) (13.6409 -3.63647 188.679) (13.6529 -3.55881 188.787)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[0 1 0 208.153] 0.25"
"vaxis" "[0 0 -1 -48] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "591"
"plane" "(8.94629 -6 186) (9.03687 -5.55899 188.561) (13.6367 -3.6395 188.677)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 0 -1 -48] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "590"
"plane" "(4.19373 -3.99965 186.199) (4.4364 -3.63707 188.679) (4.52002 -3.65002 188.795)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 0 -1 -48] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "589"
"plane" "(2.07495 1.05247 186) (2.51599 0.961853 188.561) (4.4353 -3.63794 188.677)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[0 1 0 208.153] 0.25"
"vaxis" "[0 0 -1 -48] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "588"
"plane" "(4.07495 5.80455 186.2) (4.4375 5.56198 188.679) (4.42468 5.47916 188.794)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[0 1 0 208.153] 0.25"
"vaxis" "[0 0 -1 -48] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "587"
"plane" "(9.12732 7.92279 186) (9.03687 7.48276 188.561) (4.43713 5.5636 188.677)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 0 -1 -48] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "586"
"plane" "(13.6749 5.47426 183.324) (13.9371 5.86133 186) (13.8792 5.92397 186.202)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 0 -1 -48] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "585"
"plane" "(15.9955 0.961853 185.762) (13.9366 5.86212 186) (13.6742 5.47481 183.323)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[0 1 0 208.153] 0.25"
"vaxis" "[0 0 -1 -48] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "584"
"plane" "(13.9418 -3.93607 186) (14.0007 -3.88156 186.191) (16 0.869492 186)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[0 1 0 208.153] 0.25"
"vaxis" "[0 0 -1 -48] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "583"
"plane" "(9.03687 -5.99684 185.769) (13.9392 -3.936 186) (13.5504 -3.67258 183.319)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 0 -1 -48] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "582"
"plane" "(4.13684 -3.93837 186) (4.19434 -4.00047 186.201) (8.94489 -5.99956 186)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 0 -1 -48] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "581"
"plane" "(2.07837 0.961853 185.756) (4.13501 -3.93614 186) (4.39624 -3.55054 183.328)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[0 1 0 208.153] 0.25"
"vaxis" "[0 0 -1 -48] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "580"
"plane" "(4.13782 5.86218 186) (4.07483 5.80396 186.203) (2.07605 1.05371 186)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[0 1 0 208.153] 0.25"
"vaxis" "[0 0 -1 -48] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "579"
"plane" "(9.03687 7.92044 185.759) (4.13745 5.86232 186) (4.52417 5.60034 183.325)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 0 -1 -48] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "578"
"plane" "(13.5686 5.49332 183.18) (9.03687 7.45947 183.316) (8.98621 5.92552 181.107)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 0 -1 -48] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "577"
"plane" "(15.5948 1.04124 183.45) (13.6743 5.47395 183.319) (13.5756 5.49129 183.185)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[0 1 0 208.153] 0.25"
"vaxis" "[0 0 -1 -48] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "576"
"plane" "(13.5679 -3.57213 183.183) (15.5361 0.961853 183.319) (13.9997 1.01466 181.107)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[0 1 0 208.153] 0.25"
"vaxis" "[0 0 -1 -48] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "575"
"plane" "(9.11609 -5.59697 183.454) (13.5497 -3.67598 183.324) (13.5676 -3.5737 183.185)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 0 -1 -48] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "574"
"plane" "(4.50342 -3.56931 183.182) (9.03687 -5.53677 183.318) (9.08899 -4.00117 181.107)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 0 -1 -48] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "573"
"plane" "(4.39893 -3.55141 183.326) (4.50305 -3.56969 183.185) (5.51611 -2.48323 181.049)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[0 1 0 208.153] 0.25"
"vaxis" "[0 0 -1 -48] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "572"
"plane" "(4.50513 5.49197 183.178) (2.54016 0.961853 183.313) (4.07288 0.912537 181.107)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[0 1 0 208.153] 0.25"
"vaxis" "[0 0 -1 -48] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "571"
"plane" "(4.52393 5.59972 183.325) (4.50586 5.49655 183.185) (5.59167 4.48387 181.05)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 0 -1 -48] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "570"
"plane" "(12.4747 4.40053 181) (9.03687 5.8636 181.052) (9.08551 3.64125 179.533)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 -1 0 -208.153] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "569"
"plane" "(12.5607 4.40791 181.052) (12.4715 4.40085 180.99) (10.9286 2.92123 179.544)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 -1 0 -208.153] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "568"
"plane" "(12.4755 -2.47392 180.99) (13.9371 0.961853 181.05) (11.7001 0.911514 179.522)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 -1 0 -208.153] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "567"
"plane" "(12.4808 -2.55962 181.048) (10.9944 -0.93399 179.544) (8.99103 -1.70329 179.522)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 -1 0 -208.153] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "566"
"plane" "(5.60229 -2.47646 180.989) (9.03687 -3.93687 181.049) (8.98822 -1.70367 179.522)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 -1 0 -208.153] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "565"
"plane" "(6.37268 1.00859 179.522) (4.13623 0.961853 181.05) (5.51453 -2.48277 181.049)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 -1 0 -208.153] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "564"
"plane" "(5.599 4.38965 180.984) (4.14307 0.961853 181.044) (6.36652 1.01065 179.523)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 -1 0 -208.153] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "563"
"plane" "(9.09247 3.64558 179.534) (9.03687 5.86163 181.05) (8.98303 5.92438 181.107)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 -1 0 -208.153] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "562"
"plane" "(9.02045 0.961853 179) (10.9293 2.92052 179.544) (9.08691 3.64191 179.533)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 -1 0 -208.153] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "561"
"plane" "(11.6987 0.911453 179.521) (10.917 2.90881 179.532) (9.02173 0.961853 179)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 -1 0 -208.153] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "560"
"plane" "(10.9976 -0.932861 179.546) (11.7198 0.911987 179.535) (9.03687 0.961853 179)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 -1 0 -208.153] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "559"
"plane" "(8.98651 -1.7023 179.522) (10.9854 -0.920044 179.534) (9.03687 0.961853 179)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 -1 0 -208.153] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "558"
"plane" "(7.14252 -0.998505 179.545) (8.98694 -1.72069 179.535) (9.03687 0.961853 179)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 -1 0 -208.153] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "557"
"plane" "(6.37463 1.01204 179.521) (7.15619 -0.985199 179.533) (9.03687 0.961853 179)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 -1 0 -208.153] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "556"
"plane" "(7.07916 2.85338 179.543) (6.35803 1.01176 179.532) (9.03687 0.961853 179)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 -1 0 -208.153] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "555"
"plane" "(7.0882 2.84387 179.534) (8.99365 0.942276 179) (9.08728 3.62617 179.522)"
"material" "PROPS/CARPETFLOOR001A"
"uaxis" "[1 0 0 -164.147] 0.25"
"vaxis" "[0 -1 0 -208.153] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
editor
{
"color" "220 30 220"
"visgroupshown" "1"
"visgroupautoshown" "1"
}
}
solid
{
"id" "4"
side
{
"id" "626"
"plane" "(-18 -10 10) (-18 94 10) (47 94 10)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[1 0 0 -16] 0.25"
"vaxis" "[0 -1 0 -4] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "625"
"plane" "(102 -38 2) (102 39 2) (47 94 2)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[1 0 0 -16] 0.25"
"vaxis" "[0 -1 0 -4] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "624"
"plane" "(102 39 2) (102 -38 2) (102 -38 10)"
"material" "WOOD/WOOD_EXT_02"
"uaxis" "[0 1 0 440] 0.25"
"vaxis" "[0 0 -1 8] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "623"
"plane" "(-18 94 2) (47 94 2) (47 94 10)"
"material" "WOOD/WOOD_EXT_02"
"uaxis" "[-1 0 0 80] 0.25"
"vaxis" "[0 0 -1 40] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "622"
"plane" "(-18 -10 2) (-18 94 2) (-18 94 10)"
"material" "WOOD/WOOD_EXT_02"
"uaxis" "[0 -1 0 -260] 0.25"
"vaxis" "[0 0 -1 40] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "621"
"plane" "(47 94 2) (102 39 2) (102 39 10)"
"material" "WOOD/WOOD_EXT_02"
"uaxis" "[-0.707107 0.707107 0 452.496] 0.25"
"vaxis" "[0 0 -1 40] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "620"
"plane" "(102 -38 2) (56 -84 2) (56 -84 10)"
"material" "WOOD/WOOD_EXT_02"
"uaxis" "[0.707107 0.707107 0 -84.798] 0.25"
"vaxis" "[0 0 -1 40] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "619"
"plane" "(56 -84 2) (-18 -10 2) (-18 -10 10)"
"material" "WOOD/WOOD_EXT_02"
"uaxis" "[0 1 0 260] 0.25"
"vaxis" "[0 0 -1 40] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
editor
{
"color" "220 30 220"
"visgroupshown" "1"
"visgroupautoshown" "1"
}
}
solid
{
"id" "5"
side
{
"id" "632"
"plane" "(70 23 132) (70 28 132) (77 28 132)"
"material" "WOOD/WOOD_EXT_02"
"uaxis" "[0 1 0 420] 0.25"
"vaxis" "[1 0 0 -280] 0.25"
"rotation" "90"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "631"
"plane" "(70 28 2) (70 23 2) (77 23 2)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[0 1 0 36] 0.25"
"vaxis" "[1 0 0 -24] 0.25"
"rotation" "90"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "630"
"plane" "(70 23 2) (70 28 2) (70 28 132)"
"material" "WOOD/WOOD_EXT_02"
"uaxis" "[0 0 1 -8] 0.25"
"vaxis" "[0 1 0 420] 0.25"
"rotation" "90"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "629"
"plane" "(77 28 2) (77 23 2) (77 23 132)"
"material" "WOOD/WOOD_EXT_02"
"uaxis" "[0 0 1 -8] 0.25"
"vaxis" "[0 1 0 420] 0.25"
"rotation" "90"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "628"
"plane" "(70 28 2) (77 28 2) (77 28 132)"
"material" "WOOD/WOOD_EXT_02"
"uaxis" "[0 0 1 -8] 0.25"
"vaxis" "[1 0 0 -280] 0.25"
"rotation" "90"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "627"
"plane" "(77 23 2) (70 23 2) (70 23 132)"
"material" "WOOD/WOOD_EXT_02"
"uaxis" "[0 0 1 -8] 0.25"
"vaxis" "[1 0 0 -280] 0.25"
"rotation" "90"
"lightmapscale" "16"
"smoothing_groups" "0"
}
editor
{
"color" "220 30 220"
"visgroupshown" "1"
"visgroupautoshown" "1"
}
}
solid
{
"id" "6"
side
{
"id" "638"
"plane" "(70 -27 132) (70 -21 132) (77 -21 132)"
"material" "WOOD/WOOD_EXT_02"
"uaxis" "[0 1 0 108] 0.25"
"vaxis" "[1 0 0 -280] 0.25"
"rotation" "90"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "637"
"plane" "(70 -21 2) (70 -27 2) (77 -27 2)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[0 1 0 44] 0.25"
"vaxis" "[1 0 0 -24] 0.25"
"rotation" "90"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "636"
"plane" "(70 -27 2) (70 -21 2) (70 -21 132)"
"material" "WOOD/WOOD_EXT_02"
"uaxis" "[0 0 1 -8] 0.25"
"vaxis" "[0 1 0 108] 0.25"
"rotation" "90"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "635"
"plane" "(77 -21 2) (77 -27 2) (77 -27 132)"
"material" "WOOD/WOOD_EXT_02"
"uaxis" "[0 0 1 -8] 0.25"
"vaxis" "[0 1 0 108] 0.25"
"rotation" "90"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "634"
"plane" "(77 -27 2) (70 -27 2) (70 -27 132)"
"material" "WOOD/WOOD_EXT_02"
"uaxis" "[0 0 1 -8] 0.25"
"vaxis" "[1 0 0 -280] 0.25"
"rotation" "90"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "633"
"plane" "(70 -21 2) (77 -21 2) (77 -21 132)"