-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathticketbooth_red.vmf
6910 lines (6910 loc) · 166 KB
/
ticketbooth_red.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" "9"
"formatversion" "100"
"prefab" "0"
}
visgroups
{
}
viewsettings
{
"bSnapToGrid" "1"
"bShowGrid" "1"
"bShowLogicalGrid" "0"
"nGridSpacing" "1"
"bShow3DGrid" "0"
}
world
{
"id" "1"
"mapversion" "9"
"classname" "worldspawn"
"detailmaterial" "detail/detailsprites"
"detailvbsp" "detail.vbsp"
"maxpropscreenwidth" "-1"
"skyname" "sky_day01_01"
}
entity
{
"id" "2969"
"classname" "propper_model"
"autocenter" "0"
"concave" "1"
"disp_nowarp" "0"
"mass" "0.0"
"mat_nonormal" "1"
"materialpath" "darkcarnremix/ticketbooth_red"
"modelname" "darkcarnremix/ticketbooth_red"
"origin" "-41.5 282 97.5"
"physmodel" "ticketbooth_red"
"scale" "1.0"
"smoothangle" "45"
"smoothing" "1"
"snaptogrid" "0"
"sourcefolder" "c:/propsource"
"surfaceprop" "wood"
"targetname" "ticketbooth_red"
"weldvertices" ".01"
solid
{
"id" "285"
side
{
"id" "5642"
"plane" "(-47.0508 279.863 192.464) (-48.9453 277.977 193) (-49 280.636 192.473)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 -1 0 599.855] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5641"
"plane" "(-46.2526 277.964 192.463) (-48.9609 277.973 193) (-47.0585 279.866 192.464)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 -1 0 599.855] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5640"
"plane" "(-47.0479 276.087 192.465) (-48.9688 277.973 193) (-46.2533 277.964 192.464)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 -1 0 599.855] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5639"
"plane" "(-49 275.282 192.472) (-49 277.963 193) (-47.0599 276.066 192.467)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 -1 0 599.855] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5638"
"plane" "(-50.8717 276.064 192.466) (-48.9688 277.961 193) (-48.9682 275.256 192.464)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 -1 0 599.855] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5637"
"plane" "(-51.6515 277.956 192.47) (-48.9688 277.961 193) (-50.8709 276.065 192.466)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 -1 0 599.855] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5636"
"plane" "(-50.8723 279.848 192.466) (-48.9668 277.961 193) (-51.6513 277.956 192.47)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 -1 0 599.855] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5635"
"plane" "(-48.9751 280.664 192.468) (-48.9897 277.988 193) (-50.8653 279.846 192.472)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 -1 0 599.855] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5634"
"plane" "(-47.0625 279.859 192.468) (-48.9722 280.663 192.468) (-49.0559 282.766 191.042)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 -1 0 599.855] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5633"
"plane" "(-44.1563 278.047 191.035) (-46.2559 277.965 192.465) (-47.0576 279.863 192.465)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 -1 0 599.855] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5632"
"plane" "(-45.5505 274.407 190.938) (-47.0645 276.055 192.466) (-46.2617 277.961 192.466)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 -1 0 599.855] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5631"
"plane" "(-48.8861 273.156 191.041) (-48.9648 275.256 192.465) (-47.0626 276.058 192.466)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 -1 0 599.855] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5630"
"plane" "(-52.5551 274.507 190.905) (-50.8672 276.063 192.466) (-48.9655 275.261 192.465)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 -1 0 599.855] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5629"
"plane" "(-53.7617 277.867 191.047) (-51.6665 277.956 192.466) (-50.8692 276.061 192.466)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 -1 0 599.855] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5628"
"plane" "(-52.4271 281.576 190.893) (-50.8663 279.879 192.465) (-51.6747 277.95 192.465)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 -1 0 599.855] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5627"
"plane" "(-48.984 280.651 192.47) (-50.8508 279.865 192.468) (-52.4331 281.585 190.877)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 -1 0 599.855] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5626"
"plane" "(-44.3264 282.32 189.085) (-45.1563 281.493 190.734) (-45.3208 281.478 190.847)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 0 -1 232] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5625"
"plane" "(-42.4854 277.883 188.67) (-44.0586 277.957 190.945) (-44.157 278.049 191.038)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[0 1 0 -343.855] 0.25"
"vaxis" "[0 0 -1 232] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5624"
"plane" "(-44.3561 273.415 188.777) (-45.4241 274.398 190.851) (-44.0689 277.966 190.953)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[0 1 0 -343.855] 0.25"
"vaxis" "[0 0 -1 232] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5623"
"plane" "(-49.042 271.489 188.667) (-48.9648 273.066 190.949) (-48.8835 273.154 191.037)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 0 -1 232] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5622"
"plane" "(-53.5533 273.379 188.79) (-52.5632 274.437 190.854) (-48.9647 273.066 190.952)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 0 -1 232] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5621"
"plane" "(-55.4334 278.045 188.679) (-53.8672 277.969 190.945) (-53.7682 277.878 191.037)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[0 1 0 -343.855] 0.25"
"vaxis" "[0 0 -1 232] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5620"
"plane" "(-53.5143 282.559 188.835) (-52.4859 281.585 190.847) (-53.8653 277.965 190.945)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[0 1 0 -343.855] 0.25"
"vaxis" "[0 0 -1 232] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5619"
"plane" "(-48.8937 284.438 188.672) (-48.9648 282.859 190.953) (-49.043 282.773 191.035)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 0 -1 232] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5618"
"plane" "(-44.1206 282.924 186.191) (-44.3726 282.541 188.799) (-48.8939 284.435 188.676)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 0 -1 232] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5617"
"plane" "(-42 277.862 186.021) (-42.4359 277.952 188.558) (-44.3248 282.323 189.081)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[0 1 0 -343.855] 0.25"
"vaxis" "[0 0 -1 232] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5616"
"plane" "(-44 273.124 186.206) (-44.3611 273.366 188.708) (-42.4811 277.884 188.66)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[0 1 0 -343.855] 0.25"
"vaxis" "[0 0 -1 232] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5615"
"plane" "(-49.0562 271 186) (-48.9668 271.436 188.548) (-44.3641 273.364 188.706)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 0 -1 232] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5614"
"plane" "(-53.8021 273 186.187) (-53.5486 273.383 188.799) (-49.0425 271.497 188.682)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 0 -1 232] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5613"
"plane" "(-55.9241 278.06 186.016) (-55.4866 277.971 188.557) (-53.5521 273.38 188.792)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[0 1 0 -343.855] 0.25"
"vaxis" "[0 0 -1 232] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5612"
"plane" "(-53.9238 282.804 186.196) (-53.5415 282.553 188.802) (-55.433 278.042 188.677)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[0 1 0 -343.855] 0.25"
"vaxis" "[0 0 -1 232] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5611"
"plane" "(-48.8682 284.927 185.988) (-48.961 284.482 188.569) (-53.5161 282.558 188.835)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 0 -1 232] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5610"
"plane" "(-44.327 282.476 183.318) (-44.0644 282.863 186) (-44.1199 282.923 186.19)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 0 -1 232] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5609"
"plane" "(-42 277.96 185.775) (-44.0646 282.862 186) (-44.3278 282.474 183.316)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[0 1 0 -343.855] 0.25"
"vaxis" "[0 0 -1 232] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5608"
"plane" "(-44.0598 273.064 186) (-44 273.122 186.205) (-42 277.86 186.025)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[0 1 0 -343.855] 0.25"
"vaxis" "[0 0 -1 232] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5607"
"plane" "(-48.9623 271 185.776) (-44.0575 273.065 186) (-44.4432 273.33 183.319)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 0 -1 232] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5606"
"plane" "(-53.8626 273.06 186) (-53.8062 273 186.193) (-49.058 271 186)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 0 -1 232] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5605"
"plane" "(-55.9222 277.962 185.781) (-53.8607 273.06 186) (-53.5987 273.447 183.324)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[0 1 0 -343.855] 0.25"
"vaxis" "[0 0 -1 232] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5604"
"plane" "(-53.858 282.863 186) (-53.9243 282.802 186.209) (-55.9237 278.058 186.023)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[0 1 0 -343.855] 0.25"
"vaxis" "[0 0 -1 232] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5603"
"plane" "(-48.9601 284.924 185.763) (-53.8599 282.863 186) (-53.4727 282.604 183.329)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 0 -1 232] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5602"
"plane" "(-44.427 282.491 183.181) (-48.9548 284.468 183.334) (-49 282.919 181.101)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 0 -1 232] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5601"
"plane" "(-42.4051 278.033 183.448) (-44.3257 282.474 183.321) (-44.4303 282.492 183.179)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[0 1 0 -343.855] 0.25"
"vaxis" "[0 0 -1 232] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5600"
"plane" "(-44.4272 273.421 183.195) (-42.456 277.965 183.33) (-44.0192 278.024 181.077)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[0 1 0 -343.855] 0.25"
"vaxis" "[0 0 -1 232] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5599"
"plane" "(-48.8917 271.406 183.45) (-44.4424 273.33 183.325) (-44.4255 273.426 183.193)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 0 -1 232] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5598"
"plane" "(-53.5005 273.43 183.191) (-48.9592 271.457 183.33) (-48.9009 273 181.109)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 0 -1 232] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5597"
"plane" "(-53.6032 273.448 183.329) (-53.4964 273.429 183.184) (-52.4829 274.515 181.048)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[0 1 0 -343.855] 0.25"
"vaxis" "[0 0 -1 232] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5596"
"plane" "(-53.4925 282.49 183.174) (-55.4605 277.961 183.314) (-53.9282 277.91 181.108)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[0 1 0 -343.855] 0.25"
"vaxis" "[0 0 -1 232] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5595"
"plane" "(-53.4727 282.602 183.324) (-53.4922 282.49 183.173) (-52.4081 281.478 181.04)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 0 -1 232] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5594"
"plane" "(-45.5062 281.407 181) (-48.9585 282.862 181.049) (-48.9089 280.645 179.534)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 -1 0 599.855] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5593"
"plane" "(-45.4323 281.412 181.057) (-47.0689 279.915 179.543) (-46.2891 277.947 179.526)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 -1 0 599.855] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5592"
"plane" "(-45.5241 274.522 181) (-44.046 278 181.052) (-46.2857 277.933 179.526)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 -1 0 599.855] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5591"
"plane" "(-45.5218 274.437 181.044) (-47 276.055 179.546) (-49 275.286 179.525)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 -1 0 599.855] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5590"
"plane" "(-52.4083 274.521 181) (-48.9557 273.053 181.056) (-49 275.296 179.523)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 -1 0 599.855] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5589"
"plane" "(-51.6237 278.013 179.521) (-53.8649 277.968 181.051) (-53.9313 277.911 181.112)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 -1 0 599.855] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5588"
"plane" "(-52.4017 281.397 180.983) (-53.8597 277.97 181.045) (-51.6316 278.021 179.521)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 -1 0 599.855] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5587"
"plane" "(-48.9134 280.64 179.533) (-48.9632 282.868 181.055) (-52.4086 281.477 181.04)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 -1 0 599.855] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5586"
"plane" "(-48.9834 277.976 179) (-47.0693 279.91 179.542) (-48.9147 280.641 179.533)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 -1 0 599.855] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5585"
"plane" "(-46.2854 277.933 179.526) (-47.0806 279.899 179.532) (-48.9874 277.975 179)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 -1 0 599.855] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5584"
"plane" "(-47 276.065 179.545) (-46.2744 277.934 179.534) (-48.9505 277.938 179)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 -1 0 599.855] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5583"
"plane" "(-49.0108 275.292 179.524) (-47.0142 276.074 179.536) (-48.9779 277.961 179)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 -1 0 599.855] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5582"
"plane" "(-50.8598 276 179.546) (-49.0104 275.276 179.536) (-48.975 277.964 179)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 -1 0 599.855] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5581"
"plane" "(-51.6289 278.016 179.521) (-50.8469 276.013 179.534) (-48.973 277.966 179)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 -1 0 599.855] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5580"
"plane" "(-50.9243 279.857 179.542) (-51.6432 278.015 179.531) (-48.9748 277.964 179)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 -1 0 599.855] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5579"
"plane" "(-50.917 279.849 179.535) (-48.981 277.944 179) (-48.9143 280.625 179.522)"
"material" "DARKCARNREMIX/TENT_COVER_RED"
"uaxis" "[1 0 0 451.85] 0.25"
"vaxis" "[0 -1 0 599.855] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
editor
{
"color" "220 30 220"
"visgroupshown" "1"
"visgroupautoshown" "1"
}
}
solid
{
"id" "286"
side
{
"id" "5650"
"plane" "(-76 267 10) (-76 371 10) (-11 371 10)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[1 0 0 24] 0.25"
"vaxis" "[0 -1 0 16] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5649"
"plane" "(44 239 2) (44 316 2) (-11 371 2)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[1 0 0 24] 0.25"
"vaxis" "[0 -1 0 16] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5648"
"plane" "(44 316 2) (44 239 2) (44 239 10)"
"material" "CONCRETE/CONCRETE_FLOOR_06"
"uaxis" "[0 1 0 -156] 0.25"
"vaxis" "[0 0 -1 8] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5647"
"plane" "(-76 371 2) (-11 371 2) (-11 371 10)"
"material" "CONCRETE/CONCRETE_FLOOR_06"
"uaxis" "[-1 0 0 -152] 0.25"
"vaxis" "[0 0 -1 40] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5646"
"plane" "(-76 267 2) (-76 371 2) (-76 371 10)"
"material" "CONCRETE/CONCRETE_FLOOR_06"
"uaxis" "[0 -1 0 336] 0.25"
"vaxis" "[0 0 -1 40] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5645"
"plane" "(-11 371 2) (44 316 2) (44 316 10)"
"material" "CONCRETE/CONCRETE_FLOOR_06"
"uaxis" "[-0.707107 0.707107 0 -495.027] 0.25"
"vaxis" "[0 0 -1 40] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5644"
"plane" "(44 239 2) (-2 193 2) (-2 193 10)"
"material" "CONCRETE/CONCRETE_FLOOR_06"
"uaxis" "[0.707107 0.707107 0 -192.224] 0.25"
"vaxis" "[0 0 -1 40] 0.25"
"rotation" "0"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5643"
"plane" "(-2 193 2) (-76 267 2) (-76 267 10)"
"material" "CONCRETE/CONCRETE_FLOOR_06"
"uaxis" "[0 1 0 -336] 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" "287"
side
{
"id" "5656"
"plane" "(12 300 132) (12 305 132) (19 305 132)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[0 1 0 0] 0.25"
"vaxis" "[1 0 0 16] 0.25"
"rotation" "90"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5655"
"plane" "(12 305 2) (12 300 2) (19 300 2)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[0 1 0 0] 0.25"
"vaxis" "[-1 0 0 16] 0.25"
"rotation" "90"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5654"
"plane" "(12 300 2) (12 305 2) (12 305 132)"
"material" "WOOD/WOOD_EXT_05"
"uaxis" "[0 0 1 -8] 0.25"
"vaxis" "[0 -1 0 -256] 0.25"
"rotation" "90"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5653"
"plane" "(19 305 2) (19 300 2) (19 300 132)"
"material" "WOOD/WOOD_EXT_05"
"uaxis" "[0 0 1 -8] 0.25"
"vaxis" "[0 1 0 -256] 0.25"
"rotation" "90"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5652"
"plane" "(12 305 2) (19 305 2) (19 305 132)"
"material" "WOOD/WOOD_EXT_05"
"uaxis" "[0 0 1 -8] 0.25"
"vaxis" "[-1 0 0 464] 0.25"
"rotation" "90"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5651"
"plane" "(19 300 2) (12 300 2) (12 300 132)"
"material" "WOOD/WOOD_EXT_05"
"uaxis" "[0 0 1 -8] 0.25"
"vaxis" "[1 0 0 464] 0.25"
"rotation" "90"
"lightmapscale" "16"
"smoothing_groups" "0"
}
editor
{
"color" "220 30 220"
"visgroupshown" "1"
"visgroupautoshown" "1"
}
}
solid
{
"id" "288"
side
{
"id" "5662"
"plane" "(12 250 132) (12 256 132) (19 256 132)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[0 1 0 0] 0.25"
"vaxis" "[1 0 0 16] 0.25"
"rotation" "90"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5661"
"plane" "(12 256 2) (12 250 2) (19 250 2)"
"material" "TOOLS/TOOLSNODRAW"
"uaxis" "[0 1 0 0] 0.25"
"vaxis" "[-1 0 0 16] 0.25"
"rotation" "90"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5660"
"plane" "(12 250 2) (12 256 2) (12 256 132)"
"material" "WOOD/WOOD_EXT_05"
"uaxis" "[0 0 1 -8] 0.25"
"vaxis" "[0 -1 0 -256] 0.25"
"rotation" "90"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5659"
"plane" "(19 256 2) (19 250 2) (19 250 132)"
"material" "WOOD/WOOD_EXT_05"
"uaxis" "[0 0 1 -8] 0.25"
"vaxis" "[0 1 0 -256] 0.25"
"rotation" "90"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5658"
"plane" "(19 250 2) (12 250 2) (12 250 132)"
"material" "WOOD/WOOD_EXT_05"
"uaxis" "[0 0 1 -8] 0.25"
"vaxis" "[1 0 0 464] 0.25"
"rotation" "90"
"lightmapscale" "16"
"smoothing_groups" "0"
}
side
{
"id" "5657"
"plane" "(12 256 2) (19 256 2) (19 256 132)"