diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 56922ed7e8..5c6f98e765 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,26 +24,26 @@ jobs: # Use the tag if created there, dev each week, or what's specified when done manually. - name: Checkout tag if: github.event_name == 'create' - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: - ref: $ {{ github.event.ref }} + ref: ${{ github.event.ref }} - name: Checkout dev if: github.event_name == 'schedule' - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: 'dev' - name: Checkout reference if: github.event_name == 'workflow_dispatch' - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ inputs.source }} - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: - python-version: 3.11 + python-version: 3.12 cache: 'pip' cache-dependency-path: 'requirements.txt' @@ -54,7 +54,7 @@ jobs: run: python compile_packages.py --confirm --overwrite --zip "" "packages/" - name: Packages upload (tag) - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: github.event_name == 'create' with: name: beemod2_${{ github.event.ref }}_packages @@ -62,7 +62,7 @@ jobs: if-no-files-found: error - name: Packages upload (hash) - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: github.event_name != 'create' with: name: beemod2_${{ github.sha }}_packages diff --git a/CHANGELOG.md b/CHANGELOG.md index f072a76f87..3fcdeec009 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,43 @@ # Changelog +# Version 4.45.0 + +## New Features: +* New Item: Tinted Glass, a blue-coloured version of glass which blocks absolutely everything, including lasers. +* Added 2 new Barrier Hole variants: the Medium Hole can fit cubes, and the Slot Hole fits a light bridge through. The package has been renamed from "glass_hole", make sure to remove that file. +* Glass/Grating now has a Start Reversed option, which shifts them to the inner pair of tiles. +* Added a few new Clean entry corridor variants, based on the Overgrown layouts. + +## Enhancements: +* #4308: Enlarge P1/1950s Small Glass Hole slightly to allow pellets through. +* Add editor model for Absolute Fizzlers. +* Laser Emitters now always use a static light, instead of it being togglable. This had the potential to quickly hit VRAD limits and generally fail to function. +* Added ability to specify travel direction and stair direction for Clean SP elevators. +* The light "temperature" can now be customised for Clean SP corridors. +* #2811: Added "Auto Drop" to Track Platforms, giving them the player detection trigger like Piston Platforms. + +### Bugfixes: +* Fix neurotoxin timer not compiling in P1 style. +* Fix weird geometry in clean fizzler editor models. +* Fix laser emitters not starting disabled properly. +* #1571: Tweak coop exit stair position, add endcap model. +* #4406: Fix centered Overgrown laser catcher not triggering outputs. +* #4403: Fix missing palette icon for voxel logic gates. +* Fix an issue where Clean and Overgrown cube droppers could be tricked into dropping two cubes, if a spawning cube is pushed against the iris. +* #3289: Redo custom fizzler textures to fix bad tinting. +* #2966: Sendificators will fizzle cubes if transported past the exit door fizzler, as well as other "out of bounds" locations. +* #1609: Sendificators are now blocked by Closed Solid Fields. +* #4415: Add additional clips underneath stair items to fix issues with items falling inside. +* #4417: Fix it being possible to portal on extended Old Aperture stairs. +* #2779: Add proper hold-logic and clips to P1 vertical Exit Door. +* #4290, #3242, #4393: Remake restart-on-exit logic to be more consistent across styles. +* Fix "advanced" P1 Indicator Timer Panels not functioning. +* Fix extraneous world brush being placed when Standing Fizzlers are used. +* Fix incorrect beveling on non-block Overgrown Stairs. +* Fix Overgrown/Clean Track Platforms moving when built to be 1 block long. + +------------------------------------------ + # Version 4.44.0 ### New Features: @@ -140,6 +178,7 @@ * Fix Old Aperture Sendificator Slim having broken antlines. * Fix P1 entrances not detecting people portalling out. * Fixed position of Old Aperture Flip Panel wheel. +* Fixed check locations for Old Aperture entry/exit door speaker placements. ------------------------------------------ diff --git a/compile_packages.py b/compile_packages.py index 4139e5de19..c14485fbe2 100644 --- a/compile_packages.py +++ b/compile_packages.py @@ -10,7 +10,7 @@ import itertools from zipfile import ZipFile, ZIP_LZMA, ZIP_DEFLATED -from srctools import Property, KeyValError, VMF, Entity, conv_bool +from srctools import VMF, Entity, conv_bool import argparse OPTIMISE = False diff --git a/icons/corridor/Clean/Singleplayer/Entrance/over_right_turn_1.png b/icons/corridor/Clean/Singleplayer/Entrance/over_right_turn_1.png new file mode 100644 index 0000000000..dd30113993 Binary files /dev/null and b/icons/corridor/Clean/Singleplayer/Entrance/over_right_turn_1.png differ diff --git a/icons/corridor/Clean/Singleplayer/Entrance/over_right_turn_2.png b/icons/corridor/Clean/Singleplayer/Entrance/over_right_turn_2.png new file mode 100644 index 0000000000..2cc3203bc8 Binary files /dev/null and b/icons/corridor/Clean/Singleplayer/Entrance/over_right_turn_2.png differ diff --git a/icons/corridor/Clean/Singleplayer/Entrance/over_small_right_1.png b/icons/corridor/Clean/Singleplayer/Entrance/over_small_right_1.png new file mode 100644 index 0000000000..3711d57b95 Binary files /dev/null and b/icons/corridor/Clean/Singleplayer/Entrance/over_small_right_1.png differ diff --git a/icons/corridor/Clean/Singleplayer/Entrance/over_small_right_2.png b/icons/corridor/Clean/Singleplayer/Entrance/over_small_right_2.png new file mode 100644 index 0000000000..d9687f498f Binary files /dev/null and b/icons/corridor/Clean/Singleplayer/Entrance/over_small_right_2.png differ diff --git a/icons/corridor/Clean/Singleplayer/Entrance/over_white_left_1.png b/icons/corridor/Clean/Singleplayer/Entrance/over_white_left_1.png new file mode 100644 index 0000000000..fe55a5a8ed Binary files /dev/null and b/icons/corridor/Clean/Singleplayer/Entrance/over_white_left_1.png differ diff --git a/icons/corridor/Clean/Singleplayer/Entrance/over_white_left_2.png b/icons/corridor/Clean/Singleplayer/Entrance/over_white_left_2.png new file mode 100644 index 0000000000..1d1f12ebc5 Binary files /dev/null and b/icons/corridor/Clean/Singleplayer/Entrance/over_white_left_2.png differ diff --git a/icons/corridor/Overgrown/Singleplayer/Entrance/small_right_1.png b/icons/corridor/Overgrown/Singleplayer/Entrance/small_right_1.png index 9fcb7824e6..04bc74594d 100644 Binary files a/icons/corridor/Overgrown/Singleplayer/Entrance/small_right_1.png and b/icons/corridor/Overgrown/Singleplayer/Entrance/small_right_1.png differ diff --git a/icons/corridor/Overgrown/Singleplayer/Entrance/small_right_2.png b/icons/corridor/Overgrown/Singleplayer/Entrance/small_right_2.png index 97888cf748..5cdb1d928c 100644 Binary files a/icons/corridor/Overgrown/Singleplayer/Entrance/small_right_2.png and b/icons/corridor/Overgrown/Singleplayer/Entrance/small_right_2.png differ diff --git a/icons/corridor/Overgrown/Singleplayer/Entrance/small_right_3.png b/icons/corridor/Overgrown/Singleplayer/Entrance/small_right_3.png index 2f2453c2ec..8b1f95c58e 100644 Binary files a/icons/corridor/Overgrown/Singleplayer/Entrance/small_right_3.png and b/icons/corridor/Overgrown/Singleplayer/Entrance/small_right_3.png differ diff --git a/icons/corridor/Overgrown/Singleplayer/Entrance/small_right_4.png b/icons/corridor/Overgrown/Singleplayer/Entrance/small_right_4.png index ed2d07bb4e..36573421fb 100644 Binary files a/icons/corridor/Overgrown/Singleplayer/Entrance/small_right_4.png and b/icons/corridor/Overgrown/Singleplayer/Entrance/small_right_4.png differ diff --git a/icons/items/tinted_glass.pdn b/icons/items/tinted_glass.pdn new file mode 100644 index 0000000000..6b27b20ff0 Binary files /dev/null and b/icons/items/tinted_glass.pdn differ diff --git a/packages/barrier_hole/info.txt b/packages/barrier_hole/info.txt new file mode 100644 index 0000000000..e6ade735e0 --- /dev/null +++ b/packages/barrier_hole/info.txt @@ -0,0 +1,77 @@ +"ID" "BEE2_BARRIER_HOLE" +"Name" "Barrier Hole" +"Desc" "Allows cutting holes into glass/grating barriers." + +"Item" + { + "ID" "ITEM_BEE2_BARRIER_HOLE" + "Version" + { + // These are the styles we have definitions for. + "Styles" + { + "BEE2_CLEAN" + { + "Folder" "hole" + } + "BEE2_OVERGROWN" + { + "Folder" "hole" + } + "BEE2_PORTAL_1" + { + "Folder" "hole" + } + "BEE2_1950s" + { + "Folder" "hole" + } + } + } + } + +// The actual configurations, for each style of frame. +"BarrierHole" + { + "ID" "BEE2_CIRCULAR_SMALL" + + "Footprint" "BEE2_BARRIER_HOLE_FOOTPRINT:small" + "Variants" "small_circle_hole.cfg" + "error_shape" "small" + } + +"BarrierHole" + { + "ID" "BEE2_SQUARE_MEDIUM" + + "Footprint" "BEE2_BARRIER_HOLE_FOOTPRINT:medium" + "Variants" "medium_square_hole.cfg" + "error_shape" "medium" + } + +"BarrierHole" + { + "ID" "BEE2_CIRCULAR_LARGE" + + "Footprint" "BEE2_BARRIER_HOLE_FOOTPRINT:large" + "Variants" "large_circle_hole.cfg" + "error_shape" "large" + } + +"BarrierHole" + { + "ID" "BEE2_SLOTTED_CENTER" + + "Footprint" "BEE2_BARRIER_HOLE_FOOTPRINT:slot_center" + "Variants" "slotted_hole_center.cfg" + "error_shape" "slot_center" + } + +"BarrierHole" + { + "ID" "BEE2_SLOTTED_OFFSET" + + "Footprint" "BEE2_BARRIER_HOLE_FOOTPRINT:slot_offset" + "Variants" "slotted_hole_offset.cfg" + "error_shape" "slot_offset" + } diff --git a/packages/barrier_hole/items/hole/editoritems.txt b/packages/barrier_hole/items/hole/editoritems.txt new file mode 100644 index 0000000000..90912ac492 --- /dev/null +++ b/packages/barrier_hole/items/hole/editoritems.txt @@ -0,0 +1,113 @@ +"Item" + { + "Type" "ITEM_BEE2_BARRIER_HOLE" + "Editor" + { + "SubTypeProperty" "CubeType" + "SubType" + { + "Name" "Small Barrier Hole" + "Model" "bee2/clean/barrier_hole/small.mdl" + "Palette" + { + "Tooltip" "BARRIER HOLE" + "Image" "palette/clean/BEE2/barrier_hole.png" + } + } + "SubType" + { + "Name" "Medium Barrier Hole" + "Model" "bee2/clean/barrier_hole/medium.mdl" + } + "SubType" + { + "Name" "Large Barrier Hole" + "Model" "bee2/clean/barrier_hole/large.mdl" + } + "SubType" + { + "Name" "Centered Slotted Barrier Hole" + "Model" "bee2/clean/barrier_hole/slot_center.mdl" + } + "SubType" + { + "Name" "Offset Slotted Barrier Hole" + "Model" "bee2/clean/barrier_hole/slot_offset.mdl" + } + "MovementHandle" "HANDLE_4_DIRECTIONS" + "OccupiesVoxel" "0" + "CanAnchorOnBarriers" "1" + } + "Properties" + { + "CubeType" + { + "DefaultValue" "0" + "Index" "1" + } + } + "Exporting" + { + "Instances" + { + "0" + { + "Name" "instances/BEE2/logic/geometry/barrier_hole.vmf" + "EntityCount" "0" + "BrushCount" "1" + "BrushSideCount" "6" + } + } + + "TargetName" "hole" + "Offset" "64 64 64" + } + } + + +// Old item name, when only circular holes exist. +"Item" + { + "Type" "ITEM_BEE2_GLASS_HOLE" + "Editor" + { + "SubTypeProperty" "StartOpen" + "SubType" + { + "Name" "Small Glass Hole" + "Model" "bee2/clean/barrier_hole/small.mdl" + } + "SubType" + { + "Name" "Large Glass Hole" + "Model" "bee2/clean/barrier_hole/large.mdl" + } + "MovementHandle" "HANDLE_NONE" + "OccupiesVoxel" "0" + "CanAnchorOnBarriers" "1" + } + "Properties" + { + "StartOpen" + { + "DefaultValue" "0" + "Index" "1" + } + } + "Exporting" + { + "Instances" + { + "0" + { + "Name" "instances/BEE2/logic/geometry/glass_hole.vmf" + "EntityCount" "0" + "BrushCount" "1" + "BrushSideCount" "6" + } + } + + "TargetName" "gh" + "Offset" "64 64 64" + } + } diff --git a/packages/barrier_hole/items/hole/properties.txt b/packages/barrier_hole/items/hole/properties.txt new file mode 100644 index 0000000000..db52011185 --- /dev/null +++ b/packages/barrier_hole/items/hole/properties.txt @@ -0,0 +1,24 @@ +"Properties" + { + "Authors" "TeamSpen210" + "Tags" "BEE 2;Partial Blocks" + "Description" + { + "" "Allows cutting circular holes into thin barrier items like Glass or Grating." + "" "" + "" "* Place on top of an existing glass/grating surface. (Place onto a wall to rotate to the correct orientation, then drag onto the glass.)" + "" " * Unfortunately voxels with an adjacent wall make this difficult. Filling the block in, placing the hole item, then hollowing and adding the glass second will help in some situations." + "" "* Five variants are available:" + "" "* Small holes allow portal shots, bullets, lasers, pellets and gel." + "" "* Medium holes allow cubes to fit through, but players cannot when placed on walls." + "" "* Large holes are intended for Excursion Funnels, but most things will fit through." + "" "* Slot holes come in a centered and offset variant, and are designed to fit a Light Bridge through. Portal shots, bullets, lasers and gel splatter will also fit through." + "" "* Multiple hole items cannot overlap." + } + + "ent_count" "~3" + "Icon" + { + "0" "clean/BEE2/barrier_hole.png" + } + } diff --git a/packages/barrier_hole/items/hole/vbsp_config.cfg b/packages/barrier_hole/items/hole/vbsp_config.cfg new file mode 100644 index 0000000000..bedc99c054 --- /dev/null +++ b/packages/barrier_hole/items/hole/vbsp_config.cfg @@ -0,0 +1,66 @@ +"Conditions" + { + "Condition" + { + "instance" "" + "Switch" + { + "Test" "instvar" + "$cube_type 0" + { + "GlassHole" "BEE2_CIRCULAR_SMALL" + } + "$cube_type 1" + { + "GlassHole" "BEE2_SQUARE_MEDIUM" + } + "$cube_type 2" + { + "GlassHole" "BEE2_CIRCULAR_LARGE" + } + "$cube_type 3" + { + "GlassHole" "BEE2_SLOTTED_CENTER" + } + "$cube_type 4" + { + "GlassHole" "BEE2_SLOTTED_OFFSET" + "OffsetInstance" "-48 0 0" + } + } + + // On walls, add a clip to prevent players from fitting. + // They technically can if crouching, but a stair is required to + // raise them to the right height. + "Condition" + { + "instvar" "$cube_type 1" + "Orient" + { + "direction" "walls" + } + "Result" + { + "AddOverlay" "instances/BEE2/clean/items/barrier/hole_medium_clip.vmf" + } + } + } + + // Old item + "Condition" + { + "instance" "" + "Condition" + { + "instvar" "$start_open 1" + "Result" + { + "GlassHole" "BEE2_CIRCULAR_LARGE" + } + "Else" + { + "GlassHole" "BEE2_CIRCULAR_SMALL" + } + } + } + } diff --git a/packages/barrier_hole/items/large_circle_hole.cfg b/packages/barrier_hole/items/large_circle_hole.cfg new file mode 100644 index 0000000000..1a8eda2f24 --- /dev/null +++ b/packages/barrier_hole/items/large_circle_hole.cfg @@ -0,0 +1,40 @@ +"THIN_MODERN_PETI" + { + "Instance" "instances/BEE2/clean/items/barrier/hole_large_peti.vmf" + + "Template" "BEE2_HOLE_MODERN:large_peti_cutout" + "TemplateDiagonal" "BEE2_HOLE_MODERN:large_peti_diagonal" + "TemplateSquare" "BEE2_HOLE_MODERN:large_peti_square" + } +"THIN_MODERN_TESTCHAMBER" + { + "Instance" "instances/BEE2/clean/items/barrier/hole_large_chamber.vmf" + + "Template" "BEE2_HOLE_MODERN:large_chamber_cutout" + "TemplateDiagonal" "BEE2_HOLE_MODERN:large_chamber_diagonal" + "TemplateSquare" "BEE2_HOLE_MODERN:large_chamber_square" + } +"THIN_MODERN_P1_PLASTICWALL" + { + "Instance" "instances/BEE2/p1/items/barrier/hole_large.vmf" + + "Template" "BEE2_HOLE_SQUARE:large_cutout" + "TemplateDiagonal" "BEE2_HOLE_SQUARE:large_diagonal" + "TemplateSquare" "BEE2_HOLE_SQUARE:large_square" + } +"THIN_SQUARE_OLDAP" + { + "Instance" "instances/BEE2/50s/items/barrier/hole_large.vmf" + + "Template" "BEE2_HOLE_SQUARE:large_cutout" + "TemplateDiagonal" "BEE2_HOLE_SQUARE:large_diagonal" + "TemplateSquare" "BEE2_HOLE_SQUARE:large_square" + } +"THICK_SQUARE_OLDAP" + { + "Instance" "instances/BEE2/50s/items/barrier/hole_large_thick.vmf" + + "Template" "BEE2_HOLE_SQUARE:large_cutout" + "TemplateDiagonal" "BEE2_HOLE_SQUARE:large_diagonal" + "TemplateSquare" "BEE2_HOLE_SQUARE:large_square" + } diff --git a/packages/barrier_hole/items/medium_square_hole.cfg b/packages/barrier_hole/items/medium_square_hole.cfg new file mode 100644 index 0000000000..503621b6a9 --- /dev/null +++ b/packages/barrier_hole/items/medium_square_hole.cfg @@ -0,0 +1,30 @@ +"THIN_MODERN_PETI" + { + "Instance" "instances/BEE2/clean/items/barrier/hole_medium_peti.vmf" + + "Template" "BEE2_HOLE_MODERN:medium" + } +"THIN_MODERN_TESTCHAMBER" + { + "Instance" "instances/BEE2/clean/items/barrier/hole_medium_chamber.vmf" + + "Template" "BEE2_HOLE_MODERN:medium" + } +"THIN_MODERN_P1_PLASTICWALL" + { + "Instance" "instances/BEE2/p1/items/barrier/hole_medium.vmf" + + "Template" "BEE2_HOLE_SQUARE:medium" + } +"THIN_SQUARE_OLDAP" + { + "Instance" "instances/BEE2/50s/items/barrier/hole_medium.vmf" + + "Template" "BEE2_HOLE_SQUARE:medium" + } +"THICK_SQUARE_OLDAP" + { + "Instance" "instances/BEE2/50s/items/barrier/hole_medium_thick.vmf" + + "Template" "BEE2_HOLE_SQUARE:medium" + } diff --git a/packages/barrier_hole/items/slotted_hole_center.cfg b/packages/barrier_hole/items/slotted_hole_center.cfg new file mode 100644 index 0000000000..0aeb26f5c8 --- /dev/null +++ b/packages/barrier_hole/items/slotted_hole_center.cfg @@ -0,0 +1,30 @@ +"THIN_MODERN_PETI" + { + "Instance" "instances/BEE2/clean/items/barrier/hole_slot_peti.vmf" + + "Template" "BEE2_SLOT_HOLE_MODERN:peti_center" + } +"THIN_MODERN_TESTCHAMBER" + { + "Instance" "instances/BEE2/clean/items/barrier/hole_slot_chamber.vmf" + + "Template" "BEE2_SLOT_HOLE_MODERN:testchamber_center" + } +"THIN_MODERN_P1_PLASTICWALL" + { + "Instance" "instances/BEE2/p1/items/barrier/hole_slot.vmf" + + "Template" "BEE2_HOLE_SQUARE:slot_center" + } +"THIN_SQUARE_OLDAP" + { + "Instance" "instances/BEE2/50s/items/barrier/hole_slot.vmf" + + "Template" "BEE2_HOLE_SQUARE:slot_center" + } +"THICK_SQUARE_OLDAP" + { + "Instance" "instances/BEE2/50s/items/barrier/hole_slot_thick.vmf" + + "Template" "BEE2_HOLE_SQUARE:slot_center" + } diff --git a/packages/barrier_hole/items/slotted_hole_offset.cfg b/packages/barrier_hole/items/slotted_hole_offset.cfg new file mode 100644 index 0000000000..d9d7c50d1a --- /dev/null +++ b/packages/barrier_hole/items/slotted_hole_offset.cfg @@ -0,0 +1,30 @@ +"THIN_MODERN_PETI" + { + "Instance" "instances/BEE2/clean/items/barrier/hole_slot_peti.vmf" + + "Template" "BEE2_SLOT_HOLE_MODERN:peti_offset" + } +"THIN_MODERN_TESTCHAMBER" + { + "Instance" "instances/BEE2/clean/items/barrier/hole_slot_chamber.vmf" + + "Template" "BEE2_SLOT_HOLE_MODERN:testchamber_offset" + } +"THIN_MODERN_P1_PLASTICWALL" + { + "Instance" "instances/BEE2/p1/items/barrier/hole_slot.vmf" + + "Template" "BEE2_HOLE_SQUARE:slot_offset" + } +"THIN_SQUARE_OLDAP" + { + "Instance" "instances/BEE2/50s/items/barrier/hole_slot.vmf" + + "Template" "BEE2_HOLE_SQUARE:slot_offset" + } +"THICK_SQUARE_OLDAP" + { + "Instance" "instances/BEE2/50s/items/barrier/hole_slot_thick.vmf" + + "Template" "BEE2_HOLE_SQUARE:slot_offset" + } diff --git a/packages/barrier_hole/items/small_circle_hole.cfg b/packages/barrier_hole/items/small_circle_hole.cfg new file mode 100644 index 0000000000..2ae0102a4f --- /dev/null +++ b/packages/barrier_hole/items/small_circle_hole.cfg @@ -0,0 +1,30 @@ +"THIN_MODERN_PETI" + { + "Instance" "instances/BEE2/clean/items/barrier/hole_small_peti.vmf" + + "Template" "BEE2_HOLE_MODERN:small" + } +"THIN_MODERN_TESTCHAMBER" + { + "Instance" "instances/BEE2/clean/items/barrier/hole_small_chamber.vmf" + + "Template" "BEE2_HOLE_MODERN:small" + } +"THIN_MODERN_P1_PLASTICWALL" + { + "Instance" "instances/BEE2/p1/items/barrier/hole_small.vmf" + + "Template" "BEE2_HOLE_SQUARE:small" + } +"THIN_SQUARE_OLDAP" + { + "Instance" "instances/BEE2/50s/items/barrier/hole_small.vmf" + + "Template" "BEE2_HOLE_SQUARE:small" + } +"THICK_SQUARE_OLDAP" + { + "Instance" "instances/BEE2/50s/items/barrier/hole_small_thick.vmf" + + "Template" "BEE2_HOLE_SQUARE:small" + } diff --git a/packages/glass_hole/resources/BEE2/items/clean/BEE2/glass_hole.png b/packages/barrier_hole/resources/BEE2/items/clean/BEE2/barrier_hole.png similarity index 100% rename from packages/glass_hole/resources/BEE2/items/clean/BEE2/glass_hole.png rename to packages/barrier_hole/resources/BEE2/items/clean/BEE2/barrier_hole.png diff --git a/packages/glass_hole/resources/i18n/en.pot b/packages/barrier_hole/resources/i18n/en.pot similarity index 100% rename from packages/glass_hole/resources/i18n/en.pot rename to packages/barrier_hole/resources/i18n/en.pot diff --git a/packages/glass_hole/resources/instances/50s/items/barrier/glass_hole_large.vmf b/packages/barrier_hole/resources/instances/50s/items/barrier/hole_large.vmf similarity index 64% rename from packages/glass_hole/resources/instances/50s/items/barrier/glass_hole_large.vmf rename to packages/barrier_hole/resources/instances/50s/items/barrier/hole_large.vmf index 6ae87531bb..7d2472c6c2 100644 --- a/packages/glass_hole/resources/instances/50s/items/barrier/glass_hole_large.vmf +++ b/packages/barrier_hole/resources/instances/50s/items/barrier/hole_large.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "7552" - "mapversion" "13" + "editorbuild" "9672" + "mapversion" "15" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "13" + "mapversion" "15" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -38,9 +38,9 @@ entity side { "id" "492" - "plane" "(60 -40 -80) (60 40 -80) (60 32 -72)" + "plane" "(-80 -40 0) (-80 40 0) (-72 32 0)" "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" - "uaxis" "[0 0 1 48] 0.25" + "uaxis" "[1 0 0 48] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -49,9 +49,9 @@ entity side { "id" "491" - "plane" "(64 40 -80) (64 -40 -80) (64 -32 -72)" + "plane" "(-80 40 -4) (-80 -40 -4) (-72 -32 -4)" "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" - "uaxis" "[0 0 1 48] 0.25" + "uaxis" "[1 0 0 48] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -60,9 +60,9 @@ entity side { "id" "490" - "plane" "(60 40 -80) (60 -40 -80) (64 -40 -80)" + "plane" "(-80 -40 -4) (-80 40 -4) (-80 40 0)" "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" - "uaxis" "[-1 0 0 -79.8561] 0.3" + "uaxis" "[0 0 1 -279.856] 0.3" "vaxis" "[0 1 0 -17.137] 0.25" "rotation" "0" "lightmapscale" "16" @@ -71,9 +71,9 @@ entity side { "id" "489" - "plane" "(60 -32 -72) (60 32 -72) (64 32 -72)" + "plane" "(-72 32 -4) (-72 -32 -4) (-72 -32 0)" "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" - "uaxis" "[1 0 0 -474] 0.25" + "uaxis" "[0 0 -1 -234] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -82,10 +82,10 @@ entity side { "id" "488" - "plane" "(60 32 -72) (60 40 -80) (64 40 -80)" + "plane" "(-80 40 -4) (-72 32 -4) (-72 32 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[1 0 0 52] 0.25" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 36] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -93,10 +93,10 @@ entity side { "id" "487" - "plane" "(64 -32 -72) (64 -40 -80) (60 -40 -80)" + "plane" "(-72 -32 -4) (-80 -40 -4) (-80 -40 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 48] 0.25" - "vaxis" "[1 0 0 52] 0.25" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 36] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -114,10 +114,10 @@ entity side { "id" "498" - "plane" "(60 -72 -32) (60 -80 -40) (60 -40 -80)" + "plane" "(-32 -72 0) (-40 -80 0) (-80 -40 0)" "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" - "uaxis" "[0 0.707107 0.707107 7.98651] 0.3" - "vaxis" "[0 -0.707107 0.707107 256] 0.25" + "uaxis" "[0.707107 0.707107 0 7.98652] 0.3" + "vaxis" "[0.707107 -0.707107 0 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -125,10 +125,10 @@ entity side { "id" "497" - "plane" "(64 -32 -72) (64 -40 -80) (64 -80 -40)" + "plane" "(-72 -32 -4) (-80 -40 -4) (-40 -80 -4)" "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" - "uaxis" "[0 0.707107 0.707107 7.98651] 0.3" - "vaxis" "[0 -0.707107 0.707107 256] 0.25" + "uaxis" "[0.707107 0.707107 0 7.98652] 0.3" + "vaxis" "[0.707107 -0.707107 0 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -136,9 +136,9 @@ entity side { "id" "496" - "plane" "(64 -72 -32) (64 -80 -40) (60 -80 -40)" + "plane" "(-32 -72 -4) (-40 -80 -4) (-40 -80 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 4] 0.25" + "uaxis" "[0 0 -1 -12] 0.25" "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" @@ -147,10 +147,10 @@ entity side { "id" "495" - "plane" "(60 -32 -72) (60 -40 -80) (64 -40 -80)" + "plane" "(-80 -40 -4) (-72 -32 -4) (-72 -32 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[1 0 0 -12] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 36] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -158,10 +158,10 @@ entity side { "id" "494" - "plane" "(64 -80 -40) (64 -40 -80) (60 -40 -80)" + "plane" "(-40 -80 -4) (-80 -40 -4) (-80 -40 0)" "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" - "uaxis" "[-1 0 0 -79.8562] 0.3" - "vaxis" "[0 -0.707107 0.707107 256] 0.25" + "uaxis" "[0 0 1 -279.857] 0.3" + "vaxis" "[0.707107 -0.707107 0 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -169,10 +169,10 @@ entity side { "id" "493" - "plane" "(60 -72 -32) (60 -32 -72) (64 -32 -72)" + "plane" "(-72 -32 -4) (-32 -72 -4) (-32 -72 0)" "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" - "uaxis" "[1 0 0 -474] 0.25" - "vaxis" "[0 -0.707107 0.707107 241.137] 0.25" + "uaxis" "[0 0 -1 -234] 0.25" + "vaxis" "[0.707107 -0.707107 0 241.137] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -190,10 +190,10 @@ entity side { "id" "504" - "plane" "(60 32 -72) (60 40 -80) (60 80 -40)" + "plane" "(-72 32 0) (-80 40 0) (-40 80 0)" "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" - "uaxis" "[0 -0.707107 0.707107 7.98651] 0.3" - "vaxis" "[0 0.707107 0.707107 256] 0.25" + "uaxis" "[0.707107 -0.707107 0 7.98652] 0.3" + "vaxis" "[0.707107 0.707107 0 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -201,10 +201,10 @@ entity side { "id" "503" - "plane" "(64 72 -32) (64 80 -40) (64 40 -80)" + "plane" "(-32 72 -4) (-40 80 -4) (-80 40 -4)" "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" - "uaxis" "[0 -0.707107 0.707107 7.98651] 0.3" - "vaxis" "[0 0.707107 0.707107 256] 0.25" + "uaxis" "[0.707107 -0.707107 0 7.98652] 0.3" + "vaxis" "[0.707107 0.707107 0 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -212,9 +212,9 @@ entity side { "id" "502" - "plane" "(60 72 -32) (60 80 -40) (64 80 -40)" + "plane" "(-40 80 -4) (-32 72 -4) (-32 72 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 4] 0.25" + "uaxis" "[0 0 -1 -12] 0.25" "vaxis" "[0 1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" @@ -223,10 +223,10 @@ entity side { "id" "501" - "plane" "(64 32 -72) (64 40 -80) (60 40 -80)" + "plane" "(-72 32 -4) (-80 40 -4) (-80 40 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[1 0 0 -12] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 36] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -234,10 +234,10 @@ entity side { "id" "500" - "plane" "(60 80 -40) (60 40 -80) (64 40 -80)" + "plane" "(-80 40 -4) (-40 80 -4) (-40 80 0)" "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" - "uaxis" "[-1 0 0 -79.8561] 0.3" - "vaxis" "[0 0.707107 0.707107 256] 0.25" + "uaxis" "[0 0 1 -279.856] 0.3" + "vaxis" "[0.707107 0.707107 0 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -245,10 +245,10 @@ entity side { "id" "499" - "plane" "(64 72 -32) (64 32 -72) (60 32 -72)" + "plane" "(-32 72 -4) (-72 32 -4) (-72 32 0)" "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" - "uaxis" "[1 0 0 -432.144] 0.3" - "vaxis" "[0 0.707107 0.707107 256] 0.25" + "uaxis" "[0 0 -1 -232.144] 0.3" + "vaxis" "[0.707107 0.707107 0 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -266,9 +266,9 @@ entity side { "id" "510" - "plane" "(60 -32 72) (60 32 72) (60 40 80)" + "plane" "(72 -32 0) (72 32 0) (80 40 0)" "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" - "uaxis" "[0 0 -1 48] 0.25" + "uaxis" "[-1 0 0 48] 0.25" "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -277,9 +277,9 @@ entity side { "id" "509" - "plane" "(64 32 72) (64 -32 72) (64 -40 80)" + "plane" "(72 32 -4) (72 -32 -4) (80 -40 -4)" "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" - "uaxis" "[0 0 -1 48] 0.25" + "uaxis" "[-1 0 0 48] 0.25" "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -288,9 +288,9 @@ entity side { "id" "508" - "plane" "(60 -40 80) (60 40 80) (64 40 80)" + "plane" "(80 40 -4) (80 -40 -4) (80 -40 0)" "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" - "uaxis" "[1 0 0 -30] 0.25" + "uaxis" "[0 0 -1 210] 0.25" "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -299,9 +299,9 @@ entity side { "id" "507" - "plane" "(60 32 72) (60 -32 72) (64 -32 72)" + "plane" "(72 -32 -4) (72 32 -4) (72 32 0)" "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" - "uaxis" "[1 0 0 -474] 0.25" + "uaxis" "[0 0 -1 -234] 0.25" "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -310,10 +310,10 @@ entity side { "id" "506" - "plane" "(64 -40 80) (64 -32 72) (60 -32 72)" + "plane" "(80 -40 -4) (72 -32 -4) (72 -32 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -48] 0.25" - "vaxis" "[1 0 0 52] 0.25" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 36] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -321,10 +321,10 @@ entity side { "id" "505" - "plane" "(60 40 80) (60 32 72) (64 32 72)" + "plane" "(72 32 -4) (80 40 -4) (80 40 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 48] 0.25" - "vaxis" "[1 0 0 52] 0.25" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 0 -1 36] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -342,10 +342,10 @@ entity side { "id" "516" - "plane" "(60 40 80) (60 32 72) (60 72 32)" + "plane" "(80 40 0) (72 32 0) (32 72 0)" "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" - "uaxis" "[0 -0.707107 -0.707107 7.98651] 0.3" - "vaxis" "[0 0.707107 -0.707107 256] 0.25" + "uaxis" "[-0.707107 -0.707107 0 7.9865] 0.3" + "vaxis" "[-0.707107 0.707107 0 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -353,10 +353,10 @@ entity side { "id" "515" - "plane" "(64 80 40) (64 72 32) (64 32 72)" + "plane" "(40 80 -4) (32 72 -4) (72 32 -4)" "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" - "uaxis" "[0 -0.707107 -0.707107 7.98651] 0.3" - "vaxis" "[0 0.707107 -0.707107 256] 0.25" + "uaxis" "[-0.707107 -0.707107 0 7.9865] 0.3" + "vaxis" "[-0.707107 0.707107 0 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -364,9 +364,9 @@ entity side { "id" "514" - "plane" "(60 80 40) (60 72 32) (64 72 32)" + "plane" "(32 72 -4) (40 80 -4) (40 80 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 4] 0.25" + "uaxis" "[0 0 -1 -12] 0.25" "vaxis" "[0 1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" @@ -375,10 +375,10 @@ entity side { "id" "513" - "plane" "(64 40 80) (64 32 72) (60 32 72)" + "plane" "(80 40 -4) (72 32 -4) (72 32 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 -12] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 36] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -386,10 +386,10 @@ entity side { "id" "512" - "plane" "(60 40 80) (60 80 40) (64 80 40)" + "plane" "(40 80 -4) (80 40 -4) (80 40 0)" "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" - "uaxis" "[-1 0 0 -79.8562] 0.3" - "vaxis" "[0 0.707107 -0.707107 256] 0.25" + "uaxis" "[0 0 1 -279.857] 0.3" + "vaxis" "[-0.707107 0.707107 0 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -397,10 +397,10 @@ entity side { "id" "511" - "plane" "(64 32 72) (64 72 32) (60 72 32)" + "plane" "(72 32 -4) (32 72 -4) (32 72 0)" "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" - "uaxis" "[1 0 0 -432.144] 0.3" - "vaxis" "[0 0.707107 -0.707107 256] 0.25" + "uaxis" "[0 0 -1 -232.144] 0.3" + "vaxis" "[-0.707107 0.707107 0 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -418,10 +418,10 @@ entity side { "id" "522" - "plane" "(60 -80 40) (60 -72 32) (60 -32 72)" + "plane" "(40 -80 0) (32 -72 0) (72 -32 0)" "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" - "uaxis" "[0 0.707107 -0.707107 61] 0.25" - "vaxis" "[0 -0.707107 -0.707107 241] 0.25" + "uaxis" "[-0.707107 0.707107 0 61] 0.25" + "vaxis" "[-0.707107 -0.707107 0 241] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -429,10 +429,10 @@ entity side { "id" "521" - "plane" "(64 -40 80) (64 -32 72) (64 -72 32)" + "plane" "(80 -40 -4) (72 -32 -4) (32 -72 -4)" "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" - "uaxis" "[0 0.707107 -0.707107 61] 0.25" - "vaxis" "[0 -0.707107 -0.707107 241] 0.25" + "uaxis" "[-0.707107 0.707107 0 61] 0.25" + "vaxis" "[-0.707107 -0.707107 0 241] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -440,9 +440,9 @@ entity side { "id" "520" - "plane" "(64 -80 40) (64 -72 32) (60 -72 32)" + "plane" "(40 -80 -4) (32 -72 -4) (32 -72 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 4] 0.25" + "uaxis" "[0 0 -1 -12] 0.25" "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" @@ -451,10 +451,10 @@ entity side { "id" "519" - "plane" "(60 -40 80) (60 -32 72) (64 -32 72)" + "plane" "(72 -32 -4) (80 -40 -4) (80 -40 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 -12] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 36] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -462,10 +462,10 @@ entity side { "id" "518" - "plane" "(64 -40 80) (64 -80 40) (60 -80 40)" + "plane" "(80 -40 -4) (40 -80 -4) (40 -80 0)" "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" - "uaxis" "[-1 0 0 -44.4112] 0.25" - "vaxis" "[0 -0.707106 -0.707107 241] 0.25" + "uaxis" "[0 0 1 -284.411] 0.25" + "vaxis" "[-0.707107 -0.707106 0 241] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -473,10 +473,10 @@ entity side { "id" "517" - "plane" "(60 -32 72) (60 -72 32) (64 -72 32)" + "plane" "(32 -72 -4) (72 -32 -4) (72 -32 0)" "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" - "uaxis" "[1 0 0 -467.156] 0.25" - "vaxis" "[0 -0.707107 -0.707107 241] 0.25" + "uaxis" "[0 0 -1 -227.156] 0.25" + "vaxis" "[-0.707107 -0.707107 0 241] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -494,10 +494,10 @@ entity side { "id" "528" - "plane" "(60 72 32) (60 72 -32) (60 80 -40)" + "plane" "(32 72 0) (-32 72 0) (-40 80 0)" "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" "uaxis" "[0 -1 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -505,10 +505,10 @@ entity side { "id" "527" - "plane" "(64 80 40) (64 80 -40) (64 72 -32)" + "plane" "(40 80 -4) (-40 80 -4) (-32 72 -4)" "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" "uaxis" "[0 -1 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -516,10 +516,10 @@ entity side { "id" "526" - "plane" "(60 80 40) (60 80 -40) (64 80 -40)" + "plane" "(-40 80 -4) (40 80 -4) (40 80 0)" "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" - "uaxis" "[-1 0 0 -38] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 0 1 -278] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -527,10 +527,10 @@ entity side { "id" "525" - "plane" "(64 72 32) (64 72 -32) (60 72 -32)" + "plane" "(32 72 -4) (-32 72 -4) (-32 72 0)" "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" - "uaxis" "[1 0 0 -474] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 0 -1 -234] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -538,10 +538,10 @@ entity side { "id" "524" - "plane" "(64 80 40) (64 72 32) (60 72 32)" + "plane" "(40 80 -4) (32 72 -4) (32 72 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[1 0 0 52] 0.25" + "vaxis" "[0 0 -1 36] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -549,10 +549,10 @@ entity side { "id" "523" - "plane" "(64 72 -32) (64 80 -40) (60 80 -40)" + "plane" "(-32 72 -4) (-40 80 -4) (-40 80 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[1 0 0 52] 0.25" + "vaxis" "[0 0 -1 36] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -570,10 +570,10 @@ entity side { "id" "534" - "plane" "(60 -80 40) (60 -80 -40) (60 -72 -32)" + "plane" "(40 -80 0) (-40 -80 0) (-32 -72 0)" "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -581,10 +581,10 @@ entity side { "id" "533" - "plane" "(64 -72 32) (64 -72 -32) (64 -80 -40)" + "plane" "(32 -72 -4) (-32 -72 -4) (-40 -80 -4)" "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -592,10 +592,10 @@ entity side { "id" "532" - "plane" "(64 -80 40) (64 -80 -40) (60 -80 -40)" + "plane" "(40 -80 -4) (-40 -80 -4) (-40 -80 0)" "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" - "uaxis" "[-1 0 0 -38] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[0 0 1 -278] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -603,10 +603,10 @@ entity side { "id" "531" - "plane" "(60 -72 32) (60 -72 -32) (64 -72 -32)" + "plane" "(-32 -72 -4) (32 -72 -4) (32 -72 0)" "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" - "uaxis" "[1 0 0 -474] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[0 0 -1 -234] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -614,10 +614,10 @@ entity side { "id" "530" - "plane" "(60 -72 -32) (60 -80 -40) (64 -80 -40)" + "plane" "(-40 -80 -4) (-32 -72 -4) (-32 -72 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 -48] 0.25" - "vaxis" "[1 0 0 52] 0.25" + "vaxis" "[0 0 -1 36] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -625,10 +625,10 @@ entity side { "id" "529" - "plane" "(60 -80 40) (60 -72 32) (64 -72 32)" + "plane" "(32 -72 -4) (40 -80 -4) (40 -80 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[1 0 0 52] 0.25" + "vaxis" "[0 0 -1 36] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" diff --git a/packages/barrier_hole/resources/instances/50s/items/barrier/hole_large_thick.vmf b/packages/barrier_hole/resources/instances/50s/items/barrier/hole_large_thick.vmf new file mode 100644 index 0000000000..389d864141 --- /dev/null +++ b/packages/barrier_hole/resources/instances/50s/items/barrier/hole_large_thick.vmf @@ -0,0 +1,658 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "16" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "8" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "16" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" +} +entity +{ + "id" "264" + "classname" "func_detail" + solid + { + "id" "148" + side + { + "id" "492" + "plane" "(-80 -40 0) (-80 40 0) (-72 32 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "491" + "plane" "(-80 40 -8) (-80 -40 -8) (-72 -32 -8)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "490" + "plane" "(-80 -40 -8) (-80 40 -8) (-80 40 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 1 -266.522] 0.3" + "vaxis" "[0 1 0 -17.137] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "489" + "plane" "(-72 32 -8) (-72 -32 -8) (-72 -32 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 -1 -250] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "488" + "plane" "(-80 40 -8) (-72 32 -8) (-72 32 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "487" + "plane" "(-72 -32 -8) (-80 -40 -8) (-80 -40 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "164" + side + { + "id" "498" + "plane" "(-32 -72 0) (-40 -80 0) (-80 -40 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0.707107 0.707107 0 7.98652] 0.3" + "vaxis" "[0.707107 -0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "497" + "plane" "(-72 -32 -8) (-80 -40 -8) (-40 -80 -8)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0.707107 0.707107 0 7.98652] 0.3" + "vaxis" "[0.707107 -0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "496" + "plane" "(-32 -72 -8) (-40 -80 -8) (-40 -80 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -28] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "495" + "plane" "(-80 -40 -8) (-72 -32 -8) (-72 -32 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "494" + "plane" "(-40 -80 -8) (-80 -40 -8) (-80 -40 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 1 -266.523] 0.3" + "vaxis" "[0.707107 -0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "493" + "plane" "(-72 -32 -8) (-32 -72 -8) (-32 -72 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 -1 -250] 0.25" + "vaxis" "[0.707107 -0.707107 0 241.137] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "193" + side + { + "id" "504" + "plane" "(-72 32 0) (-80 40 0) (-40 80 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0.707107 -0.707107 0 7.98652] 0.3" + "vaxis" "[0.707107 0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "503" + "plane" "(-32 72 -8) (-40 80 -8) (-80 40 -8)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0.707107 -0.707107 0 7.98652] 0.3" + "vaxis" "[0.707107 0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "502" + "plane" "(-40 80 -8) (-32 72 -8) (-32 72 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -28] 0.25" + "vaxis" "[0 1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "501" + "plane" "(-72 32 -8) (-80 40 -8) (-80 40 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "500" + "plane" "(-80 40 -8) (-40 80 -8) (-40 80 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 1 -266.522] 0.3" + "vaxis" "[0.707107 0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "499" + "plane" "(-32 72 -8) (-72 32 -8) (-72 32 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 -1 -245.478] 0.3" + "vaxis" "[0.707107 0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "205" + side + { + "id" "510" + "plane" "(72 -32 0) (72 32 0) (80 40 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "509" + "plane" "(72 32 -8) (72 -32 -8) (80 -40 -8)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "508" + "plane" "(80 40 -8) (80 -40 -8) (80 -40 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 -1 194] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "507" + "plane" "(72 -32 -8) (72 32 -8) (72 32 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 -1 -250] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "506" + "plane" "(80 -40 -8) (72 -32 -8) (72 -32 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "505" + "plane" "(72 32 -8) (80 40 -8) (80 40 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 0 -1 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "206" + side + { + "id" "516" + "plane" "(80 40 0) (72 32 0) (32 72 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[-0.707107 -0.707107 0 7.9865] 0.3" + "vaxis" "[-0.707107 0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "515" + "plane" "(40 80 -8) (32 72 -8) (72 32 -8)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[-0.707107 -0.707107 0 7.9865] 0.3" + "vaxis" "[-0.707107 0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "514" + "plane" "(32 72 -8) (40 80 -8) (40 80 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -28] 0.25" + "vaxis" "[0 1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "513" + "plane" "(80 40 -8) (72 32 -8) (72 32 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "512" + "plane" "(40 80 -8) (80 40 -8) (80 40 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 1 -266.523] 0.3" + "vaxis" "[-0.707107 0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "511" + "plane" "(72 32 -8) (32 72 -8) (32 72 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 -1 -245.478] 0.3" + "vaxis" "[-0.707107 0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "207" + side + { + "id" "522" + "plane" "(40 -80 0) (32 -72 0) (72 -32 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[-0.707107 0.707107 0 61] 0.25" + "vaxis" "[-0.707107 -0.707107 0 241] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "521" + "plane" "(80 -40 -8) (72 -32 -8) (32 -72 -8)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[-0.707107 0.707107 0 61] 0.25" + "vaxis" "[-0.707107 -0.707107 0 241] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "520" + "plane" "(40 -80 -8) (32 -72 -8) (32 -72 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -28] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "519" + "plane" "(72 -32 -8) (80 -40 -8) (80 -40 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "518" + "plane" "(80 -40 -8) (40 -80 -8) (40 -80 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 1 -268.411] 0.25" + "vaxis" "[-0.707107 -0.707106 0 241] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "517" + "plane" "(32 -72 -8) (72 -32 -8) (72 -32 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 -1 -243.156] 0.25" + "vaxis" "[-0.707107 -0.707107 0 241] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "250" + side + { + "id" "528" + "plane" "(32 72 0) (-32 72 0) (-40 80 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "527" + "plane" "(40 80 -8) (-40 80 -8) (-32 72 -8)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "526" + "plane" "(-40 80 -8) (40 80 -8) (40 80 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 1 -262] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "525" + "plane" "(32 72 -8) (-32 72 -8) (-32 72 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 -1 -250] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "524" + "plane" "(40 80 -8) (32 72 -8) (32 72 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "523" + "plane" "(-32 72 -8) (-40 80 -8) (-40 80 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -16] 0.25" + "vaxis" "[0 0 -1 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "251" + side + { + "id" "534" + "plane" "(40 -80 0) (-40 -80 0) (-32 -72 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "533" + "plane" "(32 -72 -8) (-32 -72 -8) (-40 -80 -8)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "532" + "plane" "(40 -80 -8) (-40 -80 -8) (-40 -80 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 1 -262] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "531" + "plane" "(-32 -72 -8) (32 -72 -8) (32 -72 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 -1 -250] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "530" + "plane" "(-40 -80 -8) (-32 -72 -8) (-32 -72 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -48] 0.25" + "vaxis" "[0 0 -1 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "529" + "plane" "(32 -72 -8) (40 -80 -8) (40 -80 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 0 -1 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/barrier_hole/resources/instances/50s/items/barrier/hole_medium.vmf b/packages/barrier_hole/resources/instances/50s/items/barrier/hole_medium.vmf new file mode 100644 index 0000000000..04fef04f4f --- /dev/null +++ b/packages/barrier_hole/resources/instances/50s/items/barrier/hole_medium.vmf @@ -0,0 +1,354 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "14" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "8" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "14" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" +} +entity +{ + "id" "125" + "classname" "func_detail" + solid + { + "id" "52" + side + { + "id" "84" + "plane" "(-28 28 0) (-24 24 0) (-24 -24 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[-1 0 0 -52] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "83" + "plane" "(-24 -24 -4) (-24 24 -4) (-28 28 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[-1 0 0 -52] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "82" + "plane" "(-28 28 0) (-28 -28 0) (-28 -28 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[0 -1 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "81" + "plane" "(-28 -28 0) (-24 -24 0) (-24 -24 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -16] 0.25" + "vaxis" "[-0.707107 -0.707107 0 -11.3138] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "80" + "plane" "(-24 24 0) (-28 28 0) (-28 28 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 16] 0.25" + "vaxis" "[-0.707107 0.707107 0 -11.3138] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "79" + "plane" "(-24 -24 0) (-24 24 0) (-24 24 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "104" + side + { + "id" "90" + "plane" "(28 -28 0) (24 -24 0) (24 24 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 -52] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "89" + "plane" "(24 24 -4) (24 -24 -4) (28 -28 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 -52] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "88" + "plane" "(28 -28 0) (28 28 0) (28 28 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[0 1 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "87" + "plane" "(28 28 0) (24 24 0) (24 24 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -16] 0.25" + "vaxis" "[0.707107 0.707107 0 -11.3138] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "86" + "plane" "(24 -24 0) (28 -28 0) (28 -28 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 16] 0.25" + "vaxis" "[0.707107 -0.707107 0 -11.3138] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "85" + "plane" "(24 24 0) (24 -24 0) (24 -24 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[0 1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "115" + side + { + "id" "96" + "plane" "(24 -24 0) (28 -28 0) (-28 -28 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 -1 0 -52] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "95" + "plane" "(-24 -24 -4) (-28 -28 -4) (28 -28 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 -1 0 -52] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "94" + "plane" "(28 -28 0) (28 -28 -4) (-28 -28 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[1 0 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "93" + "plane" "(24 -24 0) (24 -24 -4) (28 -28 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -16] 0.25" + "vaxis" "[0.707107 -0.707107 0 -11.3138] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92" + "plane" "(-28 -28 0) (-28 -28 -4) (-24 -24 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 16] 0.25" + "vaxis" "[-0.707107 -0.707107 0 -11.3138] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "91" + "plane" "(-24 -24 0) (-24 -24 -4) (24 -24 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[1 0 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "116" + side + { + "id" "102" + "plane" "(24 24 0) (-24 24 0) (-28 28 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 1 0 -52] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "101" + "plane" "(24 24 -4) (28 28 -4) (-28 28 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 1 0 -52] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "100" + "plane" "(-28 28 0) (-28 28 -4) (28 28 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[-1 0 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "99" + "plane" "(-24 24 0) (-24 24 -4) (-28 28 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -16] 0.25" + "vaxis" "[-0.707107 0.707107 0 -11.3138] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "98" + "plane" "(28 28 0) (28 28 -4) (24 24 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 16] 0.25" + "vaxis" "[0.707107 0.707107 0 -11.3138] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "97" + "plane" "(24 24 0) (24 24 -4) (-24 24 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[-1 0 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5500]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/barrier_hole/resources/instances/50s/items/barrier/hole_medium_thick.vmf b/packages/barrier_hole/resources/instances/50s/items/barrier/hole_medium_thick.vmf new file mode 100644 index 0000000000..8651c730ed --- /dev/null +++ b/packages/barrier_hole/resources/instances/50s/items/barrier/hole_medium_thick.vmf @@ -0,0 +1,354 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "15" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "4" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "15" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" +} +entity +{ + "id" "125" + "classname" "func_detail" + solid + { + "id" "52" + side + { + "id" "84" + "plane" "(-28 -28 0) (-28 28 0) (-24 24 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[-1 0 0 -52] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "83" + "plane" "(-28 -28 -8) (-24 -24 -8) (-24 24 -8)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[-1 0 0 -52] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "82" + "plane" "(-28 28 -8) (-28 28 0) (-28 -28 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 45] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "81" + "plane" "(-28 -28 -8) (-28 -28 0) (-24 -24 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[-0.707107 -0.707107 0 -11.3137] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "80" + "plane" "(-24 24 -8) (-24 24 0) (-28 28 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 32] 0.25" + "vaxis" "[-0.707107 0.707107 0 -11.3137] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "79" + "plane" "(-24 -24 -8) (-24 -24 0) (-24 24 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 45] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "104" + side + { + "id" "90" + "plane" "(28 28 0) (28 -28 0) (24 -24 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 -52] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "89" + "plane" "(28 28 -8) (24 24 -8) (24 -24 -8)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 -52] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "88" + "plane" "(28 -28 -8) (28 -28 0) (28 28 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 45] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "87" + "plane" "(28 28 -8) (28 28 0) (24 24 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[0.707107 0.707107 0 -11.3137] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "86" + "plane" "(24 -24 -8) (24 -24 0) (28 -28 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 32] 0.25" + "vaxis" "[0.707107 -0.707107 0 -11.3137] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "85" + "plane" "(24 24 -8) (24 24 0) (24 -24 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 45] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "115" + side + { + "id" "96" + "plane" "(-28 -28 0) (-24 -24 0) (24 -24 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 -1 0 -52] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "95" + "plane" "(28 -28 -8) (24 -24 -8) (-24 -24 -8)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 -1 0 -52] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "94" + "plane" "(-28 -28 -8) (-28 -28 0) (28 -28 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 45] 0.25" + "vaxis" "[-1 0 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "93" + "plane" "(28 -28 -8) (28 -28 0) (24 -24 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[0.707107 -0.707107 0 -11.3137] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92" + "plane" "(-24 -24 -8) (-24 -24 0) (-28 -28 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 32] 0.25" + "vaxis" "[-0.707107 -0.707107 0 -11.3137] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "91" + "plane" "(24 -24 -8) (24 -24 0) (-24 -24 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 45] 0.25" + "vaxis" "[-1 0 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "116" + side + { + "id" "102" + "plane" "(-28 28 0) (28 28 0) (24 24 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 1 0 -52] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "101" + "plane" "(-28 28 -8) (-24 24 -8) (24 24 -8)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 1 0 -52] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "100" + "plane" "(28 28 -8) (28 28 0) (-28 28 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 45] 0.25" + "vaxis" "[-1 0 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "99" + "plane" "(-28 28 -8) (-28 28 0) (-24 24 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[-0.707107 0.707107 0 -11.3137] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "98" + "plane" "(24 24 -8) (24 24 0) (28 28 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 32] 0.25" + "vaxis" "[0.707107 0.707107 0 -11.3137] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "97" + "plane" "(-24 24 -8) (-24 24 0) (24 24 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 45] 0.25" + "vaxis" "[-1 0 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5500]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/barrier_hole/resources/instances/50s/items/barrier/hole_slot.vmf b/packages/barrier_hole/resources/instances/50s/items/barrier/hole_slot.vmf new file mode 100644 index 0000000000..27750a4ad0 --- /dev/null +++ b/packages/barrier_hole/resources/instances/50s/items/barrier/hole_slot.vmf @@ -0,0 +1,354 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "17" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "2" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "17" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" +} +entity +{ + "id" "125" + "classname" "func_detail" + solid + { + "id" "52" + side + { + "id" "84" + "plane" "(-6 34 0) (-2 34 0) (-2 -34 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[-1 0 0 36] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "83" + "plane" "(-2 -34 -4) (-2 34 -4) (-6 34 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[-1 0 0 36] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "82" + "plane" "(-6 34 0) (-6 -34 0) (-6 -34 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[0 -1 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "81" + "plane" "(-6 -34 0) (-2 -34 0) (-2 -34 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -16] 0.25" + "vaxis" "[-0.707107 -0.707107 0 50.9116] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "80" + "plane" "(-2 34 0) (-6 34 0) (-6 34 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 16] 0.25" + "vaxis" "[-0.707107 0.707107 0 50.9116] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "79" + "plane" "(-2 -34 0) (-2 34 0) (-2 34 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "104" + side + { + "id" "90" + "plane" "(6 -34 0) (2 -34 0) (2 34 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "89" + "plane" "(2 34 -4) (2 -34 -4) (6 -34 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "88" + "plane" "(6 -34 0) (6 34 0) (6 34 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[0 1 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "87" + "plane" "(6 34 0) (2 34 0) (2 34 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -16] 0.25" + "vaxis" "[0.707107 0.707107 0 50.9116] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "86" + "plane" "(2 -34 0) (6 -34 0) (6 -34 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 16] 0.25" + "vaxis" "[0.707107 -0.707107 0 50.9116] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "85" + "plane" "(2 34 0) (2 -34 0) (2 -34 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[0 1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "115" + side + { + "id" "96" + "plane" "(-6 -38 0) (-6 -34 0) (6 -34 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 -1 0 -92] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "95" + "plane" "(6 -38 -4) (6 -34 -4) (-6 -34 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 -1 0 -92] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "94" + "plane" "(-6 -38 -4) (-6 -38 0) (6 -38 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[1 0 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "93" + "plane" "(6 -38 -4) (6 -38 0) (6 -34 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[0 1 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92" + "plane" "(-6 -34 -4) (-6 -34 0) (-6 -38 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[0 -1 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "91" + "plane" "(6 -34 -4) (6 -34 0) (-6 -34 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[1 0 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "116" + side + { + "id" "102" + "plane" "(-6 38 0) (6 38 0) (6 34 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 1 0 -92] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "101" + "plane" "(-6 38 -4) (-6 34 -4) (6 34 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 1 0 -92] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "100" + "plane" "(6 38 -4) (6 38 0) (-6 38 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[-1 0 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "99" + "plane" "(-6 38 -4) (-6 38 0) (-6 34 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[0 -1 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "98" + "plane" "(6 34 -4) (6 34 0) (6 38 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[0 1 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "97" + "plane" "(-6 34 -4) (-6 34 0) (6 34 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[-1 0 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5500]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/barrier_hole/resources/instances/50s/items/barrier/hole_slot_thick.vmf b/packages/barrier_hole/resources/instances/50s/items/barrier/hole_slot_thick.vmf new file mode 100644 index 0000000000..bb54e5f994 --- /dev/null +++ b/packages/barrier_hole/resources/instances/50s/items/barrier/hole_slot_thick.vmf @@ -0,0 +1,354 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "16" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "2" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "16" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" +} +entity +{ + "id" "125" + "classname" "func_detail" + solid + { + "id" "52" + side + { + "id" "84" + "plane" "(-2 -34 0) (-6 -34 0) (-6 34 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[-1 0 0 36] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "83" + "plane" "(-2 34 -8) (-6 34 -8) (-6 -34 -8)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[-1 0 0 36] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "82" + "plane" "(-6 -34 -8) (-6 34 -8) (-6 34 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 45] 0.25" + "vaxis" "[0 -1 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "81" + "plane" "(-2 -34 -8) (-6 -34 -8) (-6 -34 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -16] 0.25" + "vaxis" "[-0.707107 -0.707107 0 50.9116] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "80" + "plane" "(-6 34 -8) (-2 34 -8) (-2 34 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 16] 0.25" + "vaxis" "[-0.707107 0.707107 0 50.9116] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "79" + "plane" "(-2 34 -8) (-2 -34 -8) (-2 -34 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 45] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "104" + side + { + "id" "90" + "plane" "(2 34 0) (6 34 0) (6 -34 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "89" + "plane" "(2 -34 -8) (6 -34 -8) (6 34 -8)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "88" + "plane" "(6 34 -8) (6 -34 -8) (6 -34 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 45] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "87" + "plane" "(2 34 -8) (6 34 -8) (6 34 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -16] 0.25" + "vaxis" "[0.707107 0.707107 0 50.9116] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "86" + "plane" "(6 -34 -8) (2 -34 -8) (2 -34 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 16] 0.25" + "vaxis" "[0.707107 -0.707107 0 50.9116] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "85" + "plane" "(2 -34 -8) (2 34 -8) (2 34 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 45] 0.25" + "vaxis" "[0 1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "115" + side + { + "id" "96" + "plane" "(6 -38 0) (-6 -38 0) (-6 -34 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 -1 0 -92] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "95" + "plane" "(-6 -34 -8) (-6 -38 -8) (6 -38 -8)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 -1 0 -92] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "94" + "plane" "(6 -38 -8) (-6 -38 -8) (-6 -38 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 45] 0.25" + "vaxis" "[1 0 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "93" + "plane" "(6 -34 -8) (6 -38 -8) (6 -38 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 45] 0.25" + "vaxis" "[0 1 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92" + "plane" "(-6 -38 -8) (-6 -34 -8) (-6 -34 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[0 -1 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "91" + "plane" "(-6 -34 -8) (6 -34 -8) (6 -34 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 45] 0.25" + "vaxis" "[1 0 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "116" + side + { + "id" "102" + "plane" "(-6 34 0) (-6 38 0) (6 38 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 1 0 -92] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "101" + "plane" "(6 38 -8) (-6 38 -8) (-6 34 -8)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 1 0 -92] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "100" + "plane" "(-6 38 -8) (6 38 -8) (6 38 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 45] 0.25" + "vaxis" "[1 0 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "99" + "plane" "(-6 34 -8) (-6 38 -8) (-6 38 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 45] 0.25" + "vaxis" "[0 -1 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "98" + "plane" "(6 38 -8) (6 34 -8) (6 34 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 45] 0.25" + "vaxis" "[0 1 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "97" + "plane" "(6 34 -8) (-6 34 -8) (-6 34 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 45] 0.25" + "vaxis" "[1 0 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5500]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/glass_hole/resources/instances/50s/items/barrier/glass_hole_small.vmf b/packages/barrier_hole/resources/instances/50s/items/barrier/hole_small.vmf similarity index 64% rename from packages/glass_hole/resources/instances/50s/items/barrier/glass_hole_small.vmf rename to packages/barrier_hole/resources/instances/50s/items/barrier/hole_small.vmf index 13c0f449ab..0a49e712a0 100644 --- a/packages/glass_hole/resources/instances/50s/items/barrier/glass_hole_small.vmf +++ b/packages/barrier_hole/resources/instances/50s/items/barrier/hole_small.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8997" - "mapversion" "10" + "editorbuild" "9672" + "mapversion" "13" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "10" + "mapversion" "13" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -38,9 +38,9 @@ entity side { "id" "84" - "plane" "(60 16 -16) (60 12 -12) (60 -12 -12)" + "plane" "(-14 -14 0) (-18 -18 0) (-18 18 0)" "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 0 -1 -4] 0.25" + "uaxis" "[-1 0 0 -12] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -49,9 +49,9 @@ entity side { "id" "83" - "plane" "(64 -12 -12) (64 12 -12) (64 16 -16)" + "plane" "(-18 18 -4) (-18 -18 -4) (-14 -14 -4)" "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 0 -1 -4] 0.25" + "uaxis" "[-1 0 0 -12] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -60,9 +60,9 @@ entity side { "id" "82" - "plane" "(64 -16 -16) (64 16 -16) (60 16 -16)" + "plane" "(-18 -18 -4) (-18 18 -4) (-18 18 0)" "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[-1 0 0 257] 0.25" + "uaxis" "[0 0 1 17] 0.25" "vaxis" "[0 -1 0 386] 0.25" "rotation" "0" "lightmapscale" "16" @@ -71,10 +71,10 @@ entity side { "id" "81" - "plane" "(60 -16 -16) (60 -12 -12) (64 -12 -12)" + "plane" "(-14 -14 -4) (-18 -18 -4) (-18 -18 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -0.707107 -0.707107 22.6274] 0.25" + "uaxis" "[0 0 -1 -16] 0.25" + "vaxis" "[-0.707107 -0.707107 0 16.9705] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -82,10 +82,10 @@ entity side { "id" "80" - "plane" "(64 16 -16) (64 12 -12) (60 12 -12)" + "plane" "(-18 18 -4) (-14 14 -4) (-14 14 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0.707107 -0.707107 22.6274] 0.25" + "uaxis" "[0 0 1 16] 0.25" + "vaxis" "[-0.707107 0.707107 0 16.9705] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -93,9 +93,9 @@ entity side { "id" "79" - "plane" "(64 12 -12) (64 -12 -12) (60 -12 -12)" + "plane" "(-14 14 -4) (-14 -14 -4) (-14 -14 0)" "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[-1 0 0 257] 0.25" + "uaxis" "[0 0 1 17] 0.25" "vaxis" "[0 -1 0 128] 0.25" "rotation" "0" "lightmapscale" "16" @@ -114,9 +114,9 @@ entity side { "id" "90" - "plane" "(60 -16 16) (60 -12 12) (60 12 12)" + "plane" "(14 14 0) (18 18 0) (18 -18 0)" "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 0 1 -4] 0.25" + "uaxis" "[1 0 0 -12] 0.25" "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -125,9 +125,9 @@ entity side { "id" "89" - "plane" "(64 12 12) (64 -12 12) (64 -16 16)" + "plane" "(18 -18 -4) (18 18 -4) (14 14 -4)" "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 0 1 -4] 0.25" + "uaxis" "[1 0 0 -12] 0.25" "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -136,9 +136,9 @@ entity side { "id" "88" - "plane" "(64 16 16) (64 -16 16) (60 -16 16)" + "plane" "(18 18 -4) (18 -18 -4) (18 -18 0)" "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[-1 0 0 257] 0.25" + "uaxis" "[0 0 1 17] 0.25" "vaxis" "[0 1 0 386] 0.25" "rotation" "0" "lightmapscale" "16" @@ -147,10 +147,10 @@ entity side { "id" "87" - "plane" "(64 12 12) (64 16 16) (60 16 16)" + "plane" "(14 14 -4) (18 18 -4) (18 18 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0.707107 0.707107 22.6274] 0.25" + "uaxis" "[0 0 -1 -16] 0.25" + "vaxis" "[0.707107 0.707107 0 16.9705] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -158,10 +158,10 @@ entity side { "id" "86" - "plane" "(60 -12 12) (60 -16 16) (64 -16 16)" + "plane" "(18 -18 -4) (14 -14 -4) (14 -14 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -0.707107 0.707107 22.6274] 0.25" + "uaxis" "[0 0 1 16] 0.25" + "vaxis" "[0.707107 -0.707107 0 16.9705] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -169,9 +169,9 @@ entity side { "id" "85" - "plane" "(64 -12 12) (64 12 12) (60 12 12)" + "plane" "(14 -14 -4) (14 14 -4) (14 14 0)" "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[-1 0 0 257] 0.25" + "uaxis" "[0 0 1 17] 0.25" "vaxis" "[0 1 0 128] 0.25" "rotation" "0" "lightmapscale" "16" @@ -190,10 +190,10 @@ entity side { "id" "96" - "plane" "(60 -12 -12) (60 -12 12) (60 -16 16)" + "plane" "(18 -18 0) (-18 -18 0) (-14 -14 0)" "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 -1 0 -4] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[0 -1 0 -12] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -201,10 +201,10 @@ entity side { "id" "95" - "plane" "(64 -12 12) (64 -12 -12) (64 -16 -16)" + "plane" "(-18 -18 -4) (18 -18 -4) (14 -14 -4)" "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 -1 0 -4] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[0 -1 0 -12] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -212,10 +212,10 @@ entity side { "id" "94" - "plane" "(60 -16 -16) (60 -16 16) (64 -16 16)" + "plane" "(18 -18 -4) (-18 -18 -4) (-18 -18 0)" "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[-1 0 0 257] 0.25" - "vaxis" "[0 0 1 386] 0.25" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[1 0 0 386] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -223,10 +223,10 @@ entity side { "id" "93" - "plane" "(64 -12 12) (64 -16 16) (60 -16 16)" + "plane" "(14 -14 -4) (18 -18 -4) (18 -18 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -0.707107 0.707107 22.6274] 0.25" + "uaxis" "[0 0 -1 -16] 0.25" + "vaxis" "[0.707107 -0.707107 0 16.9705] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -234,10 +234,10 @@ entity side { "id" "92" - "plane" "(64 -16 -16) (64 -12 -12) (60 -12 -12)" + "plane" "(-18 -18 -4) (-14 -14 -4) (-14 -14 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -0.707107 -0.707107 22.6274] 0.25" + "uaxis" "[0 0 1 16] 0.25" + "vaxis" "[-0.707107 -0.707107 0 16.9705] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -245,10 +245,10 @@ entity side { "id" "91" - "plane" "(64 -12 -12) (64 -12 12) (60 -12 12)" + "plane" "(-14 -14 -4) (14 -14 -4) (14 -14 0)" "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[-1 0 0 257] 0.25" - "vaxis" "[0 0 1 128] 0.25" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[1 0 0 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -266,10 +266,10 @@ entity side { "id" "102" - "plane" "(60 16 16) (60 12 12) (60 12 -12)" + "plane" "(-14 14 0) (-18 18 0) (18 18 0)" "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 1 0 -4] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -277,10 +277,10 @@ entity side { "id" "101" - "plane" "(64 12 -12) (64 12 12) (64 16 16)" + "plane" "(18 18 -4) (-18 18 -4) (-14 14 -4)" "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 1 0 -4] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -288,10 +288,10 @@ entity side { "id" "100" - "plane" "(64 16 -16) (64 16 16) (60 16 16)" + "plane" "(-18 18 -4) (18 18 -4) (18 18 0)" "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[-1 0 0 257] 0.25" - "vaxis" "[0 0 -1 386] 0.25" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[-1 0 0 386] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -299,10 +299,10 @@ entity side { "id" "99" - "plane" "(60 16 -16) (60 12 -12) (64 12 -12)" + "plane" "(-14 14 -4) (-18 18 -4) (-18 18 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0.707107 -0.707107 22.6274] 0.25" + "uaxis" "[0 0 -1 -16] 0.25" + "vaxis" "[-0.707107 0.707107 0 16.9705] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -310,10 +310,10 @@ entity side { "id" "98" - "plane" "(60 12 12) (60 16 16) (64 16 16)" + "plane" "(18 18 -4) (14 14 -4) (14 14 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0.707107 0.707107 22.6274] 0.25" + "uaxis" "[0 0 1 16] 0.25" + "vaxis" "[0.707107 0.707107 0 16.9705] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -321,10 +321,10 @@ entity side { "id" "97" - "plane" "(60 12 -12) (60 12 12) (64 12 12)" + "plane" "(14 14 -4) (-14 14 -4) (-14 14 0)" "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[-1 0 0 257] 0.25" - "vaxis" "[0 0 -1 128] 0.25" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[-1 0 0 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" diff --git a/packages/barrier_hole/resources/instances/50s/items/barrier/hole_small_thick.vmf b/packages/barrier_hole/resources/instances/50s/items/barrier/hole_small_thick.vmf new file mode 100644 index 0000000000..16228feaba --- /dev/null +++ b/packages/barrier_hole/resources/instances/50s/items/barrier/hole_small_thick.vmf @@ -0,0 +1,354 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "14" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "8" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "14" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" +} +entity +{ + "id" "125" + "classname" "func_detail" + solid + { + "id" "52" + side + { + "id" "84" + "plane" "(-14 -14 0) (-18 -18 0) (-18 18 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[-1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "83" + "plane" "(-18 18 -8) (-18 -18 -8) (-14 -14 -8)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[-1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "82" + "plane" "(-18 -18 -8) (-18 18 -8) (-18 18 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 45] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "81" + "plane" "(-14 -14 -8) (-18 -18 -8) (-18 -18 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[-0.707107 -0.707107 0 16.9705] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "80" + "plane" "(-18 18 -8) (-14 14 -8) (-14 14 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 32] 0.25" + "vaxis" "[-0.707107 0.707107 0 16.9705] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "79" + "plane" "(-14 14 -8) (-14 -14 -8) (-14 -14 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 45] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "104" + side + { + "id" "90" + "plane" "(14 14 0) (18 18 0) (18 -18 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "89" + "plane" "(18 -18 -8) (18 18 -8) (14 14 -8)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "88" + "plane" "(18 18 -8) (18 -18 -8) (18 -18 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 45] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "87" + "plane" "(14 14 -8) (18 18 -8) (18 18 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[0.707107 0.707107 0 16.9705] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "86" + "plane" "(18 -18 -8) (14 -14 -8) (14 -14 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 32] 0.25" + "vaxis" "[0.707107 -0.707107 0 16.9705] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "85" + "plane" "(14 -14 -8) (14 14 -8) (14 14 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 45] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "115" + side + { + "id" "96" + "plane" "(18 -18 0) (-18 -18 0) (-14 -14 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 -1 0 -12] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "95" + "plane" "(-18 -18 -8) (18 -18 -8) (14 -14 -8)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 -1 0 -12] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "94" + "plane" "(18 -18 -8) (-18 -18 -8) (-18 -18 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 45] 0.25" + "vaxis" "[-1 0 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "93" + "plane" "(14 -14 -8) (18 -18 -8) (18 -18 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[0.707107 -0.707107 0 16.9705] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92" + "plane" "(-18 -18 -8) (-14 -14 -8) (-14 -14 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 32] 0.25" + "vaxis" "[-0.707107 -0.707107 0 16.9705] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "91" + "plane" "(-14 -14 -8) (14 -14 -8) (14 -14 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 45] 0.25" + "vaxis" "[-1 0 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "116" + side + { + "id" "102" + "plane" "(-14 14 0) (-18 18 0) (18 18 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "101" + "plane" "(18 18 -8) (-18 18 -8) (-14 14 -8)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "100" + "plane" "(-18 18 -8) (18 18 -8) (18 18 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 45] 0.25" + "vaxis" "[-1 0 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "99" + "plane" "(-14 14 -8) (-18 18 -8) (-18 18 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[-0.707107 0.707107 0 16.9705] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "98" + "plane" "(18 18 -8) (14 14 -8) (14 14 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 32] 0.25" + "vaxis" "[0.707107 0.707107 0 16.9705] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "97" + "plane" "(14 14 -8) (-14 14 -8) (-14 14 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 45] 0.25" + "vaxis" "[-1 0 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5500]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/valve/dis_beams/resources/instances/logic/laser/light_static_offset.vmf b/packages/barrier_hole/resources/instances/clean/items/barrier/hole_large_chamber.vmf similarity index 50% rename from packages/valve/dis_beams/resources/instances/logic/laser/light_static_offset.vmf rename to packages/barrier_hole/resources/instances/clean/items/barrier/hole_large_chamber.vmf index 330fd18ee4..aa618842b0 100644 --- a/packages/valve/dis_beams/resources/instances/logic/laser/light_static_offset.vmf +++ b/packages/barrier_hole/resources/instances/clean/items/barrier/hole_large_chamber.vmf @@ -2,7 +2,7 @@ versioninfo { "editorversion" "400" "editorbuild" "9672" - "mapversion" "101" + "mapversion" "14" "formatversion" "100" "prefab" "0" } @@ -14,45 +14,45 @@ viewsettings "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "32" + "nGridSpacing" "4" "bShow3DGrid" "0" } world { "id" "1" - "mapversion" "101" + "mapversion" "14" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" "maxblobcount" "250" "maxpropscreenwidth" "-1" - "skyname" "sky_day01_01" + "skyname" "sky_black_nofog" } entity { - "id" "3546" - "classname" "light" - "_constant_attn" "0" - "_distance" "0" - "_fifty_percent_distance" "48" - "_hardfalloff" "0" - "_light" "255 106 106 150" - "_lightHDR" "-1 -1 -1 1" - "_lightscaleHDR" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_shadoworiginoffset" "0 0 0" - "_zero_percent_distance" "96" - "angles" "0 0 0" - "spawnflags" "0" - "style" "0" - "origin" "14 0 -40" + "id" "44" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props_test_chamber/frame_hole_large.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "origin" "1.19209e-007 0 -8" editor { "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 -15768]" + "logicalpos" "[0 0]" } } cameras diff --git a/packages/glass_hole/resources/instances/clean/items/barrier/glass_hole_large.vmf b/packages/barrier_hole/resources/instances/clean/items/barrier/hole_large_peti.vmf similarity index 88% rename from packages/glass_hole/resources/instances/clean/items/barrier/glass_hole_large.vmf rename to packages/barrier_hole/resources/instances/clean/items/barrier/hole_large_peti.vmf index e0b1b22d75..22244901a9 100644 --- a/packages/glass_hole/resources/instances/clean/items/barrier/glass_hole_large.vmf +++ b/packages/barrier_hole/resources/instances/clean/items/barrier/hole_large_peti.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8973" - "mapversion" "8" + "editorbuild" "9672" + "mapversion" "12" "formatversion" "100" "prefab" "0" } @@ -14,13 +14,13 @@ viewsettings "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "16" + "nGridSpacing" "32" "bShow3DGrid" "0" } world { "id" "1" - "mapversion" "8" + "mapversion" "12" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -32,7 +32,7 @@ entity { "id" "44" "classname" "prop_static" - "angles" "0 270 0" + "angles" "0 270 90" "disableselfshadowing" "0" "disableshadows" "0" "disablevertexlighting" "0" @@ -51,7 +51,7 @@ entity "rendercolor" "255 255 255" "skin" "0" "solid" "6" - "origin" "62 0 0" + "origin" "8.74228e-008 0 -2" editor { "color" "255 255 0" diff --git a/packages/barrier_hole/resources/instances/clean/items/barrier/hole_medium_chamber.vmf b/packages/barrier_hole/resources/instances/clean/items/barrier/hole_medium_chamber.vmf new file mode 100644 index 0000000000..40575115d9 --- /dev/null +++ b/packages/barrier_hole/resources/instances/clean/items/barrier/hole_medium_chamber.vmf @@ -0,0 +1,66 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "35" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "2" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "35" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" +} +entity +{ + "id" "500" + "classname" "prop_static" + "angles" "-90 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/bee2/props_clean/frame_testchamber/frame_hole_medium.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "origin" "0 0 -4" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/styles/p1_style/resources/instances/p1/items/barrier/left_convex_corner.vmf b/packages/barrier_hole/resources/instances/clean/items/barrier/hole_medium_clip.vmf similarity index 59% rename from packages/styles/p1_style/resources/instances/p1/items/barrier/left_convex_corner.vmf rename to packages/barrier_hole/resources/instances/clean/items/barrier/hole_medium_clip.vmf index a976d1a14f..1e44f250aa 100644 --- a/packages/styles/p1_style/resources/instances/p1/items/barrier/left_convex_corner.vmf +++ b/packages/barrier_hole/resources/instances/clean/items/barrier/hole_medium_clip.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "5685" - "mapversion" "47" + "editorbuild" "9672" + "mapversion" "35" "formatversion" "100" "prefab" "0" } @@ -20,26 +20,21 @@ viewsettings world { "id" "1" - "mapversion" "47" + "mapversion" "35" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" "maxblobcount" "250" "maxpropscreenwidth" "-1" "skyname" "sky_black_nofog" -} -entity -{ - "id" "389" - "classname" "func_detail" solid { - "id" "378" + "id" "589" side { "id" "1" - "plane" "(60 -60 -60) (64 -60 -60) (64 -64 -60)" - "material" "PLASTIC/PLASTICWALL004A" + "plane" "(-24 -23.875 0) (-24 24.125 0) (24 24.125 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -49,8 +44,8 @@ entity side { "id" "2" - "plane" "(60 -64 -64) (64 -64 -64) (64 -60 -64)" - "material" "PLASTIC/PLASTICWALL004A" + "plane" "(-24 24.125 -4) (-24 -23.875 -4) (24 -23.875 -4)" + "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -60,10 +55,10 @@ entity side { "id" "3" - "plane" "(60 -60 -60) (60 -64 -60) (60 -64 -64)" - "material" "PLASTIC/PLASTICWALL004A" + "plane" "(-24 -23.875 -4) (-24 24.125 -4) (-24 24.125 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -71,10 +66,10 @@ entity side { "id" "4" - "plane" "(64 -60 -64) (64 -64 -64) (64 -64 -60)" - "material" "PLASTIC/PLASTICWALL004A" + "plane" "(24 24.125 -4) (24 -23.875 -4) (24 -23.875 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -82,10 +77,10 @@ entity side { "id" "5" - "plane" "(64 -60 -60) (60 -60 -60) (60 -60 -64)" - "material" "PLASTIC/PLASTICWALL004A" + "plane" "(-24 24.125 -4) (24 24.125 -4) (24 24.125 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -93,28 +88,21 @@ entity side { "id" "6" - "plane" "(64 -64 -64) (60 -64 -64) (60 -64 -60)" - "material" "PLASTIC/PLASTICWALL004A" + "plane" "(24 -23.875 -4) (-24 -23.875 -4) (-24 -23.875 0)" + "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 180 0" + "color" "0 128 145" "visgroupshown" "1" "visgroupautoshown" "1" } } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 500]" - } } cameras { diff --git a/packages/barrier_hole/resources/instances/clean/items/barrier/hole_medium_peti.vmf b/packages/barrier_hole/resources/instances/clean/items/barrier/hole_medium_peti.vmf new file mode 100644 index 0000000000..120cd0bcdf --- /dev/null +++ b/packages/barrier_hole/resources/instances/clean/items/barrier/hole_medium_peti.vmf @@ -0,0 +1,74 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "34" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "16" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "34" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" +} +entity +{ + "id" "500" + "classname" "prop_static" + "angles" "0 0 90" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/bee2/props_clean/barrier_hole_medium.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "origin" "0 0 -2" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/barrier_hole/resources/instances/clean/items/barrier/hole_slot_chamber.vmf b/packages/barrier_hole/resources/instances/clean/items/barrier/hole_slot_chamber.vmf new file mode 100644 index 0000000000..e4aaf009ba --- /dev/null +++ b/packages/barrier_hole/resources/instances/clean/items/barrier/hole_slot_chamber.vmf @@ -0,0 +1,66 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "31" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "2" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "31" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" +} +entity +{ + "id" "10" + "classname" "prop_static" + "angles" "270 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/bee2/props_clean/frame_testchamber/frame_hole_slot.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "origin" "-2.62268e-007 0 -4" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/barrier_hole/resources/instances/clean/items/barrier/hole_slot_peti.vmf b/packages/barrier_hole/resources/instances/clean/items/barrier/hole_slot_peti.vmf new file mode 100644 index 0000000000..3f7caed8fd --- /dev/null +++ b/packages/barrier_hole/resources/instances/clean/items/barrier/hole_slot_peti.vmf @@ -0,0 +1,74 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "29" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "32" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "29" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" +} +entity +{ + "id" "2" + "classname" "prop_static" + "angles" "0 270 90" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/bee2/props_clean/barrier_hole_bridge.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "origin" "-2.62268e-007 0 -2" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/barrier_hole/resources/instances/clean/items/barrier/hole_small_chamber.vmf b/packages/barrier_hole/resources/instances/clean/items/barrier/hole_small_chamber.vmf new file mode 100644 index 0000000000..558288ff53 --- /dev/null +++ b/packages/barrier_hole/resources/instances/clean/items/barrier/hole_small_chamber.vmf @@ -0,0 +1,74 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "29" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "2" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "29" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" +} +entity +{ + "id" "10" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_test_chamber/frame_hole_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "origin" "-2.62268e-007 0 -8" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/glass_hole/resources/instances/clean/items/barrier/glass_hole_small.vmf b/packages/barrier_hole/resources/instances/clean/items/barrier/hole_small_peti.vmf similarity index 89% rename from packages/glass_hole/resources/instances/clean/items/barrier/glass_hole_small.vmf rename to packages/barrier_hole/resources/instances/clean/items/barrier/hole_small_peti.vmf index 40d8cc0f71..419b76083f 100644 --- a/packages/glass_hole/resources/instances/clean/items/barrier/glass_hole_small.vmf +++ b/packages/barrier_hole/resources/instances/clean/items/barrier/hole_small_peti.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8997" - "mapversion" "23" + "editorbuild" "9672" + "mapversion" "28" "formatversion" "100" "prefab" "0" } @@ -14,13 +14,13 @@ viewsettings "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "8" + "nGridSpacing" "32" "bShow3DGrid" "0" } world { "id" "1" - "mapversion" "23" + "mapversion" "28" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -32,7 +32,7 @@ entity { "id" "2" "classname" "prop_static" - "angles" "0 270 0" + "angles" "0 270 90" "disableflashlight" "0" "disableselfshadowing" "0" "disableshadowdepth" "0" @@ -55,7 +55,7 @@ entity "shadowdepthnocache" "0" "skin" "0" "solid" "6" - "origin" "62 0 0" + "origin" "-2.62268e-007 0 -2" editor { "color" "255 255 0" diff --git a/packages/glass_hole/resources/instances/p1/items/barrier/glass_hole_large.vmf b/packages/barrier_hole/resources/instances/p1/items/barrier/glass_hole_large.vmf similarity index 100% rename from packages/glass_hole/resources/instances/p1/items/barrier/glass_hole_large.vmf rename to packages/barrier_hole/resources/instances/p1/items/barrier/glass_hole_large.vmf diff --git a/packages/glass_hole/resources/instances/p1/items/barrier/glass_hole_small.vmf b/packages/barrier_hole/resources/instances/p1/items/barrier/glass_hole_small.vmf similarity index 100% rename from packages/glass_hole/resources/instances/p1/items/barrier/glass_hole_small.vmf rename to packages/barrier_hole/resources/instances/p1/items/barrier/glass_hole_small.vmf diff --git a/packages/barrier_hole/resources/instances/p1/items/barrier/hole_large.vmf b/packages/barrier_hole/resources/instances/p1/items/barrier/hole_large.vmf new file mode 100644 index 0000000000..8c0bfc6774 --- /dev/null +++ b/packages/barrier_hole/resources/instances/p1/items/barrier/hole_large.vmf @@ -0,0 +1,658 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "19" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "4" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "19" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" +} +entity +{ + "id" "264" + "classname" "func_detail" + solid + { + "id" "148" + side + { + "id" "492" + "plane" "(-80 -40 0) (-80 40 0) (-76 36 0)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "491" + "plane" "(-80 40 -8) (-80 -40 -8) (-76 -36 -8)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "490" + "plane" "(-80 -40 -8) (-80 40 -8) (-80 40 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[0 0 -1 236] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "489" + "plane" "(-76 36 -8) (-76 -36 -8) (-76 -36 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[0 0 -1 236] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "488" + "plane" "(-80 40 -8) (-76 36 -8) (-76 36 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "487" + "plane" "(-76 -36 -8) (-80 -40 -8) (-80 -40 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "164" + side + { + "id" "498" + "plane" "(-36 -76 0) (-40 -80 0) (-80 -40 0)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[-0.707107 0.707107 0 -64] 0.25" + "vaxis" "[0.707107 0.707107 0 2.35559] 0.35" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "497" + "plane" "(-76 -36 -8) (-80 -40 -8) (-40 -80 -8)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[-0.707107 0.707107 0 -64] 0.25" + "vaxis" "[0.707107 0.707107 0 2] 0.35" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "496" + "plane" "(-36 -76 -8) (-40 -80 -8) (-40 -80 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -12] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "495" + "plane" "(-80 -40 -8) (-76 -36 -8) (-76 -36 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "494" + "plane" "(-40 -80 -8) (-80 -40 -8) (-80 -40 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[0 0 -1 236] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "493" + "plane" "(-76 -36 -8) (-36 -76 -8) (-36 -76 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[0 0 -1 236] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "193" + side + { + "id" "504" + "plane" "(-76 36 0) (-80 40 0) (-40 80 0)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[-0.707107 -0.707107 0 -64] 0.25" + "vaxis" "[0.707107 -0.707107 0 2] 0.35" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "503" + "plane" "(-36 76 -8) (-40 80 -8) (-80 40 -8)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[-0.707107 -0.707107 0 -64] 0.25" + "vaxis" "[0.707107 -0.707107 0 2.35559] 0.35" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "502" + "plane" "(-40 80 -8) (-36 76 -8) (-36 76 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -12] 0.25" + "vaxis" "[0 1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "501" + "plane" "(-76 36 -8) (-80 40 -8) (-80 40 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "500" + "plane" "(-80 40 -8) (-40 80 -8) (-40 80 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[0 0 -1 236] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "499" + "plane" "(-36 76 -8) (-76 36 -8) (-76 36 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[0 0 -1 236] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "205" + side + { + "id" "510" + "plane" "(76 -36 0) (76 36 0) (80 40 0)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "509" + "plane" "(76 36 -8) (76 -36 -8) (80 -40 -8)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "508" + "plane" "(80 40 -8) (80 -40 -8) (80 -40 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[0 0 -1 236] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "507" + "plane" "(76 -36 -8) (76 36 -8) (76 36 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[0 0 -1 236] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "506" + "plane" "(80 -40 -8) (76 -36 -8) (76 -36 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[0 0 -1 236] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "505" + "plane" "(76 36 -8) (80 40 -8) (80 40 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "206" + side + { + "id" "516" + "plane" "(80 40 0) (76 36 0) (36 76 0)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[0.707107 -0.707107 0 64] 0.25" + "vaxis" "[-0.707107 -0.707107 0 -14] 0.35" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "515" + "plane" "(40 80 -8) (36 76 -8) (76 36 -8)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[0.707107 -0.707107 0 64] 0.25" + "vaxis" "[-0.707107 -0.707107 0 -13.6444] 0.35" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "514" + "plane" "(36 76 -8) (40 80 -8) (40 80 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -12] 0.25" + "vaxis" "[0 1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "513" + "plane" "(80 40 -8) (76 36 -8) (76 36 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "512" + "plane" "(40 80 -8) (80 40 -8) (80 40 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[0 0 -1 236] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "511" + "plane" "(76 36 -8) (36 76 -8) (36 76 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[0 0 -1 236] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "207" + side + { + "id" "522" + "plane" "(40 -80 0) (36 -76 0) (76 -36 0)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[0.707107 0.707107 0 64] 0.25" + "vaxis" "[-0.707107 0.707107 0 -14] 0.35" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "521" + "plane" "(80 -40 -8) (76 -36 -8) (36 -76 -8)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[0.707107 0.707107 0 64] 0.25" + "vaxis" "[-0.707107 0.707107 0 -13.6444] 0.35" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "520" + "plane" "(40 -80 -8) (36 -76 -8) (36 -76 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -12] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "519" + "plane" "(76 -36 -8) (80 -40 -8) (80 -40 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "518" + "plane" "(80 -40 -8) (40 -80 -8) (40 -80 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[0 0 -1 236] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "517" + "plane" "(36 -76 -8) (76 -36 -8) (76 -36 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[0 0 -1 236] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "250" + side + { + "id" "528" + "plane" "(36 76 0) (-36 76 0) (-40 80 0)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "527" + "plane" "(40 80 -8) (-40 80 -8) (-36 76 -8)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "526" + "plane" "(-40 80 -8) (40 80 -8) (40 80 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[0 0 -1 236] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "525" + "plane" "(36 76 -8) (-36 76 -8) (-36 76 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[0 0 -1 236] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "524" + "plane" "(40 80 -8) (36 76 -8) (36 76 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "523" + "plane" "(-36 76 -8) (-40 80 -8) (-40 80 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -16] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "251" + side + { + "id" "534" + "plane" "(40 -80 0) (-40 -80 0) (-36 -76 0)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[-1 0 0 -80] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "533" + "plane" "(36 -76 -8) (-36 -76 -8) (-40 -80 -8)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[-1 0 0 -80] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "532" + "plane" "(40 -80 -8) (-40 -80 -8) (-40 -80 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[0 0 -1 236] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "531" + "plane" "(-36 -76 -8) (36 -76 -8) (36 -76 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[0 0 -1 236] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "530" + "plane" "(-40 -80 -8) (-36 -76 -8) (-36 -76 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -48] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "529" + "plane" "(36 -76 -8) (40 -80 -8) (40 -80 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/barrier_hole/resources/instances/p1/items/barrier/hole_medium.vmf b/packages/barrier_hole/resources/instances/p1/items/barrier/hole_medium.vmf new file mode 100644 index 0000000000..26bed77239 --- /dev/null +++ b/packages/barrier_hole/resources/instances/p1/items/barrier/hole_medium.vmf @@ -0,0 +1,354 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "31" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "8" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "31" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" +} +entity +{ + "id" "145" + "classname" "func_detail" + solid + { + "id" "116" + side + { + "id" "114" + "plane" "(-28 28 0) (28 28 0) (24 24 0)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "90" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "113" + "plane" "(-28 28 -8) (-24 24 -8) (24 24 -8)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "90" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "112" + "plane" "(28 28 -8) (28 28 0) (-28 28 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[1 0 0 -316] 0.25" + "vaxis" "[0 0 1 128] 0.25" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "111" + "plane" "(-28 28 -8) (-28 28 0) (-24 24 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -16] 0.25" + "vaxis" "[-0.707107 0.707107 0 -5.65686] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "110" + "plane" "(24 24 -8) (24 24 0) (28 28 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 16] 0.25" + "vaxis" "[0.707107 0.707107 0 -16.9706] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "109" + "plane" "(-24 24 -8) (-24 24 0) (24 24 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[1 0 0 -156] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "52" + side + { + "id" "120" + "plane" "(-28 -28 0) (-28 28 0) (-24 24 0)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "90" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "119" + "plane" "(-28 -28 -8) (-24 -24 -8) (-24 24 -8)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "90" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "118" + "plane" "(-28 28 -8) (-28 28 0) (-28 -28 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[0 1 0 -460] 0.25" + "vaxis" "[0 0 1 128] 0.25" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "117" + "plane" "(-28 -28 -8) (-28 -28 0) (-24 -24 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -16] 0.25" + "vaxis" "[-0.707107 -0.707107 0 -16.9706] 0.25" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "116" + "plane" "(-24 24 -8) (-24 24 0) (-28 28 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 16] 0.25" + "vaxis" "[-0.707107 0.707107 0 -5.65686] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "115" + "plane" "(-24 -24 -8) (-24 -24 0) (-24 24 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[0 1 0 -268] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "104" + side + { + "id" "126" + "plane" "(28 28 0) (28 -28 0) (24 -24 0)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "90" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "125" + "plane" "(28 28 -8) (24 24 -8) (24 -24 -8)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[0 -1 0 64] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "90" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "124" + "plane" "(28 -28 -8) (28 -28 0) (28 28 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[0 -1 0 -172] 0.25" + "vaxis" "[0 0 1 128] 0.25" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "123" + "plane" "(28 28 -8) (28 28 0) (24 24 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -16] 0.25" + "vaxis" "[0.707107 0.707107 0 -5.65686] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "122" + "plane" "(24 -24 -8) (24 -24 0) (28 -28 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 16] 0.25" + "vaxis" "[0.707107 -0.707107 0 -16.9706] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121" + "plane" "(24 24 -8) (24 24 0) (24 -24 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[0 -1 0 -44] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "90" + "lightmapscale" "8" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "115" + side + { + "id" "132" + "plane" "(-28 -28 0) (-24 -24 0) (24 -24 0)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "90" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "131" + "plane" "(28 -28 -8) (24 -24 -8) (-24 -24 -8)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "90" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "130" + "plane" "(-28 -28 -8) (-28 -28 0) (28 -28 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[-1 0 0 -28] 0.25" + "vaxis" "[0 0 1 128] 0.25" + "rotation" "90" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "129" + "plane" "(28 -28 -8) (28 -28 0) (24 -24 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -16] 0.25" + "vaxis" "[0.707107 -0.707107 0 -16.9706] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128" + "plane" "(-24 -24 -8) (-24 -24 0) (-28 -28 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 16] 0.25" + "vaxis" "[-0.707107 -0.707107 0 -5.65686] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127" + "plane" "(24 -24 -8) (24 -24 0) (-24 -24 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[-1 0 0 -380] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/barrier_hole/resources/instances/p1/items/barrier/hole_slot.vmf b/packages/barrier_hole/resources/instances/p1/items/barrier/hole_slot.vmf new file mode 100644 index 0000000000..355adf43b5 --- /dev/null +++ b/packages/barrier_hole/resources/instances/p1/items/barrier/hole_slot.vmf @@ -0,0 +1,354 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "32" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "2" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "32" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" +} +entity +{ + "id" "145" + "classname" "func_detail" + solid + { + "id" "116" + side + { + "id" "114" + "plane" "(-6 38 0) (6 38 0) (2 34 0)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 1 0 -8] 0.25" + "rotation" "90" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "113" + "plane" "(-6 38 -8) (-2 34 -8) (2 34 -8)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -8] 0.25" + "rotation" "90" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "112" + "plane" "(6 38 -8) (6 38 0) (-6 38 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[1 0 0 -316] 0.25" + "vaxis" "[0 0 1 128] 0.25" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "111" + "plane" "(-6 38 -8) (-6 38 0) (-2 34 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -16] 0.25" + "vaxis" "[-0.707107 0.707107 0 -33.9411] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "110" + "plane" "(2 34 -8) (2 34 0) (6 38 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 16] 0.25" + "vaxis" "[0.707107 0.707107 0 -45.2549] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "109" + "plane" "(-2 34 -8) (-2 34 0) (2 34 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[1 0 0 -156] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "52" + side + { + "id" "120" + "plane" "(-6 -38 0) (-6 38 0) (-2 34 0)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[-1 0 0 8] 0.25" + "rotation" "90" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "119" + "plane" "(-6 -38 -8) (-2 -34 -8) (-2 34 -8)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[-1 0 0 8] 0.25" + "rotation" "90" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "118" + "plane" "(-6 38 -8) (-6 38 0) (-6 -38 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[0 1 0 -460] 0.25" + "vaxis" "[0 0 1 128] 0.25" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "117" + "plane" "(-6 -38 -8) (-6 -38 0) (-2 -34 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -16] 0.25" + "vaxis" "[-0.707107 -0.707107 0 45.2548] 0.25" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "116" + "plane" "(-2 34 -8) (-2 34 0) (-6 38 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 16] 0.25" + "vaxis" "[-0.707107 0.707107 0 56.5686] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "115" + "plane" "(-2 -34 -8) (-2 -34 0) (-2 34 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[0 1 0 -268] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "104" + side + { + "id" "126" + "plane" "(6 38 0) (6 -38 0) (2 -34 0)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[1 0 0 8] 0.25" + "rotation" "90" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "125" + "plane" "(6 38 -8) (2 34 -8) (2 -34 -8)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[0 -1 0 64] 0.25" + "vaxis" "[1 0 0 8] 0.25" + "rotation" "90" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "124" + "plane" "(6 -38 -8) (6 -38 0) (6 38 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[0 -1 0 -172] 0.25" + "vaxis" "[0 0 1 128] 0.25" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "123" + "plane" "(6 38 -8) (6 38 0) (2 34 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -16] 0.25" + "vaxis" "[0.707107 0.707107 0 56.5686] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "122" + "plane" "(2 -34 -8) (2 -34 0) (6 -38 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 16] 0.25" + "vaxis" "[0.707107 -0.707107 0 45.2548] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121" + "plane" "(2 34 -8) (2 34 0) (2 -34 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[0 -1 0 -44] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "90" + "lightmapscale" "8" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "115" + side + { + "id" "132" + "plane" "(-6 -38 0) (-2 -34 0) (2 -34 0)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "90" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "131" + "plane" "(6 -38 -8) (2 -34 -8) (-2 -34 -8)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "90" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "130" + "plane" "(-6 -38 -8) (-6 -38 0) (6 -38 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[-1 0 0 -28] 0.25" + "vaxis" "[0 0 1 128] 0.25" + "rotation" "90" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "129" + "plane" "(6 -38 -8) (6 -38 0) (2 -34 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -16] 0.25" + "vaxis" "[0.707107 -0.707107 0 -45.2549] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128" + "plane" "(-2 -34 -8) (-2 -34 0) (-6 -38 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 16] 0.25" + "vaxis" "[-0.707107 -0.707107 0 -33.9411] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127" + "plane" "(2 -34 -8) (2 -34 0) (-2 -34 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[-1 0 0 -380] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/barrier_hole/resources/instances/p1/items/barrier/hole_small.vmf b/packages/barrier_hole/resources/instances/p1/items/barrier/hole_small.vmf new file mode 100644 index 0000000000..c6c645b09c --- /dev/null +++ b/packages/barrier_hole/resources/instances/p1/items/barrier/hole_small.vmf @@ -0,0 +1,354 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "25" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "8" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "25" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" +} +entity +{ + "id" "145" + "classname" "func_detail" + solid + { + "id" "116" + side + { + "id" "102" + "plane" "(-16 16 0) (-20 20 0) (20 20 0)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[1 0 0 92] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "101" + "plane" "(20 20 -8) (-20 20 -8) (-16 16 -8)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[1 0 0 92] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "100" + "plane" "(-20 20 -8) (20 20 -8) (20 20 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[1 0 0 -36] 0.25" + "vaxis" "[0 0 1 -240] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "99" + "plane" "(-16 16 -8) (-20 20 -8) (-20 20 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 48] 0.25" + "vaxis" "[-0.707107 0.707107 0 -52.6863] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "98" + "plane" "(20 20 -8) (16 16 -8) (16 16 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -48] 0.25" + "vaxis" "[0.707107 0.707107 0 11.3137] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "97" + "plane" "(16 16 -8) (-16 16 -8) (-16 16 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[1 0 0 -36] 0.25" + "vaxis" "[0 0 1 -240] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "52" + side + { + "id" "84" + "plane" "(-16 -16 0) (-20 -20 0) (-20 20 0)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "83" + "plane" "(-20 20 -8) (-20 -20 -8) (-16 -16 -8)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "82" + "plane" "(-20 -20 -8) (-20 20 -8) (-20 20 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[0 0 1 -240] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "81" + "plane" "(-16 -16 -8) (-20 -20 -8) (-20 -20 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 48] 0.25" + "vaxis" "[-0.707107 -0.707107 0 -52.6863] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "80" + "plane" "(-20 20 -8) (-16 16 -8) (-16 16 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -48] 0.25" + "vaxis" "[-0.707107 0.707107 0 -52.6863] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "79" + "plane" "(-16 16 -8) (-16 -16 -8) (-16 -16 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[0 0 1 -240] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "104" + side + { + "id" "90" + "plane" "(16 16 0) (20 20 0) (20 -20 0)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[0 -1 0 -36] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "89" + "plane" "(20 -20 -8) (20 20 -8) (16 16 -8)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[0 -1 0 -36] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "88" + "plane" "(20 20 -8) (20 -20 -8) (20 -20 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[0 -1 0 -36] 0.25" + "vaxis" "[0 0 1 -240] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "87" + "plane" "(16 16 -8) (20 20 -8) (20 20 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 48] 0.25" + "vaxis" "[0.707107 0.707107 0 11.3137] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "86" + "plane" "(20 -20 -8) (16 -16 -8) (16 -16 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -48] 0.25" + "vaxis" "[0.707107 -0.707107 0 11.3137] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "85" + "plane" "(16 -16 -8) (16 16 -8) (16 16 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[0 -1 0 -36] 0.25" + "vaxis" "[0 0 1 -240] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "115" + side + { + "id" "96" + "plane" "(20 -20 0) (-20 -20 0) (-16 -16 0)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[-1 0 0 -36] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "95" + "plane" "(-20 -20 -8) (20 -20 -8) (16 -16 -8)" + "material" "PLASTIC/PLASTICWALL004A" + "uaxis" "[-1 0 0 -36] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "94" + "plane" "(20 -20 -8) (-20 -20 -8) (-20 -20 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[-1 0 0 -36] 0.25" + "vaxis" "[0 0 1 -240] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "93" + "plane" "(16 -16 -8) (20 -20 -8) (20 -20 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 48] 0.25" + "vaxis" "[0.707107 -0.707107 0 11.3137] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92" + "plane" "(-20 -20 -8) (-16 -16 -8) (-16 -16 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -48] 0.25" + "vaxis" "[-0.707107 -0.707107 0 -52.6863] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "91" + "plane" "(-16 -16 -8) (16 -16 -8) (16 -16 0)" + "material" "PLASTIC/PLASTICWALL001A" + "uaxis" "[-1 0 0 -36] 0.25" + "vaxis" "[0 0 1 -240] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/glass_hole/resources/materials/models/props_map_editor/palette/clean/BEE2/glass_hole.vtf b/packages/barrier_hole/resources/materials/models/props_map_editor/palette/clean/BEE2/barrier_hole.vtf similarity index 100% rename from packages/glass_hole/resources/materials/models/props_map_editor/palette/clean/BEE2/glass_hole.vtf rename to packages/barrier_hole/resources/materials/models/props_map_editor/palette/clean/BEE2/barrier_hole.vtf diff --git a/packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_bridge.dx90.vtx b/packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_bridge.dx90.vtx new file mode 100644 index 0000000000..d6c9e25e10 Binary files /dev/null and b/packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_bridge.dx90.vtx differ diff --git a/packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_bridge.mdl b/packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_bridge.mdl new file mode 100644 index 0000000000..cfc1ae5ac6 Binary files /dev/null and b/packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_bridge.mdl differ diff --git a/packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_bridge.phy b/packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_bridge.phy new file mode 100644 index 0000000000..09f9618e32 Binary files /dev/null and b/packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_bridge.phy differ diff --git a/packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_bridge.vvd b/packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_bridge.vvd new file mode 100644 index 0000000000..b1ceb57013 Binary files /dev/null and b/packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_bridge.vvd differ diff --git a/packages/glass_hole/resources/models/BEE2/props_clean/barrier_hole_large.dx90.vtx b/packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_large.dx90.vtx similarity index 100% rename from packages/glass_hole/resources/models/BEE2/props_clean/barrier_hole_large.dx90.vtx rename to packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_large.dx90.vtx diff --git a/packages/glass_hole/resources/models/BEE2/props_clean/barrier_hole_large.mdl b/packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_large.mdl similarity index 100% rename from packages/glass_hole/resources/models/BEE2/props_clean/barrier_hole_large.mdl rename to packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_large.mdl diff --git a/packages/glass_hole/resources/models/BEE2/props_clean/barrier_hole_large.phy b/packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_large.phy similarity index 100% rename from packages/glass_hole/resources/models/BEE2/props_clean/barrier_hole_large.phy rename to packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_large.phy diff --git a/packages/glass_hole/resources/models/BEE2/props_clean/barrier_hole_large.vvd b/packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_large.vvd similarity index 100% rename from packages/glass_hole/resources/models/BEE2/props_clean/barrier_hole_large.vvd rename to packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_large.vvd diff --git a/packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_medium.dx90.vtx b/packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_medium.dx90.vtx new file mode 100644 index 0000000000..fc21c19784 Binary files /dev/null and b/packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_medium.dx90.vtx differ diff --git a/packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_medium.mdl b/packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_medium.mdl new file mode 100644 index 0000000000..b4d59e7d67 Binary files /dev/null and b/packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_medium.mdl differ diff --git a/packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_medium.phy b/packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_medium.phy new file mode 100644 index 0000000000..266601fdb9 Binary files /dev/null and b/packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_medium.phy differ diff --git a/packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_medium.vvd b/packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_medium.vvd new file mode 100644 index 0000000000..98b59eb38c Binary files /dev/null and b/packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_medium.vvd differ diff --git a/packages/glass_hole/resources/models/BEE2/props_clean/barrier_hole_small.dx90.vtx b/packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_small.dx90.vtx similarity index 100% rename from packages/glass_hole/resources/models/BEE2/props_clean/barrier_hole_small.dx90.vtx rename to packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_small.dx90.vtx diff --git a/packages/glass_hole/resources/models/BEE2/props_clean/barrier_hole_small.mdl b/packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_small.mdl similarity index 100% rename from packages/glass_hole/resources/models/BEE2/props_clean/barrier_hole_small.mdl rename to packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_small.mdl diff --git a/packages/glass_hole/resources/models/BEE2/props_clean/barrier_hole_small.phy b/packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_small.phy similarity index 100% rename from packages/glass_hole/resources/models/BEE2/props_clean/barrier_hole_small.phy rename to packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_small.phy diff --git a/packages/glass_hole/resources/models/BEE2/props_clean/barrier_hole_small.vvd b/packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_small.vvd similarity index 100% rename from packages/glass_hole/resources/models/BEE2/props_clean/barrier_hole_small.vvd rename to packages/barrier_hole/resources/models/BEE2/props_clean/barrier_hole_small.vvd diff --git a/packages/barrier_hole/resources/models/BEE2/props_clean/frame_testchamber/frame_hole_medium.dx90.vtx b/packages/barrier_hole/resources/models/BEE2/props_clean/frame_testchamber/frame_hole_medium.dx90.vtx new file mode 100644 index 0000000000..2d7bb2bb69 Binary files /dev/null and b/packages/barrier_hole/resources/models/BEE2/props_clean/frame_testchamber/frame_hole_medium.dx90.vtx differ diff --git a/packages/barrier_hole/resources/models/BEE2/props_clean/frame_testchamber/frame_hole_medium.mdl b/packages/barrier_hole/resources/models/BEE2/props_clean/frame_testchamber/frame_hole_medium.mdl new file mode 100644 index 0000000000..16ef8f90c1 Binary files /dev/null and b/packages/barrier_hole/resources/models/BEE2/props_clean/frame_testchamber/frame_hole_medium.mdl differ diff --git a/packages/barrier_hole/resources/models/BEE2/props_clean/frame_testchamber/frame_hole_medium.phy b/packages/barrier_hole/resources/models/BEE2/props_clean/frame_testchamber/frame_hole_medium.phy new file mode 100644 index 0000000000..31d0a6e76a Binary files /dev/null and b/packages/barrier_hole/resources/models/BEE2/props_clean/frame_testchamber/frame_hole_medium.phy differ diff --git a/packages/barrier_hole/resources/models/BEE2/props_clean/frame_testchamber/frame_hole_medium.vvd b/packages/barrier_hole/resources/models/BEE2/props_clean/frame_testchamber/frame_hole_medium.vvd new file mode 100644 index 0000000000..0d4bc1486b Binary files /dev/null and b/packages/barrier_hole/resources/models/BEE2/props_clean/frame_testchamber/frame_hole_medium.vvd differ diff --git a/packages/barrier_hole/resources/models/BEE2/props_clean/frame_testchamber/frame_hole_slot.dx90.vtx b/packages/barrier_hole/resources/models/BEE2/props_clean/frame_testchamber/frame_hole_slot.dx90.vtx new file mode 100644 index 0000000000..430a3619f3 Binary files /dev/null and b/packages/barrier_hole/resources/models/BEE2/props_clean/frame_testchamber/frame_hole_slot.dx90.vtx differ diff --git a/packages/barrier_hole/resources/models/BEE2/props_clean/frame_testchamber/frame_hole_slot.mdl b/packages/barrier_hole/resources/models/BEE2/props_clean/frame_testchamber/frame_hole_slot.mdl new file mode 100644 index 0000000000..65b8691d7f Binary files /dev/null and b/packages/barrier_hole/resources/models/BEE2/props_clean/frame_testchamber/frame_hole_slot.mdl differ diff --git a/packages/barrier_hole/resources/models/BEE2/props_clean/frame_testchamber/frame_hole_slot.phy b/packages/barrier_hole/resources/models/BEE2/props_clean/frame_testchamber/frame_hole_slot.phy new file mode 100644 index 0000000000..a59de0335c Binary files /dev/null and b/packages/barrier_hole/resources/models/BEE2/props_clean/frame_testchamber/frame_hole_slot.phy differ diff --git a/packages/barrier_hole/resources/models/BEE2/props_clean/frame_testchamber/frame_hole_slot.vvd b/packages/barrier_hole/resources/models/BEE2/props_clean/frame_testchamber/frame_hole_slot.vvd new file mode 100644 index 0000000000..2dc7100728 Binary files /dev/null and b/packages/barrier_hole/resources/models/BEE2/props_clean/frame_testchamber/frame_hole_slot.vvd differ diff --git a/packages/glass_hole/resources/models/props_map_editor/bee2_glass_hole_large.dx90.vtx b/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/large.dx90.vtx similarity index 99% rename from packages/glass_hole/resources/models/props_map_editor/bee2_glass_hole_large.dx90.vtx rename to packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/large.dx90.vtx index ac3a876cdc..1f12702ec9 100644 Binary files a/packages/glass_hole/resources/models/props_map_editor/bee2_glass_hole_large.dx90.vtx and b/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/large.dx90.vtx differ diff --git a/packages/glass_hole/resources/models/props_map_editor/bee2_glass_hole_large.mdl b/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/large.mdl similarity index 51% rename from packages/glass_hole/resources/models/props_map_editor/bee2_glass_hole_large.mdl rename to packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/large.mdl index 276ee5ff1b..3acea13a30 100644 Binary files a/packages/glass_hole/resources/models/props_map_editor/bee2_glass_hole_large.mdl and b/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/large.mdl differ diff --git a/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/large.vvd b/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/large.vvd new file mode 100644 index 0000000000..09d1fa440f Binary files /dev/null and b/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/large.vvd differ diff --git a/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/medium.dx90.vtx b/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/medium.dx90.vtx new file mode 100644 index 0000000000..e4765110c8 Binary files /dev/null and b/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/medium.dx90.vtx differ diff --git a/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/medium.mdl b/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/medium.mdl new file mode 100644 index 0000000000..403caa037f Binary files /dev/null and b/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/medium.mdl differ diff --git a/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/medium.vvd b/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/medium.vvd new file mode 100644 index 0000000000..d118229962 Binary files /dev/null and b/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/medium.vvd differ diff --git a/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/slot_center.dx90.vtx b/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/slot_center.dx90.vtx new file mode 100644 index 0000000000..d6afe40c2b Binary files /dev/null and b/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/slot_center.dx90.vtx differ diff --git a/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/slot_center.mdl b/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/slot_center.mdl new file mode 100644 index 0000000000..e0af446004 Binary files /dev/null and b/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/slot_center.mdl differ diff --git a/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/slot_center.vvd b/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/slot_center.vvd new file mode 100644 index 0000000000..2e19c25dfb Binary files /dev/null and b/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/slot_center.vvd differ diff --git a/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/slot_offset.dx90.vtx b/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/slot_offset.dx90.vtx new file mode 100644 index 0000000000..d8d4cd8723 Binary files /dev/null and b/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/slot_offset.dx90.vtx differ diff --git a/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/slot_offset.mdl b/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/slot_offset.mdl new file mode 100644 index 0000000000..70ac88b8b1 Binary files /dev/null and b/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/slot_offset.mdl differ diff --git a/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/slot_offset.vvd b/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/slot_offset.vvd new file mode 100644 index 0000000000..99e2210748 Binary files /dev/null and b/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/slot_offset.vvd differ diff --git a/packages/glass_hole/resources/models/props_map_editor/bee2_glass_hole_small.dx90.vtx b/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/small.dx90.vtx similarity index 99% rename from packages/glass_hole/resources/models/props_map_editor/bee2_glass_hole_small.dx90.vtx rename to packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/small.dx90.vtx index dfb497236f..51f287b680 100644 Binary files a/packages/glass_hole/resources/models/props_map_editor/bee2_glass_hole_small.dx90.vtx and b/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/small.dx90.vtx differ diff --git a/packages/glass_hole/resources/models/props_map_editor/bee2_glass_hole_small.mdl b/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/small.mdl similarity index 50% rename from packages/glass_hole/resources/models/props_map_editor/bee2_glass_hole_small.mdl rename to packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/small.mdl index 67c2f94842..29ac0c5bda 100644 Binary files a/packages/glass_hole/resources/models/props_map_editor/bee2_glass_hole_small.mdl and b/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/small.mdl differ diff --git a/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/small.vvd b/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/small.vvd new file mode 100644 index 0000000000..bda92c6cc0 Binary files /dev/null and b/packages/barrier_hole/resources/models/props_map_editor/bee2/clean/barrier_hole/small.vvd differ diff --git a/packages/glass_hole/resources/models/puzzlemaker/selection_bee2_glass_hole_large.3ds b/packages/barrier_hole/resources/models/puzzlemaker/selection_bee2/clean/barrier_hole/large.3ds similarity index 100% rename from packages/glass_hole/resources/models/puzzlemaker/selection_bee2_glass_hole_large.3ds rename to packages/barrier_hole/resources/models/puzzlemaker/selection_bee2/clean/barrier_hole/large.3ds diff --git a/packages/barrier_hole/resources/models/puzzlemaker/selection_bee2/clean/barrier_hole/medium.3ds b/packages/barrier_hole/resources/models/puzzlemaker/selection_bee2/clean/barrier_hole/medium.3ds new file mode 100644 index 0000000000..5af9d355f2 Binary files /dev/null and b/packages/barrier_hole/resources/models/puzzlemaker/selection_bee2/clean/barrier_hole/medium.3ds differ diff --git a/packages/barrier_hole/resources/models/puzzlemaker/selection_bee2/clean/barrier_hole/slot_center.3ds b/packages/barrier_hole/resources/models/puzzlemaker/selection_bee2/clean/barrier_hole/slot_center.3ds new file mode 100644 index 0000000000..a8aaed50d3 Binary files /dev/null and b/packages/barrier_hole/resources/models/puzzlemaker/selection_bee2/clean/barrier_hole/slot_center.3ds differ diff --git a/packages/barrier_hole/resources/models/puzzlemaker/selection_bee2/clean/barrier_hole/slot_offset.3ds b/packages/barrier_hole/resources/models/puzzlemaker/selection_bee2/clean/barrier_hole/slot_offset.3ds new file mode 100644 index 0000000000..f3b8bd890a Binary files /dev/null and b/packages/barrier_hole/resources/models/puzzlemaker/selection_bee2/clean/barrier_hole/slot_offset.3ds differ diff --git a/packages/glass_hole/resources/models/puzzlemaker/selection_bee2_glass_hole_small.3ds b/packages/barrier_hole/resources/models/puzzlemaker/selection_bee2/clean/barrier_hole/small.3ds similarity index 100% rename from packages/glass_hole/resources/models/puzzlemaker/selection_bee2_glass_hole_small.3ds rename to packages/barrier_hole/resources/models/puzzlemaker/selection_bee2/clean/barrier_hole/small.3ds diff --git a/packages/barrier_hole/resources/models/puzzlemaker/selection_bee2_barrier_hole_large.3ds b/packages/barrier_hole/resources/models/puzzlemaker/selection_bee2_barrier_hole_large.3ds new file mode 100644 index 0000000000..c96be28bc3 Binary files /dev/null and b/packages/barrier_hole/resources/models/puzzlemaker/selection_bee2_barrier_hole_large.3ds differ diff --git a/packages/barrier_hole/resources/models/puzzlemaker/selection_bee2_barrier_hole_small.3ds b/packages/barrier_hole/resources/models/puzzlemaker/selection_bee2_barrier_hole_small.3ds new file mode 100644 index 0000000000..7b5bff6f35 Binary files /dev/null and b/packages/barrier_hole/resources/models/puzzlemaker/selection_bee2_barrier_hole_small.3ds differ diff --git a/packages/barrier_hole/templates/hole_footprint.vmf b/packages/barrier_hole/templates/hole_footprint.vmf new file mode 100644 index 0000000000..dd537483de --- /dev/null +++ b/packages/barrier_hole/templates/hole_footprint.vmf @@ -0,0 +1,1134 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "6" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ + visgroup + { + "name" "small" + "visgroupid" "4" + "color" "109 130 155" + } + visgroup + { + "name" "large" + "visgroupid" "8" + "color" "246 143 156" + } + visgroup + { + "name" "slot_center" + "visgroupid" "13" + "color" "129 182 255" + } + visgroup + { + "name" "slot_offset" + "visgroupid" "14" + "color" "122 195 208" + } + visgroup + { + "name" "medium" + "visgroupid" "15" + "color" "210 107 232" + } +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "32" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "6" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" +} +entity +{ + "id" "611" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "-16 16 0" + editor + { + "color" "220 30 220" + "visgroupid" "15" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "614" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "16 16 0" + editor + { + "color" "220 30 220" + "visgroupid" "15" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "617" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "16 -16 0" + editor + { + "color" "220 30 220" + "visgroupid" "15" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "620" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "-16 -16 0" + editor + { + "color" "220 30 220" + "visgroupid" "15" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "395" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "-16 -16 0" + editor + { + "color" "220 30 220" + "visgroupid" "13" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "407" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "-16 -48 0" + editor + { + "color" "220 30 220" + "visgroupid" "13" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "410" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "-16 48 0" + editor + { + "color" "220 30 220" + "visgroupid" "13" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "413" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "-16 16 0" + editor + { + "color" "220 30 220" + "visgroupid" "13" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "416" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "16 16 0" + editor + { + "color" "220 30 220" + "visgroupid" "13" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "419" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "16 48 0" + editor + { + "color" "220 30 220" + "visgroupid" "13" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "422" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "16 -48 0" + editor + { + "color" "220 30 220" + "visgroupid" "13" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "425" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "16 -16 0" + editor + { + "color" "220 30 220" + "visgroupid" "13" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "428" + "classname" "prop_static" + "angles" "0 90 -90" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/bee2/props_clean/barrier_hole_bridge.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "origin" "-48 0 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "436" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "-48 -48 0" + editor + { + "color" "220 30 220" + "visgroupid" "14" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "491" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "-48 -16 0" + editor + { + "color" "220 30 220" + "visgroupid" "14" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "497" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "-48 16 0" + editor + { + "color" "220 30 220" + "visgroupid" "14" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "500" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "-48 48 0" + editor + { + "color" "220 30 220" + "visgroupid" "14" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "2" + "classname" "bee2_template_conf" + "debug" "0" + "detail_auto_visgroup" "0" + "discard_brushes" "0" + "temp_type" "default" + "template_id" "BEE2_BARRIER_HOLE_FOOTPRINT" + "origin" "0 0 32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "20" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "-16 16 0" + editor + { + "color" "220 30 220" + "visgroupid" "4" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "32" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "16 16 0" + editor + { + "color" "220 30 220" + "visgroupid" "4" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "38" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "16 -16 0" + editor + { + "color" "220 30 220" + "visgroupid" "4" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "44" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "-16 -16 0" + editor + { + "color" "220 30 220" + "visgroupid" "4" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "80" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "-16 16 0" + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "83" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "16 16 0" + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "86" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "16 -16 0" + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "89" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "-16 -16 0" + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "104" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "-16 -48 0" + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "107" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "-48 -48 0" + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "110" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "-48 -16 0" + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "113" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "-48 16 0" + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "116" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "-48 48 0" + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "119" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "-16 48 0" + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "122" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "16 48 0" + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "125" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "48 48 0" + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "128" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "48 16 0" + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "131" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "48 -16 0" + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "134" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "48 -48 0" + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "137" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "16 -48 0" + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "140" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "16 -80 0" + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "143" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "-16 -80 0" + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "146" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "-48 -80 0" + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "161" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "48 -80 0" + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "170" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "80 -48 0" + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "176" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "80 -16 0" + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "179" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "80 16 0" + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "182" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "80 48 0" + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "185" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "48 80 0" + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "191" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "16 80 0" + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "194" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "-16 80 0" + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "197" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "-48 80 0" + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "200" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "-80 48 0" + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "206" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "-80 16 0" + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "209" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "-80 -16 0" + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "212" + "classname" "bee2_template_tilesetter" + "angles" "0 0 0" + "color" "tile" + "force" "0" + "skin" "5" + "origin" "-80 -48 0" + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "215" + "classname" "prop_static" + "angles" "0 0 270" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/bee2/props_clean/barrier_hole_large.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "origin" "0 0 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "273" + "classname" "prop_static" + "angles" "0 0 -90" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/bee2/props_clean/barrier_hole_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "origin" "0 0 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "292" + "classname" "prop_static" + "angles" "0 270 -90" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/bee2/props_clean/barrier_hole_bridge.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "origin" "0 0 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/barrier_hole/templates/hole_modern.vmf b/packages/barrier_hole/templates/hole_modern.vmf new file mode 100644 index 0000000000..a4bdcfc7dc --- /dev/null +++ b/packages/barrier_hole/templates/hole_modern.vmf @@ -0,0 +1,6921 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "46" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ + visgroup + { + "name" "frame_peti" + "visgroupid" "20" + "color" "194 155 120" + } + visgroup + { + "name" "frame_chamber" + "visgroupid" "19" + "color" "217 158 183" + } + visgroup + { + "name" "small" + "visgroupid" "7" + "color" "192 161 150" + } + visgroup + { + "name" "medium" + "visgroupid" "23" + "color" "203 232 249" + } + visgroup + { + "name" "large_peti_diagonal" + "visgroupid" "8" + "color" "199 84 85" + } + visgroup + { + "name" "large_peti_cutout" + "visgroupid" "12" + "color" "243 240 209" + } + visgroup + { + "name" "large_peti_square" + "visgroupid" "13" + "color" "84 101 90" + } + visgroup + { + "name" "large_chamber_diagonal" + "visgroupid" "17" + "color" "215 84 117" + } + visgroup + { + "name" "large_chamber_cutout" + "visgroupid" "18" + "color" "228 101 218" + } + visgroup + { + "name" "large_chamber_square" + "visgroupid" "21" + "color" "227 208 97" + } +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "2" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "46" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" +} +entity +{ + "id" "2834" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grate" "0" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "2835" + side + { + "id" "2881" + "plane" "(-32 24 4) (-32 32 4) (32 32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2880" + "plane" "(-32 32 -4) (-32 24 -4) (32 24 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2879" + "plane" "(-32 24 -4) (-32 32 -4) (-32 32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2878" + "plane" "(32 32 -4) (32 24 -4) (32 24 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2877" + "plane" "(-32 32 -4) (32 32 -4) (32 32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2876" + "plane" "(32 24 -4) (-32 24 -4) (-32 24 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 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" "2836" + side + { + "id" "2887" + "plane" "(24 -24 4) (24 24 4) (32 24 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2886" + "plane" "(24 24 -4) (24 -24 -4) (32 -24 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2885" + "plane" "(24 -24 -4) (24 24 -4) (24 24 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 -4] 0.25" + "vaxis" "[0 0 -1 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2884" + "plane" "(32 24 -4) (32 -24 -4) (32 -24 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2883" + "plane" "(24 24 -4) (32 24 -4) (32 24 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2882" + "plane" "(32 -24 -4) (24 -24 -4) (24 -24 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2837" + side + { + "id" "2893" + "plane" "(-32 -24 4) (-32 24 4) (-24 24 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 40] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2892" + "plane" "(-32 24 -4) (-32 -24 -4) (-24 -24 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -40] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2891" + "plane" "(-32 -24 -4) (-32 24 -4) (-32 24 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 -4] 0.25" + "vaxis" "[0 0 -1 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2890" + "plane" "(-24 24 -4) (-24 -24 -4) (-24 -24 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2889" + "plane" "(-32 24 -4) (-24 24 -4) (-24 24 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -40] 0.25" + "vaxis" "[0 0 -1 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2888" + "plane" "(-24 -24 -4) (-32 -24 -4) (-32 -24 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 40] 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" "2838" + side + { + "id" "2899" + "plane" "(-32 -32 4) (-32 -24 4) (32 -24 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2898" + "plane" "(-32 -24 -4) (-32 -32 -4) (32 -32 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2897" + "plane" "(-32 -32 -4) (-32 -24 -4) (-32 -24 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2896" + "plane" "(32 -24 -4) (32 -32 -4) (32 -32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2895" + "plane" "(-32 -24 -4) (32 -24 -4) (32 -24 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2894" + "plane" "(32 -32 -4) (-32 -32 -4) (-32 -32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 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" + } + } + editor + { + "color" "220 30 220" + "visgroupid" "23" + "visgroupshown" "1" + "visgroupautoshown" "1" + "comments" "Contents set by the compiler." + "logicalpos" "[0 4000]" + } +} +entity +{ + "id" "2850" + "classname" "prop_static" + "angles" "-90 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/bee2/props_clean/window_frame_system/straight_24.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "origin" "26 12 4.5" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2946" + "classname" "func_detail" + solid + { + "id" "2939" + side + { + "id" "2929" + "plane" "(-32 26 4) (-26 26 4) (-26 -26 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2928" + "plane" "(-32 -26 -4) (-26 -26 -4) (-26 26 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2927" + "plane" "(-32 26 4) (-32 -26 4) (-32 -26 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2926" + "plane" "(-26 26 -4) (-26 -26 -4) (-26 -26 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2925" + "plane" "(-26 26 4) (-32 26 4) (-32 26 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2924" + "plane" "(-26 -26 -4) (-32 -26 -4) (-32 -26 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2941" + side + { + "id" "2935" + "plane" "(-32 32 4) (32 32 4) (32 26 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2934" + "plane" "(-32 26 -4) (32 26 -4) (32 32 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2933" + "plane" "(-32 32 4) (-32 26 4) (-32 26 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2932" + "plane" "(32 32 -4) (32 26 -4) (32 26 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2931" + "plane" "(32 32 4) (-32 32 4) (-32 32 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2930" + "plane" "(32 26 -4) (-32 26 -4) (-32 26 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2937" + side + { + "id" "2941" + "plane" "(26 26 4) (32 26 4) (32 -26 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2940" + "plane" "(26 -26 -4) (32 -26 -4) (32 26 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2939" + "plane" "(26 26 4) (26 -26 4) (26 -26 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2938" + "plane" "(32 26 -4) (32 -26 -4) (32 -26 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2937" + "plane" "(32 26 4) (26 26 4) (26 26 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2936" + "plane" "(32 -26 -4) (26 -26 -4) (26 -26 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2940" + side + { + "id" "2947" + "plane" "(-32 -26 4) (32 -26 4) (32 -32 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2946" + "plane" "(-32 -32 -4) (32 -32 -4) (32 -26 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2945" + "plane" "(-32 -26 4) (-32 -32 4) (-32 -32 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2944" + "plane" "(32 -26 -4) (32 -32 -4) (32 -32 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2943" + "plane" "(32 -26 4) (-32 -26 4) (-32 -26 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2942" + "plane" "(32 -32 -4) (-32 -32 -4) (-32 -32 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "23" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "2596" + "classname" "func_detail" + solid + { + "id" "2597" + side + { + "id" "2595" + "plane" "(76 0 3) (68 32 3) (96 32 3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2594" + "plane" "(96 0 -3) (96 32 -3) (68 32 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2593" + "plane" "(96 0 3) (96 32 3) (96 32 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -8] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2592" + "plane" "(68 32 3) (76 0 3) (76 0 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 8] 0.25" + "vaxis" "[0.242536 -0.970142 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2591" + "plane" "(96 32 3) (68 32 3) (68 32 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 8] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2590" + "plane" "(76 0 3) (96 0 3) (96 0 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -8] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2598" + side + { + "id" "2602" + "plane" "(54 54 3) (74 74 3) (96 59 3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2601" + "plane" "(68 32 -3) (96 32 -3) (96 59 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2600" + "plane" "(54 54 3) (68 32 3) (68 32 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 8] 0.25" + "vaxis" "[0.624695 -0.780869 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2599" + "plane" "(74 74 3) (54 54 3) (54 54 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 8] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2598" + "plane" "(68 32 3) (96 32 3) (96 32 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -8] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2597" + "plane" "(96 59 3) (74 74 3) (74 74 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 8] 0.25" + "vaxis" "[-0.707107 0.707107 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2596" + "plane" "(96 32 3) (96 59 3) (96 59 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -8] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2599" + side + { + "id" "2608" + "plane" "(0 96 3) (32 96 3) (32 68 3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2607" + "plane" "(0 76 -3) (32 68 -3) (32 96 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2606" + "plane" "(32 96 3) (0 96 3) (0 96 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 8] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2605" + "plane" "(0 76 3) (32 68 3) (32 68 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -8] 0.25" + "vaxis" "[-0.970142 0.242536 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2604" + "plane" "(32 68 3) (32 96 3) (32 96 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -8] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2603" + "plane" "(0 96 3) (0 76 3) (0 76 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 8] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2600" + side + { + "id" "2615" + "plane" "(74 74 3) (54 54 3) (32 68 3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2614" + "plane" "(59 96 -3) (32 96 -3) (32 68 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2613" + "plane" "(74 74 3) (59 96 3) (59 96 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 8] 0.25" + "vaxis" "[-0.624695 0.780869 0 48.0389] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2612" + "plane" "(54 54 3) (74 74 3) (74 74 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 8] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2611" + "plane" "(59 96 3) (32 96 3) (32 96 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -8] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2610" + "plane" "(32 68 3) (54 54 3) (54 54 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 8] 0.25" + "vaxis" "[0.707107 -0.707107 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2609" + "plane" "(32 96 3) (32 68 3) (32 68 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -8] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2601" + side + { + "id" "2621" + "plane" "(52 128 3) (59 96 3) (32 96 3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2620" + "plane" "(59 96 -3) (52 128 -3) (32 128 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2619" + "plane" "(32 128 3) (32 96 3) (32 96 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -8] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2618" + "plane" "(59 96 3) (52 128 3) (52 128 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 8] 0.25" + "vaxis" "[-0.242536 0.970142 0 11.4658] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2617" + "plane" "(32 96 3) (59 96 3) (59 96 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 8] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2616" + "plane" "(52 128 3) (32 128 3) (32 128 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -8] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2602" + side + { + "id" "2627" + "plane" "(96 59 3) (128 52 3) (128 32 3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2626" + "plane" "(128 52 -3) (96 59 -3) (96 32 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2625" + "plane" "(96 32 3) (128 32 3) (128 32 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 8] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2624" + "plane" "(128 52 3) (96 59 3) (96 59 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -8] 0.25" + "vaxis" "[0.970142 -0.242536 0 11.4657] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2623" + "plane" "(96 59 3) (96 32 3) (96 32 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -8] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2622" + "plane" "(128 32 3) (128 52 3) (128 52 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 8] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "17" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 3000]" + } +} +entity +{ + "id" "2603" + "classname" "bee2_collision_volume" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "2604" + side + { + "id" "2633" + "plane" "(0 96 4) (32 96 4) (36 63 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2632" + "plane" "(0 72 -4) (36 63 -4) (32 96 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2631" + "plane" "(0 96 -4) (0 96 4) (0 72 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2630" + "plane" "(36 63 -4) (36 63 4) (32 96 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2629" + "plane" "(32 96 -4) (32 96 4) (0 96 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2628" + "plane" "(0 72 -4) (0 72 4) (36 63 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 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" "2605" + side + { + "id" "2639" + "plane" "(32 128 4) (56 128 4) (65 92 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2638" + "plane" "(32 96 -4) (65 92 -4) (56 128 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2637" + "plane" "(32 128 -4) (32 128 4) (32 96 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2636" + "plane" "(65 92 -4) (65 92 4) (56 128 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2635" + "plane" "(56 128 -4) (56 128 4) (32 128 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2634" + "plane" "(32 96 -4) (32 96 4) (65 92 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2606" + side + { + "id" "2645" + "plane" "(92 65 4) (128 56 4) (128 32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2644" + "plane" "(96 32 -4) (128 32 -4) (128 56 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2643" + "plane" "(92 65 -4) (92 65 4) (96 32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2642" + "plane" "(128 32 -4) (128 32 4) (128 56 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2641" + "plane" "(128 56 -4) (128 56 4) (92 65 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2640" + "plane" "(96 32 -4) (96 32 4) (128 32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 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" "2607" + side + { + "id" "2651" + "plane" "(63 36 4) (96 32 4) (96 0 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2650" + "plane" "(72 0 -4) (96 0 -4) (96 32 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2649" + "plane" "(63 36 -4) (63 36 4) (72 0 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2648" + "plane" "(96 0 -4) (96 0 4) (96 32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2647" + "plane" "(96 32 -4) (96 32 4) (63 36 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2646" + "plane" "(72 0 -4) (72 0 4) (96 0 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2608" + side + { + "id" "2659" + "plane" "(32 96 4) (65 92 4) (92 65 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2658" + "plane" "(36 63 -4) (63 36 -4) (96 32 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2657" + "plane" "(32 96 -4) (32 96 4) (36 63 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2656" + "plane" "(96 32 -4) (96 32 4) (92 65 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2655" + "plane" "(65 92 -4) (65 92 4) (32 96 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2654" + "plane" "(63 36 -4) (63 36 4) (96 32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2653" + "plane" "(92 65 -4) (92 65 4) (65 92 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2652" + "plane" "(36 63 -4) (36 63 4) (63 36 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 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" + } + } + editor + { + "color" "220 30 220" + "visgroupid" "17" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "2713" + "classname" "func_detail" + solid + { + "id" "2714" + side + { + "id" "2718" + "plane" "(28 70 3) (28 96 3) (64 96 3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2717" + "plane" "(54 54 -3) (64 64 -3) (64 96 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2716" + "plane" "(28 70 3) (54 54 3) (54 54 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -4] 0.25" + "vaxis" "[-0.780869 0.624695 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2715" + "plane" "(54 54 3) (64 64 3) (64 64 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2714" + "plane" "(28 96 3) (28 70 3) (28 70 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2713" + "plane" "(64 64 3) (64 96 3) (64 96 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 4] 0.25" + "vaxis" "[-0.707107 0.707107 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2712" + "plane" "(64 96 3) (28 96 3) (28 96 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 4] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2715" + side + { + "id" "2725" + "plane" "(54 54 3) (64 64 3) (96 64 3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2724" + "plane" "(54 54 -3) (70 28 -3) (96 28 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2723" + "plane" "(54 54 3) (70 28 3) (70 28 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 4] 0.25" + "vaxis" "[0.624695 -0.780869 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2722" + "plane" "(64 64 3) (54 54 3) (54 54 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 4] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2721" + "plane" "(70 28 3) (96 28 3) (96 28 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -4] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2720" + "plane" "(96 64 3) (64 64 3) (64 64 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 4] 0.25" + "vaxis" "[-0.707107 0.707107 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2719" + "plane" "(96 28 3) (96 64 3) (96 64 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2716" + side + { + "id" "2731" + "plane" "(0 96 3) (28 96 3) (28 70 3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2730" + "plane" "(0 76 -3) (28 70 -3) (28 96 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2729" + "plane" "(28 96 3) (0 96 3) (0 96 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 4] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2728" + "plane" "(0 76 3) (28 70 3) (28 70 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -4] 0.25" + "vaxis" "[-0.970142 0.242536 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2727" + "plane" "(28 70 3) (28 96 3) (28 96 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2726" + "plane" "(0 96 3) (0 76 3) (0 76 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2717" + side + { + "id" "2737" + "plane" "(76 0 3) (70 28 3) (96 28 3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2736" + "plane" "(96 0 -3) (96 28 -3) (70 28 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2735" + "plane" "(96 0 3) (96 28 3) (96 28 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2734" + "plane" "(70 28 3) (76 0 3) (76 0 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 4] 0.25" + "vaxis" "[0.242536 -0.970142 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2733" + "plane" "(96 28 3) (70 28 3) (70 28 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 4] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2732" + "plane" "(76 0 3) (96 0 3) (96 0 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -4] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "18" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 3000]" + } +} +entity +{ + "id" "2718" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grate" "0" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "2719" + side + { + "id" "2743" + "plane" "(96 36 4) (96 0 4) (72 0 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2742" + "plane" "(96 0 -4) (96 36 -4) (62 36 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2741" + "plane" "(62 36 4) (72 0 4) (72 0 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2740" + "plane" "(96 0 4) (96 36 4) (96 36 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2739" + "plane" "(96 36 4) (62 36 4) (62 36 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2738" + "plane" "(72 0 4) (96 0 4) (96 0 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2720" + side + { + "id" "2750" + "plane" "(64 64 4) (96 64 4) (96 36 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2749" + "plane" "(96 36 -4) (96 64 -4) (64 64 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2748" + "plane" "(49 49 4) (62 36 4) (62 36 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2747" + "plane" "(96 36 4) (96 64 4) (96 64 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2746" + "plane" "(96 64 4) (64 64 4) (64 64 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2745" + "plane" "(62 36 4) (96 36 4) (96 36 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2744" + "plane" "(64 64 4) (49 49 4) (49 49 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 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" "2721" + side + { + "id" "2756" + "plane" "(36 96 4) (36 62 4) (0 72 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2755" + "plane" "(36 62 -4) (36 96 -4) (0 96 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2754" + "plane" "(0 96 4) (0 72 4) (0 72 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2753" + "plane" "(36 62 4) (36 96 4) (36 96 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2752" + "plane" "(36 96 4) (0 96 4) (0 96 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2751" + "plane" "(0 72 4) (36 62 4) (36 62 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 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" "2722" + side + { + "id" "2763" + "plane" "(64 96 4) (64 64 4) (49 49 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2762" + "plane" "(49 49 -4) (64 64 -4) (64 96 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2761" + "plane" "(36 96 4) (36 62 4) (36 62 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2760" + "plane" "(64 64 4) (64 96 4) (64 96 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2759" + "plane" "(64 96 4) (36 96 4) (36 96 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2758" + "plane" "(36 62 4) (49 49 4) (49 49 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2757" + "plane" "(49 49 4) (64 64 4) (64 64 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 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" + } + } + editor + { + "color" "220 30 220" + "visgroupid" "18" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "2800" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grate" "0" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "2801" + side + { + "id" "2813" + "plane" "(72 0 4) (62 36 4) (96 36 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2812" + "plane" "(62 36 -4) (72 0 -4) (96 0 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2811" + "plane" "(72 0 -4) (62 36 -4) (62 36 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2810" + "plane" "(96 36 -4) (96 0 -4) (96 0 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2809" + "plane" "(62 36 -4) (96 36 -4) (96 36 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2808" + "plane" "(96 0 -4) (72 0 -4) (72 0 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2802" + side + { + "id" "2820" + "plane" "(62 36 4) (36 62 4) (36 96 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2819" + "plane" "(36 62 -4) (62 36 -4) (96 36 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2818" + "plane" "(62 36 -4) (36 62 -4) (36 62 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2817" + "plane" "(96 96 -4) (96 36 -4) (96 36 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2816" + "plane" "(36 96 -4) (96 96 -4) (96 96 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2815" + "plane" "(96 36 -4) (62 36 -4) (62 36 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2814" + "plane" "(36 62 -4) (36 96 -4) (36 96 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 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" "2803" + side + { + "id" "2826" + "plane" "(0 72 4) (0 96 4) (36 96 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2825" + "plane" "(0 96 -4) (0 72 -4) (36 62 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2824" + "plane" "(0 72 -4) (0 96 -4) (0 96 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2823" + "plane" "(36 96 -4) (36 62 -4) (36 62 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2822" + "plane" "(0 96 -4) (36 96 -4) (36 96 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2821" + "plane" "(36 62 -4) (0 72 -4) (0 72 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 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" + } + } + editor + { + "color" "220 30 220" + "visgroupid" "21" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "2804" + "classname" "func_detail" + solid + { + "id" "2805" + side + { + "id" "2832" + "plane" "(28 70 3) (28 96 3) (54 96 3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2831" + "plane" "(28 70 -3) (54 54 -3) (54 96 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2830" + "plane" "(28 70 -3) (28 70 3) (54 54 3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -4] 0.25" + "vaxis" "[-0.780869 0.624695 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2829" + "plane" "(54 54 -3) (54 54 3) (54 96 3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2828" + "plane" "(28 96 -3) (28 96 3) (28 70 3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2827" + "plane" "(54 96 -3) (54 96 3) (28 96 3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 4] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2806" + side + { + "id" "2839" + "plane" "(70 28 3) (54 54 3) (54 96 3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2838" + "plane" "(54 96 -3) (54 54 -3) (70 28 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2837" + "plane" "(54 54 -3) (54 54 3) (70 28 3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 4] 0.25" + "vaxis" "[0.624695 -0.780869 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2836" + "plane" "(96 96 -3) (96 96 3) (54 96 3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 4] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2835" + "plane" "(70 28 -3) (70 28 3) (96 28 3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -4] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2834" + "plane" "(96 28 -3) (96 28 3) (96 96 3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2833" + "plane" "(54 96 -3) (54 96 3) (54 54 3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2807" + side + { + "id" "2845" + "plane" "(0 76 3) (0 96 3) (28 96 3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2844" + "plane" "(0 96 -3) (0 76 -3) (28 70 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2843" + "plane" "(28 96 -3) (28 96 3) (0 96 3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 4] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2842" + "plane" "(0 76 -3) (0 76 3) (28 70 3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -4] 0.25" + "vaxis" "[-0.970142 0.242536 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2841" + "plane" "(28 70 -3) (28 70 3) (28 96 3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2840" + "plane" "(0 96 -3) (0 96 3) (0 76 3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2808" + side + { + "id" "2851" + "plane" "(96 0 3) (76 0 3) (70 28 3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2850" + "plane" "(76 0 -3) (96 0 -3) (96 28 -3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2849" + "plane" "(96 0 -3) (96 0 3) (96 28 3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2848" + "plane" "(70 28 -3) (70 28 3) (76 0 3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 4] 0.25" + "vaxis" "[0.242536 -0.970142 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2847" + "plane" "(96 28 -3) (96 28 3) (70 28 3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 4] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2846" + "plane" "(76 0 -3) (76 0 3) (96 0 3)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -4] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "21" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 3000]" + } +} +entity +{ + "id" "2221" + "classname" "bee2_collision_volume" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grating" "0" + "coll_oob" "0" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "2270" + side + { + "id" "2270" + "plane" "(-17 -17 4) (-17 -8 4) (-8 -17 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2269" + "plane" "(-17 -8 0) (-17 -17 0) (-8 -17 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2268" + "plane" "(-17 -17 0) (-17 -8 0) (-17 -8 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2267" + "plane" "(-8 -17 0) (-17 -17 0) (-17 -17 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2266" + "plane" "(-17 -8 0) (-8 -17 0) (-8 -17 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -8] 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" "2279" + side + { + "id" "2280" + "plane" "(-17 8 4) (-17 17 4) (-8 17 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2279" + "plane" "(-17 17 0) (-17 8 0) (-8 17 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2278" + "plane" "(-17 8 0) (-17 17 0) (-17 17 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2277" + "plane" "(-17 17 0) (-8 17 0) (-8 17 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2276" + "plane" "(-8 17 0) (-17 8 0) (-17 8 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 8] 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" "2258" + side + { + "id" "2259" + "plane" "(8 17 4) (17 17 4) (17 8 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2258" + "plane" "(8 17 0) (17 8 0) (17 17 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2257" + "plane" "(17 17 0) (17 8 0) (17 8 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2256" + "plane" "(8 17 0) (17 17 0) (17 17 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2255" + "plane" "(17 8 0) (8 17 0) (8 17 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 8] 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" "2278" + side + { + "id" "2275" + "plane" "(8 -17 4) (17 -8 4) (17 -17 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2274" + "plane" "(8 -17 0) (17 -17 0) (17 -8 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2273" + "plane" "(17 -8 0) (17 -17 0) (17 -17 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2272" + "plane" "(17 -17 0) (8 -17 0) (8 -17 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2271" + "plane" "(8 -17 0) (17 -8 0) (17 -8 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -8] 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" + } + } + editor + { + "color" "220 30 220" + "visgroupid" "7" + "visgroupshown" "1" + "visgroupautoshown" "1" + "comments" "Contents set by the compiler." + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2457" + "classname" "bee2_collision_volume" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "2458" + side + { + "id" "2352" + "plane" "(68 0 4) (60 32 4) (96 32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2351" + "plane" "(60 32 -4) (68 0 -4) (96 0 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2350" + "plane" "(68 0 -4) (60 32 -4) (60 32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2349" + "plane" "(96 32 -4) (96 0 -4) (96 0 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2348" + "plane" "(60 32 -4) (96 32 -4) (96 32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2347" + "plane" "(96 0 -4) (68 0 -4) (68 0 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2459" + side + { + "id" "2359" + "plane" "(60 32 4) (32 60 4) (32 96 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2358" + "plane" "(32 60 -4) (60 32 -4) (96 32 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2357" + "plane" "(60 32 -4) (32 60 -4) (32 60 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2356" + "plane" "(96 96 -4) (96 32 -4) (96 32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2355" + "plane" "(32 96 -4) (96 96 -4) (96 96 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2354" + "plane" "(96 32 -4) (60 32 -4) (60 32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2353" + "plane" "(32 60 -4) (32 96 -4) (32 96 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 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" "2460" + side + { + "id" "2365" + "plane" "(0 68 4) (0 96 4) (32 96 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2364" + "plane" "(0 96 -4) (0 68 -4) (32 60 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2363" + "plane" "(0 68 -4) (0 96 -4) (0 96 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2362" + "plane" "(32 96 -4) (32 60 -4) (32 60 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2361" + "plane" "(0 96 -4) (32 96 -4) (32 96 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2360" + "plane" "(32 60 -4) (0 68 -4) (0 68 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 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" + } + } + editor + { + "color" "220 30 220" + "visgroupid" "13" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "2526" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_test_chamber/frame_hole_large.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "origin" "0 0 -4" + editor + { + "color" "255 255 0" + "visgroupid" "19" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2530" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_test_chamber/frame_hole_large.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "origin" "128 128 -4" + editor + { + "color" "255 255 0" + "visgroupid" "19" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2071" + "classname" "prop_static" + "angles" "0 270 -90" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/bee2/props_clean/barrier_hole_large.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "origin" "0 0 0" + editor + { + "color" "255 255 0" + "visgroupid" "20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2180" + "classname" "prop_static" + "angles" "0 270 -90" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/bee2/props_clean/barrier_hole_large.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "origin" "128 128 0" + editor + { + "color" "255 255 0" + "visgroupid" "20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2045" + "classname" "prop_static" + "angles" "0 270 -90" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/bee2/props_clean/barrier_hole_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "origin" "0 0 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1938" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grate" "0" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "1922" + side + { + "id" "2008" + "plane" "(-32 17 4) (-32 32 4) (32 32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2007" + "plane" "(-32 32 -4) (-32 17 -4) (32 17 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2006" + "plane" "(-32 17 -4) (-32 32 -4) (-32 32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2005" + "plane" "(32 32 -4) (32 17 -4) (32 17 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2004" + "plane" "(-32 32 -4) (32 32 -4) (32 32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2003" + "plane" "(32 17 -4) (-32 17 -4) (-32 17 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 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" "1924" + side + { + "id" "2038" + "plane" "(17 -17 4) (17 17 4) (32 17 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2037" + "plane" "(17 17 -4) (17 -17 -4) (32 -17 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2036" + "plane" "(17 -17 -4) (17 17 -4) (17 17 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 -4] 0.25" + "vaxis" "[0 0 -1 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2035" + "plane" "(32 17 -4) (32 -17 -4) (32 -17 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2034" + "plane" "(17 17 -4) (32 17 -4) (32 17 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2033" + "plane" "(32 -17 -4) (17 -17 -4) (17 -17 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1926" + side + { + "id" "2050" + "plane" "(-32 -17 4) (-32 17 4) (-17 17 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 40] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2049" + "plane" "(-32 17 -4) (-32 -17 -4) (-17 -17 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -40] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2048" + "plane" "(-32 -17 -4) (-32 17 -4) (-32 17 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 -4] 0.25" + "vaxis" "[0 0 -1 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2047" + "plane" "(-17 17 -4) (-17 -17 -4) (-17 -17 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2046" + "plane" "(-32 17 -4) (-17 17 -4) (-17 17 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -40] 0.25" + "vaxis" "[0 0 -1 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2045" + "plane" "(-17 -17 -4) (-32 -17 -4) (-32 -17 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 40] 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" "1923" + side + { + "id" "2026" + "plane" "(-32 -32 4) (-32 -17 4) (32 -17 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2025" + "plane" "(-32 -17 -4) (-32 -32 -4) (32 -32 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2024" + "plane" "(-32 -32 -4) (-32 -17 -4) (-32 -17 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2023" + "plane" "(32 -17 -4) (32 -32 -4) (32 -32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2022" + "plane" "(-32 -17 -4) (32 -17 -4) (32 -17 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2021" + "plane" "(32 -32 -4) (-32 -32 -4) (-32 -32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 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" + } + } + editor + { + "color" "220 30 220" + "visgroupid" "7" + "visgroupshown" "1" + "visgroupautoshown" "1" + "comments" "Contents set by the compiler." + "logicalpos" "[0 4000]" + } +} +entity +{ + "id" "1986" + "classname" "bee2_collision_volume" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "1975" + side + { + "id" "2086" + "plane" "(68 0 4) (60 32 4) (96 32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2085" + "plane" "(60 32 -4) (68 0 -4) (96 0 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2084" + "plane" "(68 0 -4) (60 32 -4) (60 32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2083" + "plane" "(96 32 -4) (96 0 -4) (96 0 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2082" + "plane" "(60 32 -4) (96 32 -4) (96 32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2081" + "plane" "(96 0 -4) (68 0 -4) (68 0 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2450" + side + { + "id" "2320" + "plane" "(60 32 4) (48 48 4) (64 64 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2319" + "plane" "(48 48 -4) (60 32 -4) (96 32 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2318" + "plane" "(60 32 -4) (48 48 -4) (48 48 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2317" + "plane" "(96 64 -4) (96 32 -4) (96 32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2316" + "plane" "(64 64 -4) (96 64 -4) (96 64 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2315" + "plane" "(96 32 -4) (60 32 -4) (60 32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2314" + "plane" "(48 48 -4) (64 64 -4) (64 64 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 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" "1980" + side + { + "id" "2110" + "plane" "(0 68 4) (0 96 4) (32 96 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2109" + "plane" "(0 96 -4) (0 68 -4) (32 60 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2108" + "plane" "(0 68 -4) (0 96 -4) (0 96 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2107" + "plane" "(32 96 -4) (32 60 -4) (32 60 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2106" + "plane" "(0 96 -4) (32 96 -4) (32 96 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2105" + "plane" "(32 60 -4) (0 68 -4) (0 68 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 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" "2422" + side + { + "id" "2313" + "plane" "(32 60 4) (32 96 4) (64 96 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2312" + "plane" "(32 96 -4) (32 60 -4) (48 48 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2311" + "plane" "(32 60 -4) (32 96 -4) (32 96 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2310" + "plane" "(64 96 -4) (64 64 -4) (64 64 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2309" + "plane" "(32 96 -4) (64 96 -4) (64 96 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2308" + "plane" "(48 48 -4) (32 60 -4) (32 60 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2307" + "plane" "(64 64 -4) (48 48 -4) (48 48 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 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" + } + } + editor + { + "color" "220 30 220" + "visgroupid" "12" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "2033" + "classname" "bee2_collision_volume" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "2020" + side + { + "id" "2206" + "plane" "(0 68 4) (0 96 4) (32 96 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2205" + "plane" "(0 96 -4) (0 68 -4) (32 60 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2204" + "plane" "(0 68 -4) (0 96 -4) (0 96 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2203" + "plane" "(32 96 -4) (32 60 -4) (32 60 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2202" + "plane" "(0 96 -4) (32 96 -4) (32 96 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2201" + "plane" "(32 60 -4) (0 68 -4) (0 68 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 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" "2021" + side + { + "id" "2212" + "plane" "(32 96 4) (32 128 4) (60 128 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2211" + "plane" "(32 128 -4) (32 96 -4) (68 96 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2210" + "plane" "(32 96 -4) (32 128 -4) (32 128 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2209" + "plane" "(60 128 -4) (68 96 -4) (68 96 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2208" + "plane" "(32 128 -4) (60 128 -4) (60 128 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2207" + "plane" "(68 96 -4) (32 96 -4) (32 96 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2023" + side + { + "id" "2230" + "plane" "(96 32 4) (96 68 4) (128 60 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2229" + "plane" "(96 68 -4) (96 32 -4) (128 32 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2228" + "plane" "(96 32 -4) (96 68 -4) (96 68 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2227" + "plane" "(128 60 -4) (128 32 -4) (128 32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2226" + "plane" "(96 68 -4) (128 60 -4) (128 60 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2225" + "plane" "(128 32 -4) (96 32 -4) (96 32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 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" "2022" + side + { + "id" "2224" + "plane" "(68 0 4) (60 32 4) (96 32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2223" + "plane" "(60 32 -4) (68 0 -4) (96 0 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2222" + "plane" "(68 0 -4) (60 32 -4) (60 32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2221" + "plane" "(96 32 -4) (96 0 -4) (96 0 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2220" + "plane" "(60 32 -4) (96 32 -4) (96 32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2219" + "plane" "(96 0 -4) (68 0 -4) (68 0 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2312" + side + { + "id" "2301" + "plane" "(32 60 4) (32 96 4) (68 96 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2300" + "plane" "(32 96 -4) (32 60 -4) (60 32 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2299" + "plane" "(32 60 -4) (32 96 -4) (32 96 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2298" + "plane" "(96 68 -4) (96 32 -4) (96 32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2297" + "plane" "(32 96 -4) (68 96 -4) (68 96 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2296" + "plane" "(96 32 -4) (60 32 -4) (60 32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2295" + "plane" "(68 96 -4) (96 68 -4) (96 68 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2294" + "plane" "(60 32 -4) (32 60 -4) (32 60 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 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" + } + } + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "1729" + "classname" "func_detail" + solid + { + "id" "1852" + side + { + "id" "1885" + "plane" "(64 64 4) (49 49 4) (28 64 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1884" + "plane" "(28 96 -4) (28 64 -4) (49 49 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1883" + "plane" "(49 49 -4) (28 64 -4) (28 64 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-0.780869 0.624695 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1882" + "plane" "(64 64 -4) (49 49 -4) (49 49 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1881" + "plane" "(28 96 4) (28 64 4) (28 64 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1880" + "plane" "(64 64 4) (64 96 4) (64 96 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-0.707107 0.707107 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1879" + "plane" "(64 96 4) (28 96 4) (28 96 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1838" + side + { + "id" "1878" + "plane" "(96 28 4) (64 28 4) (49 49 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1877" + "plane" "(96 64 -4) (64 64 -4) (49 49 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1876" + "plane" "(49 49 4) (64 28 4) (64 28 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0.624695 -0.780869 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1875" + "plane" "(64 64 4) (49 49 4) (49 49 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1874" + "plane" "(96 28 -4) (64 28 -4) (64 28 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1873" + "plane" "(96 64 4) (64 64 4) (64 64 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-0.707107 0.707107 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1872" + "plane" "(96 28 4) (96 64 4) (96 64 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1732" + side + { + "id" "1811" + "plane" "(28 64 4) (-0 70 4) (-0 96 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1810" + "plane" "(28 96 -4) (-0 96 -4) (-0 70 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1809" + "plane" "(28 96 4) (-0 96 4) (-0 96 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1808" + "plane" "(28 64 -4) (-0 70 -4) (-0 70 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-0.970142 0.242536 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1807" + "plane" "(28 64 4) (28 96 4) (28 96 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1806" + "plane" "(-0 96 4) (-0 70 4) (-0 70 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1733" + side + { + "id" "1817" + "plane" "(96 28 4) (96 0 4) (70 0 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1816" + "plane" "(64 28 -4) (70 0 -4) (96 0 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1815" + "plane" "(96 0 4) (96 28 4) (96 28 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1814" + "plane" "(64 28 4) (70 0 4) (70 0 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0.242536 -0.970142 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1813" + "plane" "(96 28 4) (64 28 4) (64 28 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1812" + "plane" "(96 0 -4) (70 0 -4) (70 0 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "12" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 3000]" + } +} +entity +{ + "id" "1739" + "classname" "func_detail" + solid + { + "id" "1740" + side + { + "id" "1847" + "plane" "(28 64 4) (28 96 4) (49 96 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1846" + "plane" "(28 64 -4) (49 49 -4) (49 96 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1845" + "plane" "(28 64 -4) (28 64 4) (49 49 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-0.780869 0.624695 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1844" + "plane" "(49 49 -4) (49 49 4) (49 96 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1843" + "plane" "(28 96 -4) (28 96 4) (28 64 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1842" + "plane" "(49 96 -4) (49 96 4) (28 96 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2492" + side + { + "id" "2379" + "plane" "(49 49 4) (49 96 4) (96 96 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2378" + "plane" "(48.9979 48.9975 -4) (64 28 -4) (96 28 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2377" + "plane" "(49 49 4) (64 28 4) (64 28 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0.624695 -0.780869 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2376" + "plane" "(96 96 4) (49 96 4) (49 96 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2375" + "plane" "(64 28 4) (96 28 4) (96 28 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2374" + "plane" "(96 28 4) (96 96 4) (96 96 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2373" + "plane" "(49 96 4) (49 49 4) (48.9979 48.9975 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1742" + side + { + "id" "1859" + "plane" "(0 70 4) (0 96 4) (28 96 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1858" + "plane" "(0 96 -4) (0 70 -4) (28 64 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1857" + "plane" "(28 96 -4) (28 96 4) (0 96 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1856" + "plane" "(0 70 -4) (0 70 4) (28 64 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-0.970142 0.242536 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1855" + "plane" "(28 64 -4) (28 64 4) (28 96 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1854" + "plane" "(0 96 -4) (0 96 4) (0 70 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1743" + side + { + "id" "1865" + "plane" "(96 0 4) (70 0 4) (64 28 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1864" + "plane" "(70 0 -4) (96 0 -4) (96 28 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1863" + "plane" "(96 0 -4) (96 0 4) (96 28 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1862" + "plane" "(64 28 -4) (64 28 4) (70 0 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0.242536 -0.970142 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1861" + "plane" "(96 28 -4) (96 28 4) (64 28 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1860" + "plane" "(70 0 -4) (70 0 4) (96 0 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "13" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 3000]" + } +} +entity +{ + "id" "250" + "classname" "func_detail" + solid + { + "id" "226" + side + { + "id" "405" + "plane" "(-14 32 4) (-0 32 4) (-0 20 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "404" + "plane" "(-0 32 -4) (-14 32 -4) (-14 14 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "403" + "plane" "(-0 32 4) (-14 32 4) (-14 32 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "402" + "plane" "(-0 20 -4) (-14 14 -4) (-14 14 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-0.868243 -0.496139 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "401" + "plane" "(-0 20 4) (-0 32 4) (-0 32 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "400" + "plane" "(-14 32 4) (-14 14 4) (-14 14 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "227" + side + { + "id" "411" + "plane" "(14 14 4) (-0 20 4) (-0 32 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "410" + "plane" "(14 32 -4) (-0 32 -4) (-0 20 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "409" + "plane" "(14 32 4) (-0 32 4) (-0 32 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "408" + "plane" "(14 14 -4) (-0 20 -4) (-0 20 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-0.868243 0.496139 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "407" + "plane" "(14 14 4) (14 32 4) (14 32 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "406" + "plane" "(-0 32 4) (-0 20 4) (-0 20 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "228" + side + { + "id" "417" + "plane" "(14 -32 4) (-0 -32 4) (-0 -20 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "416" + "plane" "(14 -14 -4) (-0 -20 -4) (-0 -32 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "415" + "plane" "(14 -32 -4) (-0 -32 -4) (-0 -32 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "414" + "plane" "(14 -14 4) (-0 -20 4) (-0 -20 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-0.868243 -0.496139 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "413" + "plane" "(-0 -20 4) (-0 -32 4) (-0 -32 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "412" + "plane" "(14 -32 4) (14 -14 4) (14 -14 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "229" + side + { + "id" "423" + "plane" "(-0 -32 4) (-14 -32 4) (-14 -14 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "422" + "plane" "(-14 -32 -4) (-0 -32 -4) (-0 -20 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "421" + "plane" "(-0 -32 -4) (-14 -32 -4) (-14 -32 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "420" + "plane" "(-0 -20 4) (-14 -14 4) (-14 -14 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-0.868243 0.496139 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "419" + "plane" "(-14 -14 4) (-14 -32 4) (-14 -32 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "418" + "plane" "(-0 -32 4) (-0 -20 4) (-0 -20 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "185" + side + { + "id" "429" + "plane" "(-32 32 4) (-32 14 4) (-32 14 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "428" + "plane" "(-14 14 4) (-14 32 4) (-14 32 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "427" + "plane" "(-32 14 4) (-32 32 4) (-14 32 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "426" + "plane" "(-32 32 -4) (-32 14 -4) (-14 14 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "425" + "plane" "(-32 14 -4) (-32 14 4) (-14 14 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "424" + "plane" "(-32 32 4) (-32 32 -4) (-14 32 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "223" + side + { + "id" "435" + "plane" "(-32 0 4) (-32 14 4) (-14 14 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "434" + "plane" "(-32 14 -4) (-32 0 -4) (-20 0 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "433" + "plane" "(-32 14 4) (-32 0 4) (-32 0 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "432" + "plane" "(-20 0 4) (-14 14 4) (-14 14 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-0.496139 -0.868243 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "431" + "plane" "(-14 14 4) (-32 14 4) (-32 14 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "430" + "plane" "(-20 0 -4) (-32 0 -4) (-32 0 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "222" + side + { + "id" "441" + "plane" "(-32 -14 4) (-32 0 4) (-20 0 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "440" + "plane" "(-32 0 -4) (-32 -14 -4) (-14 -14 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "439" + "plane" "(-32 0 4) (-32 -14 4) (-32 -14 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "438" + "plane" "(-14 -14 4) (-20 0 4) (-20 0 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0.496139 -0.868243 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "437" + "plane" "(-20 0 4) (-32 0 4) (-32 0 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "436" + "plane" "(-14 -14 -4) (-32 -14 -4) (-32 -14 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "177" + side + { + "id" "447" + "plane" "(-14 -32 -4) (-32 -32 -4) (-32 -32 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "446" + "plane" "(-14 -14 4) (-32 -14 4) (-32 -14 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "445" + "plane" "(-14 -32 4) (-32 -32 4) (-32 -14 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "444" + "plane" "(-14 -14 -4) (-32 -14 -4) (-32 -32 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "443" + "plane" "(-14 -32 -4) (-14 -32 4) (-14 -14 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "442" + "plane" "(-32 -14 -4) (-32 -14 4) (-32 -32 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "161" + side + { + "id" "453" + "plane" "(32 -32 4) (32 -14 4) (32 -14 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "452" + "plane" "(14 -14 4) (14 -32 4) (14 -32 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "451" + "plane" "(14 -32 4) (14 -14 4) (32 -14 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "450" + "plane" "(14 -14 -4) (14 -32 -4) (32 -32 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "449" + "plane" "(14 -14 4) (14 -14 -4) (32 -14 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "448" + "plane" "(14 -32 -4) (14 -32 4) (32 -32 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "219" + side + { + "id" "459" + "plane" "(14 -14 4) (20 0 4) (32 0 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "458" + "plane" "(32 -14 -4) (32 0 -4) (20 0 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "457" + "plane" "(32 -14 4) (32 0 4) (32 0 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "456" + "plane" "(20 0 4) (14 -14 4) (14 -14 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-0.496139 -0.868243 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "455" + "plane" "(32 -14 -4) (14 -14 -4) (14 -14 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "454" + "plane" "(32 0 4) (20 0 4) (20 0 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "151" + side + { + "id" "465" + "plane" "(32 14 4) (32 0 4) (20 0 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "464" + "plane" "(14 14 -4) (20 0 -4) (32 0 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "463" + "plane" "(32 0 4) (32 14 4) (32 14 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "462" + "plane" "(14 14 4) (20 0 4) (20 0 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0.496139 -0.868243 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "461" + "plane" "(32 0 -4) (20 0 -4) (20 0 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "460" + "plane" "(32 14 4) (14 14 4) (14 14 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "162" + side + { + "id" "471" + "plane" "(32 32 4) (14 32 4) (14 32 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "470" + "plane" "(32 14 -4) (14 14 -4) (14 14 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "469" + "plane" "(32 14 4) (14 14 4) (14 32 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "468" + "plane" "(32 32 -4) (14 32 -4) (14 14 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "467" + "plane" "(14 32 -4) (14 32 4) (14 14 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "466" + "plane" "(32 14 -4) (32 14 4) (32 32 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "7" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -9768]" + } +} +entity +{ + "id" "522" + "classname" "func_detail" + solid + { + "id" "1668" + side + { + "id" "1684" + "plane" "(96 32 4) (96 0 4) (70 0 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1683" + "plane" "(62 32 -4) (70 0 -4) (96 0 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1682" + "plane" "(96 0 4) (96 32 4) (96 32 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1681" + "plane" "(62 32 4) (70 0 4) (70 0 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0.242536 -0.970142 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1680" + "plane" "(96 32 4) (62 32 4) (62 32 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1679" + "plane" "(96 0 -4) (70 0 -4) (70 0 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1908" + side + { + "id" "1940" + "plane" "(96 32 4) (62 32 4) (49 49 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1939" + "plane" "(79 79 -4) (49 49 -4) (62 32 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1938" + "plane" "(49 49 4) (62 32 4) (62 32 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0.624695 -0.780869 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1937" + "plane" "(79 79 4) (49 49 4) (49 49 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1936" + "plane" "(96 32 -4) (62 32 -4) (62 32 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1935" + "plane" "(96 66 4) (79 79 4) (79 79 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-0.707107 0.707107 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1934" + "plane" "(96 32 4) (96 66 4) (96 66 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1659" + side + { + "id" "1632" + "plane" "(32 62 4) (-0 70 4) (-0 96 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1631" + "plane" "(32 96 -4) (-0 96 -4) (-0 70 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1630" + "plane" "(32 96 4) (-0 96 4) (-0 96 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1629" + "plane" "(32 62 -4) (-0 70 -4) (-0 70 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-0.970142 0.242536 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1628" + "plane" "(32 62 4) (32 96 4) (32 96 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1627" + "plane" "(-0 96 4) (-0 70 4) (-0 70 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1910" + side + { + "id" "1954" + "plane" "(32 96 4) (66 96 4) (79 79 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1953" + "plane" "(49 49 -4) (79 79 -4) (66 96 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1952" + "plane" "(79 79 4) (66 96 4) (66 96 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-0.624695 0.780869 0 48.0389] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1951" + "plane" "(79 79 -4) (49 49 -4) (49 49 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1950" + "plane" "(66 96 4) (32 96 4) (32 96 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1949" + "plane" "(49 49 -4) (32 62 -4) (32 62 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0.707107 -0.707107 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1948" + "plane" "(32 96 4) (32 62 4) (32 62 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1881" + side + { + "id" "1933" + "plane" "(32 96 4) (32 128 4) (58 128 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1932" + "plane" "(32 128 -4) (32 96 -4) (66 96 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1931" + "plane" "(32 128 4) (32 96 4) (32 96 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1930" + "plane" "(66 96 4) (58 128 4) (58 128 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-0.242536 0.970142 0 -52.5342] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1929" + "plane" "(66 96 -4) (32 96 -4) (32 96 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1928" + "plane" "(58 128 4) (32 128 4) (32 128 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1880" + side + { + "id" "1927" + "plane" "(128 32 4) (96 32 4) (96 66 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1926" + "plane" "(96 32 -4) (128 32 -4) (128 58 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1925" + "plane" "(128 32 -4) (96 32 -4) (96 32 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1924" + "plane" "(128 58 4) (96 66 4) (96 66 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0.970142 -0.242536 0 11.4657] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1923" + "plane" "(96 66 4) (96 32 4) (96 32 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1922" + "plane" "(128 32 4) (128 58 4) (128 58 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 3000]" + } +} +entity +{ + "id" "824" + "classname" "bee2_template_conf" + "detail_auto_visgroup" "0" + "discard_brushes" "0" + "is_scaling" "0" + "temp_type" "default" + "template_id" "BEE2_HOLE_MODERN" + "origin" "-2.79753e-006 0 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 3500]" + } +} +entity +{ + "id" "3" + "classname" "prop_static" + "angles" "0 180 -180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_test_chamber/frame_hole_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "origin" "0 0 4.5" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/glass_hole/templates/hole_square.vmf b/packages/barrier_hole/templates/hole_slot_modern.vmf similarity index 50% rename from packages/glass_hole/templates/hole_square.vmf rename to packages/barrier_hole/templates/hole_slot_modern.vmf index 5c1986586e..ced8d451e3 100644 --- a/packages/glass_hole/templates/hole_square.vmf +++ b/packages/barrier_hole/templates/hole_slot_modern.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8973" - "mapversion" "36" + "editorbuild" "9672" + "mapversion" "55" "formatversion" "100" "prefab" "0" } @@ -10,27 +10,27 @@ visgroups { visgroup { - "name" "small" - "visgroupid" "7" - "color" "192 161 150" + "name" "peti_center" + "visgroupid" "3" + "color" "195 160 113" } visgroup { - "name" "large_diagonal" + "name" "peti_offset" "visgroupid" "8" - "color" "212 149 218" + "color" "138 163 160" } visgroup { - "name" "large_cutout" - "visgroupid" "10" - "color" "204 189 98" + "name" "testchamber_center" + "visgroupid" "12" + "color" "188 173 210" } visgroup { - "name" "large_square" - "visgroupid" "11" - "color" "139 88 169" + "name" "testchamber_offset" + "visgroupid" "13" + "color" "207 220 189" } } viewsettings @@ -44,7 +44,7 @@ viewsettings world { "id" "1" - "mapversion" "36" + "mapversion" "55" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -52,69 +52,41 @@ world "maxpropscreenwidth" "-1" "skyname" "sky_black_nofog" } -hidden -{ - entity - { - "id" "1654" - "classname" "func_instance" - "angles" "-0 -1.70755e-006 0" - "file" "instances/bee2/50s/items/barrier/glass_hole_small.vmf" - "replace01" "$start_open 0" - "targetname" "gh18" - "origin" "0 0 0" - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 0]" - } - } -} entity { - "id" "1471" - "classname" "bee2_collision_bbox" - "coll_antlines" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "0" + "id" "2898" + "classname" "func_detail" solid { - "id" "1472" + "id" "2884" side { - "id" "1744" - "plane" "(60 32 -32) (64 32 -32) (64 32 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "2901" + "plane" "(-32 -38 2) (-32 38 2) (-4 38 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1743" - "plane" "(64 12 -32) (60 12 -32) (60 12 32)" - "material" "TOOLS/TOOLSCLIP" + "id" "2900" + "plane" "(-32 38 -2) (-32 -38 -2) (-4 -38 -2)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1742" - "plane" "(60 12 -32) (60 32 -32) (60 32 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" + "id" "2899" + "plane" "(-32 -38 -2) (-32 38 -2) (-32 38 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -122,9 +94,9 @@ entity } side { - "id" "1741" - "plane" "(64 32 -32) (64 12 -32) (64 12 32)" - "material" "TOOLS/TOOLSCLIP" + "id" "2898" + "plane" "(-4 38 -2) (-4 -38 -2) (-4 -38 2)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -133,42 +105,42 @@ entity } side { - "id" "1740" - "plane" "(60 32 -32) (60 12 -32) (64 12 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "2897" + "plane" "(-32 38 -2) (-4 38 -2) (-4 38 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1739" - "plane" "(60 12 32) (60 32 32) (64 32 32)" - "material" "TOOLS/TOOLSCLIP" + "id" "2896" + "plane" "(-4 -38 -2) (-32 -38 -2) (-32 -38 2)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 30 220" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "1473" + "id" "2882" side { - "id" "1750" - "plane" "(60 -12 -32) (64 -12 -32) (64 12 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" + "id" "2907" + "plane" "(-32 -64 2) (-32 -38 2) (32 -38 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -176,9 +148,9 @@ entity } side { - "id" "1749" - "plane" "(60 12 -12) (64 12 -12) (64 -12 -12)" - "material" "TOOLS/TOOLSCLIP" + "id" "2906" + "plane" "(-32 -38 -2) (-32 -64 -2) (32 -64 -2)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -187,10 +159,10 @@ entity } side { - "id" "1748" - "plane" "(60 12 -32) (60 12 -12) (60 -12 -12)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" + "id" "2905" + "plane" "(-32 -64 -2) (-32 -38 -2) (-32 -38 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -198,9 +170,9 @@ entity } side { - "id" "1747" - "plane" "(64 -12 -32) (64 -12 -12) (64 12 -12)" - "material" "TOOLS/TOOLSCLIP" + "id" "2904" + "plane" "(32 -38 -2) (32 -64 -2) (32 -64 2)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -209,9 +181,9 @@ entity } side { - "id" "1746" - "plane" "(60 -12 -32) (60 -12 -12) (64 -12 -12)" - "material" "TOOLS/TOOLSCLIP" + "id" "2903" + "plane" "(-32 -38 -2) (32 -38 -2) (32 -38 2)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -220,10 +192,10 @@ entity } side { - "id" "1745" - "plane" "(64 12 -32) (64 12 -12) (60 12 -12)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" + "id" "2902" + "plane" "(32 -64 -2) (-32 -64 -2) (-32 -64 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -231,19 +203,19 @@ entity } editor { - "color" "220 30 220" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "1474" + "id" "2885" side { - "id" "1756" - "plane" "(60 12 32) (64 12 32) (64 -12 32)" - "material" "TOOLS/TOOLSCLIP" + "id" "2913" + "plane" "(4 -38 2) (4 38 2) (32 38 2)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -252,10 +224,10 @@ entity } side { - "id" "1755" - "plane" "(60 -12 12) (64 -12 12) (64 12 12)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" + "id" "2912" + "plane" "(4 38 -2) (4 -38 -2) (32 -38 -2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -263,10 +235,10 @@ entity } side { - "id" "1754" - "plane" "(60 12 12) (60 12 32) (60 -12 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" + "id" "2911" + "plane" "(4 -38 -2) (4 38 -2) (4 38 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -274,9 +246,9 @@ entity } side { - "id" "1753" - "plane" "(64 -12 12) (64 -12 32) (64 12 32)" - "material" "TOOLS/TOOLSCLIP" + "id" "2910" + "plane" "(32 38 -2) (32 -38 -2) (32 -38 2)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -285,10 +257,10 @@ entity } side { - "id" "1752" - "plane" "(64 12 12) (64 12 32) (60 12 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" + "id" "2909" + "plane" "(4 38 -2) (32 38 -2) (32 38 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -296,9 +268,9 @@ entity } side { - "id" "1751" - "plane" "(60 -12 12) (60 -12 32) (64 -12 32)" - "material" "TOOLS/TOOLSCLIP" + "id" "2908" + "plane" "(32 -38 -2) (4 -38 -2) (4 -38 2)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -307,42 +279,42 @@ entity } editor { - "color" "220 30 220" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "1475" + "id" "2883" side { - "id" "1762" - "plane" "(64 -32 -32) (60 -32 -32) (60 -32 32)" - "material" "TOOLS/TOOLSCLIP" + "id" "2919" + "plane" "(-32 38 2) (-32 64 2) (32 64 2)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1761" - "plane" "(60 -12 -32) (64 -12 -32) (64 -12 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "2918" + "plane" "(-32 64 -2) (-32 38 -2) (32 38 -2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1760" - "plane" "(60 -32 -32) (60 -12 -32) (60 -12 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" + "id" "2917" + "plane" "(-32 38 -2) (-32 64 -2) (-32 64 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -350,9 +322,9 @@ entity } side { - "id" "1759" - "plane" "(64 -12 -32) (64 -32 -32) (64 -32 32)" - "material" "TOOLS/TOOLSCLIP" + "id" "2916" + "plane" "(32 64 -2) (32 38 -2) (32 38 2)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -361,64 +333,55 @@ entity } side { - "id" "1758" - "plane" "(60 -32 32) (60 -12 32) (64 -12 32)" - "material" "TOOLS/TOOLSCLIP" + "id" "2915" + "plane" "(-32 64 -2) (32 64 -2) (32 64 2)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1757" - "plane" "(60 -12 -32) (60 -32 -32) (64 -32 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "2914" + "plane" "(32 38 -2) (-32 38 -2) (-32 38 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 30 220" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } editor { - "color" "220 30 220" - "visgroupid" "7" + "color" "0 180 0" + "visgroupid" "3" "visgroupshown" "1" "visgroupautoshown" "1" - "comments" "Collision type set by code." - "logicalpos" "[0 -9768]" + "logicalpos" "[0 2000]" } } entity { - "id" "1533" - "classname" "bee2_collision_bbox" - "coll_antlines" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "0" + "id" "3042" + "classname" "func_detail" solid { - "id" "1518" + "id" "3126" side { - "id" "1810" - "plane" "(60 0 72) (60 64 72) (60 64 96)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 -32] 0.25" + "id" "3189" + "plane" "(-64 38 2) (-52 38 2) (-52 -38 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -426,10 +389,10 @@ entity } side { - "id" "1809" - "plane" "(64 64 72) (64 0 72) (64 0 96)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 32] 0.25" + "id" "3188" + "plane" "(-64 -38 -2) (-52 -38 -2) (-52 38 -2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -437,64 +400,64 @@ entity } side { - "id" "1808" - "plane" "(60 64 72) (60 0 72) (64 0 72)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "id" "3187" + "plane" "(-52 38 -2) (-52 -38 -2) (-52 -38 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1807" - "plane" "(60 0 96) (60 64 96) (64 64 96)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "id" "3186" + "plane" "(-64 38 -2) (-52 38 -2) (-52 38 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1806" - "plane" "(60 64 96) (60 64 72) (64 64 72)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 32] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "id" "3185" + "plane" "(-52 -38 -2) (-64 -38 -2) (-64 -38 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1805" - "plane" "(64 0 96) (64 0 72) (60 0 72)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 -32] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "id" "3184" + "plane" "(-64 -38 -2) (-64 38 -2) (-64 38 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 30 220" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "1517" + "id" "3127" side { - "id" "1804" - "plane" "(60 72 0) (60 96 0) (60 96 64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 48] 0.25" + "id" "3195" + "plane" "(-32 -64 2) (-64 -64 2) (-64 -38 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -502,10 +465,10 @@ entity } side { - "id" "1803" - "plane" "(64 96 0) (64 72 0) (64 72 64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -48] 0.25" + "id" "3194" + "plane" "(-32 -38 -2) (-64 -38 -2) (-64 -64 -2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -513,64 +476,64 @@ entity } side { - "id" "1802" - "plane" "(60 96 0) (60 72 0) (64 72 0)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "id" "3193" + "plane" "(-64 -38 -2) (-32 -38 -2) (-32 -38 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1801" - "plane" "(60 72 64) (60 96 64) (64 96 64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "id" "3192" + "plane" "(-32 -64 -2) (-64 -64 -2) (-64 -64 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1800" - "plane" "(60 96 64) (60 96 0) (64 96 0)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "id" "3191" + "plane" "(-64 -64 -2) (-64 -38 -2) (-64 -38 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1799" - "plane" "(64 72 64) (64 72 0) (60 72 0)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 48] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "id" "3190" + "plane" "(-32 -38 -2) (-32 -64 -2) (-32 -64 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 30 220" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "1779" + "id" "3128" side { - "id" "1954" - "plane" "(60 64 40) (60 72 40) (60 72 64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 16] 0.25" + "id" "3201" + "plane" "(-32 -38 2) (-44 -38 2) (-44 38 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -578,10 +541,10 @@ entity } side { - "id" "1953" - "plane" "(64 72 40) (64 64 40) (64 64 64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -16] 0.25" + "id" "3200" + "plane" "(-32 38 -2) (-44 38 -2) (-44 -38 -2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -589,197 +552,217 @@ entity } side { - "id" "1952" - "plane" "(60 72 40) (60 64 40) (64 64 40)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "id" "3199" + "plane" "(-44 -38 -2) (-44 38 -2) (-44 38 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1951" - "plane" "(60 64 64) (60 72 64) (64 72 64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "id" "3198" + "plane" "(-44 38 -2) (-32 38 -2) (-32 38 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1950" - "plane" "(60 72 64) (60 72 40) (64 72 40)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -16] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "id" "3197" + "plane" "(-32 -38 -2) (-44 -38 -2) (-44 -38 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1949" - "plane" "(64 64 64) (64 64 40) (60 64 40)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 16] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "id" "3196" + "plane" "(-32 38 -2) (-32 -38 -2) (-32 -38 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 30 220" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "1788" + "id" "3129" side { - "id" "1966" - "plane" "(60 40 64) (60 64 64) (60 64 72)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 16] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "id" "3207" + "plane" "(-32 38 2) (-64 38 2) (-64 64 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1965" - "plane" "(64 64 64) (64 40 64) (64 40 72)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -16] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "id" "3206" + "plane" "(-32 64 -2) (-64 64 -2) (-64 38 -2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1964" - "plane" "(60 64 64) (60 40 64) (64 40 64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "id" "3205" + "plane" "(-64 64 -2) (-32 64 -2) (-32 64 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1963" - "plane" "(60 40 72) (60 64 72) (64 64 72)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "id" "3204" + "plane" "(-32 38 -2) (-64 38 -2) (-64 38 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1962" - "plane" "(60 64 72) (60 64 64) (64 64 64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -16] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "id" "3203" + "plane" "(-64 38 -2) (-64 64 -2) (-64 64 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1961" - "plane" "(64 40 72) (64 40 64) (60 40 64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 16] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "id" "3202" + "plane" "(-32 64 -2) (-32 38 -2) (-32 38 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 30 220" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } + editor + { + "color" "0 180 0" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "3047" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_solid" "0" + "coll_temporary" "0" solid { - "id" "1790" + "id" "3110" side { - "id" "1978" - "plane" "(60 48 56) (60 64 56) (60 64 64)" + "id" "3141" + "plane" "(-64 64 1) (-32 64 1) (-32 34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 48] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1977" - "plane" "(64 64 56) (64 48 56) (64 48 64)" + "id" "3140" + "plane" "(-64 34 -3) (-32 34 -3) (-32 64 -3)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1976" - "plane" "(60 64 56) (60 48 56) (64 48 56)" + "id" "3139" + "plane" "(-64 64 -3) (-32 64 -3) (-32 64 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1975" - "plane" "(60 48 64) (60 64 64) (64 64 64)" + "id" "3138" + "plane" "(-32 34 -3) (-64 34 -3) (-64 34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1974" - "plane" "(60 64 64) (60 64 56) (64 64 56)" + "id" "3137" + "plane" "(-64 34 -3) (-64 64 -3) (-64 64 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1973" - "plane" "(64 48 64) (64 48 56) (60 48 56)" + "id" "3136" + "plane" "(-32 64 -3) (-32 34 -3) (-32 34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 48] 0.25" - "vaxis" "[1 0 0 -16] 0.25" - "rotation" "0" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } @@ -792,69 +775,69 @@ entity } solid { - "id" "1884" + "id" "3111" side { - "id" "2080" - "plane" "(60 56 48) (60 64 48) (60 64 56)" + "id" "3147" + "plane" "(-46 -34 1) (-46 34 1) (-32 34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 16] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 -1 0 -20] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2079" - "plane" "(64 64 48) (64 56 48) (64 56 56)" + "id" "3146" + "plane" "(-46 34 -3) (-46 -34 -3) (-32 -34 -3)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -16] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[-1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 -20] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2078" - "plane" "(60 64 48) (60 56 48) (64 56 48)" + "id" "3145" + "plane" "(-46 -34 -3) (-46 34 -3) (-46 34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[0 -1 0 -20] 0.25" + "vaxis" "[0 0 -1 28] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2077" - "plane" "(60 56 56) (60 64 56) (64 64 56)" + "id" "3144" + "plane" "(-46 34 -3) (-32 34 -3) (-32 34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[-1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 28] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2076" - "plane" "(60 64 56) (60 64 48) (64 64 48)" + "id" "3143" + "plane" "(-32 -34 -3) (-46 -34 -3) (-46 -34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -16] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 28] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2075" - "plane" "(64 56 56) (64 56 48) (60 56 48)" + "id" "3142" + "plane" "(-32 34 -3) (-32 -34 -3) (-32 -34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 16] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -866,92 +849,71 @@ entity "visgroupautoshown" "1" } } - editor - { - "color" "220 30 220" - "visgroupid" "10" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 2500]" - } -} -entity -{ - "id" "1575" - "classname" "bee2_collision_bbox" - "coll_antlines" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "0" solid { - "id" "1576" + "id" "3112" side { - "id" "1846" - "plane" "(60 64 40) (60 72 40) (60 72 64)" + "id" "3153" + "plane" "(-64 34 1) (-50 34 1) (-50 -34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 16] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[1 0 0 40] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1845" - "plane" "(64 72 40) (64 64 40) (64 64 64)" + "id" "3152" + "plane" "(-64 -34 -3) (-50 -34 -3) (-50 34 -3)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -16] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[-1 0 0 -40] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1844" - "plane" "(60 72 40) (60 64 40) (64 64 40)" + "id" "3151" + "plane" "(-50 34 -3) (-50 -34 -3) (-50 -34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 44] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1843" - "plane" "(60 64 64) (60 72 64) (64 72 64)" + "id" "3150" + "plane" "(-64 34 -3) (-50 34 -3) (-50 34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[-1 0 0 -40] 0.25" + "vaxis" "[0 0 -1 44] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1842" - "plane" "(60 72 64) (60 72 40) (64 72 40)" + "id" "3149" + "plane" "(-50 -34 -3) (-64 -34 -3) (-64 -34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -16] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[1 0 0 40] 0.25" + "vaxis" "[0 0 -1 44] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1841" - "plane" "(64 64 64) (64 64 40) (60 64 40)" + "id" "3148" + "plane" "(-64 -34 -3) (-64 34 -3) (-64 34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 16] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -965,13 +927,13 @@ entity } solid { - "id" "1577" + "id" "3113" side { - "id" "1852" - "plane" "(60 72 0) (60 96 0) (60 96 72)" + "id" "3159" + "plane" "(-64 -34 1) (-32 -34 1) (-32 -64 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 48] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -979,10 +941,10 @@ entity } side { - "id" "1851" - "plane" "(64 96 0) (64 72 0) (64 72 72)" + "id" "3158" + "plane" "(-64 -64 -3) (-32 -64 -3) (-32 -34 -3)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -48] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -990,44 +952,44 @@ entity } side { - "id" "1850" - "plane" "(60 96 0) (60 72 0) (64 72 0)" + "id" "3157" + "plane" "(-64 -34 -3) (-32 -34 -3) (-32 -34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1849" - "plane" "(60 72 72) (60 96 72) (64 96 72)" + "id" "3156" + "plane" "(-32 -64 -3) (-64 -64 -3) (-64 -64 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1848" - "plane" "(60 96 72) (60 96 0) (64 96 0)" + "id" "3155" + "plane" "(-64 -64 -3) (-64 -34 -3) (-64 -34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1847" - "plane" "(64 72 72) (64 72 0) (60 72 0)" + "id" "3154" + "plane" "(-32 -34 -3) (-32 -64 -3) (-32 -64 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 48] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1039,15 +1001,288 @@ entity "visgroupautoshown" "1" } } + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "comments" "Contents set by the compiler." + "logicalpos" "[0 4000]" + } +} +entity +{ + "id" "3052" + "classname" "prop_static" + "angles" "0 90 -90" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/bee2/props_clean/barrier_hole_bridge.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "origin" "-48 0 -1" + editor + { + "color" "255 255 0" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "3153" + "classname" "prop_static" + "angles" "-90 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_test_chamber/frame_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "origin" "-2 -34 4" + editor + { + "color" "255 255 0" + "visgroupid" "12" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "3308" + "classname" "prop_static" + "angles" "-90 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_test_chamber/frame_4.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "origin" "-2 30 4" + editor + { + "color" "255 255 0" + "visgroupid" "12" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "3447" + "classname" "prop_static" + "angles" "-90 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_test_chamber/frame_4.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "origin" "2 -30 4" + editor + { + "color" "255 255 0" + "visgroupid" "12" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "3451" + "classname" "prop_static" + "angles" "-90 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_test_chamber/frame_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "origin" "2 34 4" + editor + { + "color" "255 255 0" + "visgroupid" "12" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "3495" + "classname" "prop_static" + "angles" "-90 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_test_chamber/frame_4.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "origin" "-2 34 4" + editor + { + "color" "255 255 0" + "visgroupid" "12" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "3576" + "classname" "prop_static" + "angles" "-90 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_test_chamber/frame_4.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "origin" "2 -34 4" + editor + { + "color" "255 255 0" + "visgroupid" "12" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "3976" + "classname" "func_detail" solid { - "id" "1578" + "id" "3977" side { - "id" "1858" - "plane" "(60 0 72) (60 96 72) (60 96 96)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 32] 0.25" + "id" "3261" + "plane" "(-32 37 1) (-5 37 1) (-5 -37 1)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1055,10 +1290,10 @@ entity } side { - "id" "1857" - "plane" "(64 96 72) (64 0 72) (64 0 96)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -32] 0.25" + "id" "3260" + "plane" "(-32 -37 -1) (-5 -37 -1) (-5 37 -1)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1066,140 +1301,140 @@ entity } side { - "id" "1856" - "plane" "(60 96 72) (60 0 72) (64 0 72)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "id" "3259" + "plane" "(-32 37 1) (-32 -37 1) (-32 -37 -1)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1855" - "plane" "(60 0 96) (60 96 96) (64 96 96)" - "material" "TOOLS/TOOLSCLIP" + "id" "3258" + "plane" "(-5 37 -1) (-5 -37 -1) (-5 -37 1)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1854" - "plane" "(60 96 96) (60 96 72) (64 96 72)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -32] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "id" "3257" + "plane" "(-5 37 1) (-32 37 1) (-32 37 -1)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1853" - "plane" "(64 0 96) (64 0 72) (60 0 72)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "id" "3256" + "plane" "(-5 -37 -1) (-32 -37 -1) (-32 -37 1)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 30 220" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "1579" + "id" "3978" side { - "id" "1864" - "plane" "(60 40 64) (60 72 64) (60 72 72)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "id" "3267" + "plane" "(-32 -37 1) (32 -37 1) (32 -64 1)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1863" - "plane" "(64 72 64) (64 40 64) (64 40 72)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "id" "3266" + "plane" "(-32 -64 -1) (32 -64 -1) (32 -37 -1)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1862" - "plane" "(60 72 64) (60 40 64) (64 40 64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "id" "3265" + "plane" "(-32 -37 1) (-32 -64 1) (-32 -64 -1)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1861" - "plane" "(60 40 72) (60 72 72) (64 72 72)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "id" "3264" + "plane" "(32 -37 -1) (32 -64 -1) (32 -64 1)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1860" - "plane" "(60 72 72) (60 72 64) (64 72 64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "id" "3263" + "plane" "(32 -37 1) (-32 -37 1) (-32 -37 -1)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1859" - "plane" "(64 40 72) (64 40 64) (60 40 64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "id" "3262" + "plane" "(32 -64 -1) (-32 -64 -1) (-32 -64 1)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 30 220" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "1814" + "id" "3979" side { - "id" "2002" - "plane" "(60 56 48) (60 64 48) (60 64 56)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 48] 0.25" + "id" "3273" + "plane" "(5 37 1) (32 37 1) (32 -37 1)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1207,10 +1442,10 @@ entity } side { - "id" "2001" - "plane" "(64 64 48) (64 56 48) (64 56 56)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -48] 0.25" + "id" "3272" + "plane" "(5 -37 -1) (32 -37 -1) (32 37 -1)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1218,64 +1453,64 @@ entity } side { - "id" "2000" - "plane" "(60 64 48) (60 56 48) (64 56 48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "id" "3271" + "plane" "(5 37 1) (5 -37 1) (5 -37 -1)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1999" - "plane" "(60 56 56) (60 64 56) (64 64 56)" - "material" "TOOLS/TOOLSCLIP" + "id" "3270" + "plane" "(32 37 -1) (32 -37 -1) (32 -37 1)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1998" - "plane" "(60 64 56) (60 64 48) (64 64 48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "id" "3269" + "plane" "(32 37 1) (5 37 1) (5 37 -1)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1997" - "plane" "(64 56 56) (64 56 48) (60 56 48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 48] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "id" "3268" + "plane" "(32 -37 -1) (5 -37 -1) (5 -37 1)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 30 220" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "1812" + "id" "3980" side { - "id" "1990" - "plane" "(60 48 56) (60 64 56) (60 64 64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 16] 0.25" + "id" "3279" + "plane" "(-32 64 1) (32 64 1) (32 37 1)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1283,10 +1518,10 @@ entity } side { - "id" "1989" - "plane" "(64 64 56) (64 48 56) (64 48 64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -16] 0.25" + "id" "3278" + "plane" "(-32 37 -1) (32 37 -1) (32 64 -1)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1294,85 +1529,84 @@ entity } side { - "id" "1988" - "plane" "(60 64 56) (60 48 56) (64 48 56)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "id" "3277" + "plane" "(-32 64 1) (-32 37 1) (-32 37 -1)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1987" - "plane" "(60 48 64) (60 64 64) (64 64 64)" - "material" "TOOLS/TOOLSCLIP" + "id" "3276" + "plane" "(32 64 -1) (32 37 -1) (32 37 1)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1986" - "plane" "(60 64 64) (60 64 56) (64 64 56)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -16] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "id" "3275" + "plane" "(32 64 1) (-32 64 1) (-32 64 -1)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1985" - "plane" "(64 48 64) (64 48 56) (60 48 56)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 16] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "id" "3274" + "plane" "(32 37 -1) (-32 37 -1) (-32 37 1)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 30 220" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } editor { - "color" "220 30 220" - "visgroupid" "11" + "color" "0 180 0" + "visgroupid" "12" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 2500]" + "logicalpos" "[0 2000]" } } entity { - "id" "1618" + "id" "3981" "classname" "bee2_collision_bbox" "coll_antlines" "0" "coll_bridge" "0" "coll_decoration" "0" "coll_fizzler" "0" "coll_glass" "0" - "coll_grate" "0" "coll_solid" "0" "coll_temporary" "0" solid { - "id" "1619" + "id" "3982" side { - "id" "1894" - "plane" "(60 96 32) (60 128 32) (60 128 56)" + "id" "3285" + "plane" "(-32 34 1) (-32 64 1) (32 64 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1380,10 +1614,10 @@ entity } side { - "id" "1893" - "plane" "(64 128 32) (64 96 32) (64 96 56)" + "id" "3284" + "plane" "(-32 64 -3) (-32 34 -3) (32 34 -3)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -16] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1391,44 +1625,44 @@ entity } side { - "id" "1892" - "plane" "(60 128 32) (60 96 32) (64 96 32)" + "id" "3283" + "plane" "(-32 34 -3) (-32 64 -3) (-32 64 1)" "material" "TOOLS/TOOLSCLIP" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1891" - "plane" "(60 96 56) (60 128 56) (64 128 56)" + "id" "3282" + "plane" "(32 64 -3) (32 34 -3) (32 34 1)" "material" "TOOLS/TOOLSCLIP" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1890" - "plane" "(60 128 56) (60 128 32) (64 128 32)" + "id" "3281" + "plane" "(-32 64 -3) (32 64 -3) (32 64 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -16] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1889" - "plane" "(64 96 56) (64 96 32) (60 96 32)" + "id" "3280" + "plane" "(32 34 -3) (-32 34 -3) (-32 34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 16] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1442,69 +1676,69 @@ entity } solid { - "id" "1620" + "id" "3983" side { - "id" "1900" - "plane" "(60 72 0) (60 96 0) (60 96 56)" + "id" "3291" + "plane" "(2 -34 1) (2 34 1) (32 34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 -1 0 -20] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1899" - "plane" "(64 96 0) (64 72 0) (64 72 56)" + "id" "3290" + "plane" "(2 34 -3) (2 -34 -3) (32 -34 -3)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 -20] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1898" - "plane" "(60 96 0) (60 72 0) (64 72 0)" + "id" "3289" + "plane" "(2 -34 -3) (2 34 -3) (2 34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[0 -1 0 -20] 0.25" + "vaxis" "[0 0 -1 28] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1897" - "plane" "(60 72 56) (60 96 56) (64 96 56)" + "id" "3288" + "plane" "(32 34 -3) (32 -34 -3) (32 -34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[0 1 0 20] 0.25" + "vaxis" "[0 0 -1 28] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1896" - "plane" "(60 96 56) (60 96 0) (64 96 0)" + "id" "3287" + "plane" "(2 34 -3) (32 34 -3) (32 34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[-1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 28] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1895" - "plane" "(64 72 56) (64 72 0) (60 72 0)" + "id" "3286" + "plane" "(32 -34 -3) (2 -34 -3) (2 -34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 48] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 28] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1518,69 +1752,69 @@ entity } solid { - "id" "1621" + "id" "3984" side { - "id" "1906" - "plane" "(60 0 72) (60 56 72) (60 56 96)" + "id" "3297" + "plane" "(-32 -34 1) (-32 34 1) (-2 34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 40] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1905" - "plane" "(64 56 72) (64 0 72) (64 0 96)" + "id" "3296" + "plane" "(-32 34 -3) (-32 -34 -3) (-2 -34 -3)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -40] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1904" - "plane" "(60 56 72) (60 0 72) (64 0 72)" + "id" "3295" + "plane" "(-32 -34 -3) (-32 34 -3) (-32 34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "uaxis" "[0 -1 0 -4] 0.25" + "vaxis" "[0 0 -1 44] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1903" - "plane" "(60 0 96) (60 56 96) (64 56 96)" + "id" "3294" + "plane" "(-2 34 -3) (-2 -34 -3) (-2 -34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 44] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1902" - "plane" "(60 56 96) (60 56 72) (64 56 72)" + "id" "3293" + "plane" "(-32 34 -3) (-2 34 -3) (-2 34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -32] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "uaxis" "[-1 0 0 -40] 0.25" + "vaxis" "[0 0 -1 44] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1901" - "plane" "(64 0 96) (64 0 72) (60 0 72)" + "id" "3292" + "plane" "(-2 -34 -3) (-32 -34 -3) (-32 -34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "uaxis" "[1 0 0 40] 0.25" + "vaxis" "[0 0 -1 44] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1594,69 +1828,69 @@ entity } solid { - "id" "1622" + "id" "3985" side { - "id" "1912" - "plane" "(60 32 96) (60 56 96) (60 56 128)" + "id" "3303" + "plane" "(-32 -64 1) (-32 -34 1) (32 -34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 -32] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1911" - "plane" "(64 56 96) (64 32 96) (64 32 128)" + "id" "3302" + "plane" "(-32 -34 -3) (-32 -64 -3) (32 -64 -3)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 32] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1910" - "plane" "(60 56 96) (60 32 96) (64 32 96)" + "id" "3301" + "plane" "(-32 -64 -3) (-32 -34 -3) (-32 -34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1909" - "plane" "(60 32 128) (60 56 128) (64 56 128)" + "id" "3300" + "plane" "(32 -34 -3) (32 -64 -3) (32 -64 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1908" - "plane" "(60 56 128) (60 56 96) (64 56 96)" + "id" "3299" + "plane" "(-32 -34 -3) (32 -34 -3) (32 -34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 32] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1907" - "plane" "(64 32 128) (64 32 96) (60 32 96)" + "id" "3298" + "plane" "(32 -64 -3) (-32 -64 -3) (-32 -64 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 -32] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1668,15 +1902,36 @@ entity "visgroupautoshown" "1" } } + editor + { + "color" "220 30 220" + "visgroupid" "12" + "visgroupshown" "1" + "visgroupautoshown" "1" + "comments" "Contents set by the compiler." + "logicalpos" "[0 4000]" + } +} +entity +{ + "id" "4023" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_solid" "0" + "coll_temporary" "0" solid { - "id" "1649" + "id" "4149" side { - "id" "2032" - "plane" "(60 40 64) (60 64 64) (60 64 88)" + "id" "3453" + "plane" "(-32 34 1) (-64 34 1) (-64 64 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1684,10 +1939,10 @@ entity } side { - "id" "2031" - "plane" "(64 64 64) (64 40 64) (64 40 88)" + "id" "3452" + "plane" "(-32 64 -3) (-64 64 -3) (-64 34 -3)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -32] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1695,44 +1950,44 @@ entity } side { - "id" "2030" - "plane" "(60 64 64) (60 40 64) (64 40 64)" + "id" "3451" + "plane" "(-64 64 -3) (-32 64 -3) (-32 64 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2029" - "plane" "(60 40 88) (60 64 88) (64 64 88)" + "id" "3450" + "plane" "(-32 34 -3) (-64 34 -3) (-64 34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2028" - "plane" "(60 64 88) (60 64 64) (64 64 64)" + "id" "3449" + "plane" "(-32 64 -3) (-32 34 -3) (-32 34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -32] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2027" - "plane" "(64 40 88) (64 40 64) (60 40 64)" + "id" "3448" + "plane" "(-64 34 -3) (-64 64 -3) (-64 64 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1746,69 +2001,69 @@ entity } solid { - "id" "1856" + "id" "4150" side { - "id" "2056" - "plane" "(60 56 48) (60 80 48) (60 80 72)" + "id" "3459" + "plane" "(-46 -34 1) (-46 34 1) (-32 34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 -1 0 -20] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2055" - "plane" "(64 80 48) (64 56 48) (64 56 72)" + "id" "3458" + "plane" "(-46 34 -3) (-46 -34 -3) (-32 -34 -3)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 -20] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2054" - "plane" "(60 80 48) (60 56 48) (64 56 48)" + "id" "3457" + "plane" "(-46 -34 -3) (-46 34 -3) (-46 34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 -20] 0.25" + "vaxis" "[0 0 -1 28] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2053" - "plane" "(60 56 72) (60 80 72) (64 80 72)" + "id" "3456" + "plane" "(-46 34 -3) (-32 34 -3) (-32 34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 28] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2052" - "plane" "(60 80 72) (60 80 48) (64 80 48)" + "id" "3455" + "plane" "(-32 -34 -3) (-46 -34 -3) (-46 -34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -32] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 28] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2051" - "plane" "(64 56 72) (64 56 48) (60 56 48)" + "id" "3454" + "plane" "(-32 34 -3) (-32 -34 -3) (-32 -34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1822,69 +2077,69 @@ entity } solid { - "id" "1854" + "id" "4151" side { - "id" "2044" - "plane" "(60 48 56) (60 72 56) (60 72 80)" + "id" "3465" + "plane" "(-64 34 1) (-50 34 1) (-50 -34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "uaxis" "[1 0 0 40] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2043" - "plane" "(64 72 56) (64 48 56) (64 48 80)" + "id" "3464" + "plane" "(-64 -34 -3) (-50 -34 -3) (-50 34 -3)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "uaxis" "[-1 0 0 -40] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2042" - "plane" "(60 72 56) (60 48 56) (64 48 56)" + "id" "3463" + "plane" "(-50 34 -3) (-50 -34 -3) (-50 -34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 44] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2041" - "plane" "(60 48 80) (60 72 80) (64 72 80)" + "id" "3462" + "plane" "(-64 34 -3) (-50 34 -3) (-50 34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 -40] 0.25" + "vaxis" "[0 0 -1 44] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2040" - "plane" "(60 72 80) (60 72 56) (64 72 56)" + "id" "3461" + "plane" "(-50 -34 -3) (-64 -34 -3) (-64 -34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 40] 0.25" + "vaxis" "[0 0 -1 44] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2039" - "plane" "(64 48 80) (64 48 56) (60 48 56)" + "id" "3460" + "plane" "(-64 -34 -3) (-64 34 -3) (-64 34 1)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1897,650 +2152,14 @@ entity } } solid - { - "id" "1866" - side - { - "id" "2068" - "plane" "(60 64 40) (60 88 40) (60 88 64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2067" - "plane" "(64 88 40) (64 64 40) (64 64 64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2066" - "plane" "(60 88 40) (60 64 40) (64 64 40)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2065" - "plane" "(60 64 64) (60 88 64) (64 88 64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2064" - "plane" "(60 88 64) (60 88 40) (64 88 40)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2063" - "plane" "(64 64 64) (64 64 40) (60 64 40)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "8" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 2500]" - } -} -entity -{ - "id" "1384" - "classname" "func_detail" - solid - { - "id" "1385" - side - { - "id" "1547" - "plane" "(60 80 0) (60 96 0) (60 96 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1546" - "plane" "(68 96 0) (68 80 0) (68 80 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1545" - "plane" "(60 96 0) (68 96 0) (68 96 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -32] 0.25" - "vaxis" "[1 0 0 -16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1544" - "plane" "(68 80 0) (60 80 0) (60 80 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 -16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1543" - "plane" "(60 96 64) (68 96 64) (68 80 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0.707107 -0.707107 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1542" - "plane" "(60 80 0) (68 80 0) (68 96 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "1409" - side - { - "id" "1594" - "plane" "(60 56 64) (60 80 40) (60 80 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1593" - "plane" "(68 80 40) (68 56 64) (68 80 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1592" - "plane" "(68 56 64) (68 80 40) (60 80 40)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1591" - "plane" "(60 80 64) (60 80 40) (68 80 40)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1590" - "plane" "(60 56 64) (60 80 64) (68 80 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "1421" - side - { - "id" "1612" - "plane" "(60 64 80) (60 64 96) (60 0 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1611" - "plane" "(68 0 80) (68 0 96) (68 64 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1610" - "plane" "(60 64 96) (68 64 96) (68 0 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[1 0 0 -16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1609" - "plane" "(60 0 80) (68 0 80) (68 64 80)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[1 0 0 -16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1608" - "plane" "(68 0 80) (60 0 80) (60 0 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1607" - "plane" "(60 64 80) (68 64 80) (68 64 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0.707107 -0.707107 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "1427" - side - { - "id" "1618" - "plane" "(60 56 64) (60 64 64) (60 64 80)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1617" - "plane" "(68 64 80) (68 64 64) (68 56 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1616" - "plane" "(60 64 80) (60 64 64) (68 64 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1615" - "plane" "(60 64 64) (60 56 64) (68 56 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1614" - "plane" "(68 40 80) (68 56 64) (60 56 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -0.707107 0.707107 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1613" - "plane" "(60 40 80) (60 64 80) (68 64 80)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupid" "10" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 6000]" - } -} -entity -{ - "id" "1435" - "classname" "func_detail" - solid - { - "id" "1436" - side - { - "id" "1647" - "plane" "(60 80 0) (60 96 0) (60 96 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1646" - "plane" "(68 96 0) (68 80 0) (68 80 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1645" - "plane" "(60 96 0) (68 96 0) (68 96 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -32] 0.25" - "vaxis" "[1 0 0 -16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1644" - "plane" "(68 80 0) (60 80 0) (60 80 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 -16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1643" - "plane" "(60 96 96) (68 96 96) (68 80 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0.5547 -0.832051 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1642" - "plane" "(60 80 0) (68 80 0) (68 96 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "1437" - side - { - "id" "1652" - "plane" "(60 40 80) (60 80 40) (60 80 80)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1651" - "plane" "(68 80 40) (68 40 80) (68 80 80)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1650" - "plane" "(68 40 80) (68 80 40) (60 80 40)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1649" - "plane" "(60 80 80) (60 80 40) (68 80 40)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1648" - "plane" "(60 40 80) (60 80 80) (68 80 80)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "1438" - side - { - "id" "1658" - "plane" "(60 80 80) (60 80 96) (60 0 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1657" - "plane" "(68 0 80) (68 0 96) (68 80 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1656" - "plane" "(60 80 96) (68 80 96) (68 0 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[1 0 0 -16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1655" - "plane" "(60 0 80) (68 0 80) (68 80 80)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[1 0 0 -16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1654" - "plane" "(68 0 80) (60 0 80) (60 0 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1653" - "plane" "(60 80 80) (68 80 80) (68 80 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0.780869 -0.624695 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupid" "11" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 6000]" - } -} -entity -{ - "id" "1195" - "classname" "func_detail" - solid - { - "id" "1465" - side - { - "id" "1707" - "plane" "(60 80 40) (60 80 0) (60 96 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + { + "id" "4152" side { - "id" "1706" - "plane" "(68 96 48) (68 96 0) (68 80 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -32] 0.25" + "id" "3471" + "plane" "(-32 -64 1) (-64 -64 1) (-64 -34 1)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2548,142 +2167,367 @@ entity } side { - "id" "1705" - "plane" "(60 96 48) (60 96 0) (68 96 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -32] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "id" "3470" + "plane" "(-32 -34 -3) (-64 -34 -3) (-64 -64 -3)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1704" - "plane" "(68 80 40) (68 80 0) (60 80 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "id" "3469" + "plane" "(-64 -34 -3) (-32 -34 -3) (-32 -34 1)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1703" - "plane" "(60 88 48) (60 96 48) (68 96 48)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0.707107 -0.707107 0] 0.25" + "id" "3468" + "plane" "(-32 -64 -3) (-64 -64 -3) (-64 -64 1)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1702" - "plane" "(60 96 0) (60 80 0) (68 80 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "3467" + "plane" "(-32 -34 -3) (-32 -64 -3) (-32 -64 1)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1701" - "plane" "(68 88 48) (68 80 40) (60 80 40)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -0.707107 -0.707107 0] 0.25" + "id" "3466" + "plane" "(-64 -64 -3) (-64 -34 -3) (-64 -34 1)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 180 0" + "color" "220 30 220" "visgroupshown" "1" "visgroupautoshown" "1" } } + editor + { + "color" "220 30 220" + "visgroupid" "13" + "visgroupshown" "1" + "visgroupautoshown" "1" + "comments" "Contents set by the compiler." + "logicalpos" "[0 4000]" + } +} +entity +{ + "id" "4028" + "classname" "prop_static" + "angles" "-90 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_test_chamber/frame_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "origin" "-50 -34 4" + editor + { + "color" "255 255 0" + "visgroupid" "13" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "4032" + "classname" "prop_static" + "angles" "-90 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_test_chamber/frame_4.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "origin" "-50 30 4" + editor + { + "color" "255 255 0" + "visgroupid" "13" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "4036" + "classname" "prop_static" + "angles" "-90 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_test_chamber/frame_4.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "origin" "-46 -30 4" + editor + { + "color" "255 255 0" + "visgroupid" "13" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "4040" + "classname" "prop_static" + "angles" "-90 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_test_chamber/frame_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "origin" "-46 34 4" + editor + { + "color" "255 255 0" + "visgroupid" "13" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "4044" + "classname" "prop_static" + "angles" "-90 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_test_chamber/frame_4.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "origin" "-50 34 4" + editor + { + "color" "255 255 0" + "visgroupid" "13" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "4048" + "classname" "prop_static" + "angles" "-90 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_test_chamber/frame_4.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "origin" "-46 -34 4" + editor + { + "color" "255 255 0" + "visgroupid" "13" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "4052" + "classname" "func_detail" solid { - "id" "1468" - side - { - "id" "1714" - "plane" "(60 0 80) (60 40 80) (60 48 88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "4153" side { - "id" "1713" - "plane" "(68 40 80) (68 0 80) (68 0 96)" + "id" "3477" + "plane" "(-64 37 1) (-53 37 1) (-53 -37 1)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1712" - "plane" "(60 0 96) (60 48 96) (68 48 96)" + "id" "3476" + "plane" "(-64 -37 -1) (-53 -37 -1) (-53 37 -1)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1711" - "plane" "(60 40 80) (60 0 80) (68 0 80)" + "id" "3475" + "plane" "(-53 37 -1) (-53 -37 -1) (-53 -37 1)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1710" - "plane" "(60 48 96) (60 48 88) (68 48 88)" + "id" "3474" + "plane" "(-64 37 -1) (-53 37 -1) (-53 37 1)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0.707107 -0.707107 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1709" - "plane" "(68 0 96) (68 0 80) (60 0 80)" + "id" "3473" + "plane" "(-53 -37 -1) (-64 -37 -1) (-64 -37 1)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1708" - "plane" "(60 48 88) (60 40 80) (68 40 80)" + "id" "3472" + "plane" "(-64 -37 -1) (-64 37 -1) (-64 37 1)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -0.707107 -0.707107 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2697,69 +2541,69 @@ entity } solid { - "id" "1449" + "id" "4154" side { - "id" "1688" - "plane" "(60 48 128) (60 32 128) (60 32 96)" + "id" "3483" + "plane" "(-32 -64 1) (-64 -64 1) (-64 -37 1)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 32] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1687" - "plane" "(68 32 128) (68 48 128) (68 48 96)" + "id" "3482" + "plane" "(-32 -37 -1) (-64 -37 -1) (-64 -64 -1)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -32] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1686" - "plane" "(60 32 128) (68 32 128) (68 32 96)" + "id" "3481" + "plane" "(-64 -37 -1) (-32 -37 -1) (-32 -37 1)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -32] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1685" - "plane" "(68 48 128) (60 48 128) (60 48 96)" + "id" "3480" + "plane" "(-32 -64 -1) (-64 -64 -1) (-64 -64 1)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 32] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1684" - "plane" "(60 32 96) (68 32 96) (68 48 96)" + "id" "3479" + "plane" "(-32 -37 -1) (-32 -64 -1) (-32 -64 1)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -0.707107 0.707107 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1683" - "plane" "(60 48 128) (68 48 128) (68 32 128)" + "id" "3478" + "plane" "(-64 -64 -1) (-64 -37 -1) (-64 -37 1)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2773,69 +2617,69 @@ entity } solid { - "id" "1450" + "id" "4155" side { - "id" "1694" - "plane" "(60 48 88) (60 40 80) (60 80 40)" + "id" "3489" + "plane" "(-43 -37 1) (-43 37 1) (-32 37 1)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1693" - "plane" "(68 88 48) (68 80 40) (68 40 80)" + "id" "3488" + "plane" "(-43 37 -1) (-43 -37 -1) (-32 -37 -1)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1692" - "plane" "(68 48 88) (60 48 88) (60 88 48)" + "id" "3487" + "plane" "(-43 -37 -1) (-43 37 -1) (-43 37 1)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1691" - "plane" "(60 80 40) (68 80 40) (68 88 48)" + "id" "3486" + "plane" "(-43 37 -1) (-32 37 -1) (-32 37 1)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1690" - "plane" "(60 48 88) (68 48 88) (68 40 80)" + "id" "3485" + "plane" "(-32 -37 -1) (-43 -37 -1) (-43 -37 1)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -16] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1689" - "plane" "(60 40 80) (68 40 80) (68 80 40)" + "id" "3484" + "plane" "(-32 37 -1) (-32 -37 -1) (-32 -37 1)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -0.707107 0.707107 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2849,69 +2693,69 @@ entity } solid { - "id" "1451" + "id" "4156" side { - "id" "1700" - "plane" "(60 96 48) (60 96 32) (60 128 32)" + "id" "3495" + "plane" "(-32 37 1) (-64 37 1) (-64 64 1)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1699" - "plane" "(68 128 48) (68 128 32) (68 96 32)" + "id" "3494" + "plane" "(-32 64 -1) (-64 64 -1) (-64 37 -1)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1698" - "plane" "(60 96 32) (68 96 32) (68 128 32)" + "id" "3493" + "plane" "(-64 64 -1) (-32 64 -1) (-32 64 1)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1697" - "plane" "(60 128 48) (68 128 48) (68 96 48)" + "id" "3492" + "plane" "(-32 37 -1) (-64 37 -1) (-64 37 1)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1696" - "plane" "(60 96 48) (68 96 48) (68 96 32)" + "id" "3491" + "plane" "(-32 64 -1) (-32 37 -1) (-32 37 1)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -0.707107 0.707107 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1695" - "plane" "(68 128 48) (60 128 48) (60 128 32)" + "id" "3490" + "plane" "(-64 37 -1) (-64 64 -1) (-64 64 1)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2926,327 +2770,335 @@ entity editor { "color" "0 180 0" - "visgroupid" "8" + "visgroupid" "13" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 6000]" + "logicalpos" "[0 2000]" } } entity { - "id" "250" - "classname" "func_detail" + "id" "1938" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_solid" "0" + "coll_temporary" "0" solid { - "id" "162" + "id" "1922" side { - "id" "471" - "plane" "(60 32 -32) (68 32 -32) (68 32 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "2008" + "plane" "(-32 34 1) (-32 64 1) (32 64 1)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "470" - "plane" "(68 16 -32) (60 16 -32) (60 16 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "2007" + "plane" "(-32 64 -3) (-32 34 -3) (32 34 -3)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "469" - "plane" "(60 16 -32) (60 32 -32) (60 32 32)" - "material" "TOOLS/TOOLSNODRAW" + "id" "2006" + "plane" "(-32 34 -3) (-32 64 -3) (-32 64 1)" + "material" "TOOLS/TOOLSCLIP" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "468" - "plane" "(68 32 -32) (68 16 -32) (68 16 32)" - "material" "TOOLS/TOOLSNODRAW" + "id" "2005" + "plane" "(32 64 -3) (32 34 -3) (32 34 1)" + "material" "TOOLS/TOOLSCLIP" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "467" - "plane" "(60 32 -32) (60 16 -32) (68 16 -32)" - "material" "TOOLS/TOOLSNODRAW" + "id" "2004" + "plane" "(-32 64 -3) (32 64 -3) (32 64 1)" + "material" "TOOLS/TOOLSCLIP" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "466" - "plane" "(60 16 32) (60 32 32) (68 32 32)" - "material" "TOOLS/TOOLSNODRAW" + "id" "2003" + "plane" "(32 34 -3) (-32 34 -3) (-32 34 1)" + "material" "TOOLS/TOOLSCLIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 180 0" + "color" "220 30 220" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "185" + "id" "1924" side { - "id" "429" - "plane" "(60 -16 -32) (68 -16 -32) (68 16 -32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "id" "2038" + "plane" "(2 -34 1) (2 34 1) (32 34 1)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 -1 0 -20] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "428" - "plane" "(60 16 -16) (68 16 -16) (68 -16 -16)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "id" "2037" + "plane" "(2 34 -3) (2 -34 -3) (32 -34 -3)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 -20] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "427" - "plane" "(60 16 -32) (60 16 -16) (60 -16 -16)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "2036" + "plane" "(2 -34 -3) (2 34 -3) (2 34 1)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 -20] 0.25" + "vaxis" "[0 0 -1 28] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "426" - "plane" "(68 -16 -32) (68 -16 -16) (68 16 -16)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "2035" + "plane" "(32 34 -3) (32 -34 -3) (32 -34 1)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 20] 0.25" + "vaxis" "[0 0 -1 28] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "425" - "plane" "(60 -16 -32) (60 -16 -16) (68 -16 -16)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "2034" + "plane" "(2 34 -3) (32 34 -3) (32 34 1)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 28] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "424" - "plane" "(68 16 -32) (68 16 -16) (60 16 -16)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "2033" + "plane" "(32 -34 -3) (2 -34 -3) (2 -34 1)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 28] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 180 0" + "color" "220 30 220" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "161" + "id" "1926" side { - "id" "453" - "plane" "(60 16 32) (68 16 32) (68 -16 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "id" "2050" + "plane" "(-32 -34 1) (-32 34 1) (-2 34 1)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 40] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "452" - "plane" "(60 -16 16) (68 -16 16) (68 16 16)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "id" "2049" + "plane" "(-32 34 -3) (-32 -34 -3) (-2 -34 -3)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -40] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "451" - "plane" "(60 16 16) (60 16 32) (60 -16 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "2048" + "plane" "(-32 -34 -3) (-32 34 -3) (-32 34 1)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 -4] 0.25" + "vaxis" "[0 0 -1 44] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "450" - "plane" "(68 -16 16) (68 -16 32) (68 16 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "2047" + "plane" "(-2 34 -3) (-2 -34 -3) (-2 -34 1)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 44] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "449" - "plane" "(68 16 16) (68 16 32) (60 16 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "2046" + "plane" "(-32 34 -3) (-2 34 -3) (-2 34 1)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -40] 0.25" + "vaxis" "[0 0 -1 44] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "448" - "plane" "(60 -16 16) (60 -16 32) (68 -16 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "2045" + "plane" "(-2 -34 -3) (-32 -34 -3) (-32 -34 1)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 40] 0.25" + "vaxis" "[0 0 -1 44] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 180 0" + "color" "220 30 220" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "177" + "id" "1923" side { - "id" "447" - "plane" "(68 -32 -32) (60 -32 -32) (60 -32 32)" - "material" "TOOLS/TOOLSNODRAW" + "id" "2026" + "plane" "(-32 -64 1) (-32 -34 1) (32 -34 1)" + "material" "TOOLS/TOOLSCLIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "446" - "plane" "(60 -16 -32) (68 -16 -32) (68 -16 32)" - "material" "TOOLS/TOOLSNODRAW" + "id" "2025" + "plane" "(-32 -34 -3) (-32 -64 -3) (32 -64 -3)" + "material" "TOOLS/TOOLSCLIP" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "445" - "plane" "(60 -32 -32) (60 -16 -32) (60 -16 32)" - "material" "TOOLS/TOOLSNODRAW" + "id" "2024" + "plane" "(-32 -64 -3) (-32 -34 -3) (-32 -34 1)" + "material" "TOOLS/TOOLSCLIP" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "444" - "plane" "(68 -16 -32) (68 -32 -32) (68 -32 32)" - "material" "TOOLS/TOOLSNODRAW" + "id" "2023" + "plane" "(32 -34 -3) (32 -64 -3) (32 -64 1)" + "material" "TOOLS/TOOLSCLIP" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "443" - "plane" "(60 -32 32) (60 -16 32) (68 -16 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "2022" + "plane" "(-32 -34 -3) (32 -34 -3) (32 -34 1)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "442" - "plane" "(60 -16 -32) (60 -32 -32) (68 -32 -32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "2021" + "plane" "(32 -64 -3) (-32 -64 -3) (-32 -64 1)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 180 0" + "color" "220 30 220" "visgroupshown" "1" "visgroupautoshown" "1" } } editor { - "color" "0 180 0" - "visgroupid" "7" + "color" "220 30 220" + "visgroupid" "3" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 -9768]" + "comments" "Contents set by the compiler." + "logicalpos" "[0 4000]" } } entity @@ -3257,8 +3109,8 @@ entity "discard_brushes" "0" "is_scaling" "0" "temp_type" "default" - "template_id" "BEE2_HOLE_SQUARE" - "origin" "64 0 0" + "template_id" "BEE2_SLOT_HOLE_MODERN" + "origin" "-2.79753e-006 0 0" editor { "color" "220 30 220" @@ -3267,6 +3119,43 @@ entity "logicalpos" "[500 3500]" } } +entity +{ + "id" "3" + "classname" "prop_static" + "angles" "0 90 -90" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/bee2/props_clean/barrier_hole_bridge.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "origin" "0 0 -1" + editor + { + "color" "255 255 0" + "visgroupid" "3" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} cameras { "activecamera" "-1" diff --git a/packages/barrier_hole/templates/hole_square.vmf b/packages/barrier_hole/templates/hole_square.vmf new file mode 100644 index 0000000000..f25ddc7fd0 --- /dev/null +++ b/packages/barrier_hole/templates/hole_square.vmf @@ -0,0 +1,7763 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "64" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ + visgroup + { + "name" "small" + "visgroupid" "7" + "color" "192 161 150" + } + visgroup + { + "name" "medium" + "visgroupid" "17" + "color" "171 232 249" + } + visgroup + { + "name" "large" + "visgroupid" "18" + "color" "153 222 103" + } + visgroup + { + "name" "large_diagonal" + "visgroupid" "8" + "color" "212 149 218" + } + visgroup + { + "name" "large_cutout" + "visgroupid" "10" + "color" "204 189 98" + } + visgroup + { + "name" "large_square" + "visgroupid" "11" + "color" "139 88 169" + } + visgroup + { + "name" "slot_center" + "visgroupid" "19" + "color" "118 239 172" + } + visgroup + { + "name" "slot_offset" + "visgroupid" "20" + "color" "223 236 93" + } +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "2" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "64" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" +} +entity +{ + "id" "2604" + "classname" "func_wall" + "_minlight" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "drawinfastreflection" "0" + "origin" "0 0 -2" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "vrad_brush_cast_shadows" "0" + solid + { + "id" "2605" + side + { + "id" "2780" + "plane" "(-6 34 0) (-2 34 0) (-2 -34 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[-1 0 0 36] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2779" + "plane" "(-2 -34 -4) (-2 34 -4) (-6 34 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[-1 0 0 36] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2778" + "plane" "(-6 34 0) (-6 -34 0) (-6 -34 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[0 -1 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2777" + "plane" "(-6 -34 0) (-2 -34 0) (-2 -34 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2776" + "plane" "(-2 34 0) (-6 34 0) (-6 34 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2775" + "plane" "(-2 -34 0) (-2 34 0) (-2 34 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2606" + side + { + "id" "2786" + "plane" "(6 -34 0) (2 -34 0) (2 34 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2785" + "plane" "(2 34 -4) (2 -34 -4) (6 -34 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2784" + "plane" "(6 -34 0) (6 34 0) (6 34 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[0 1 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2783" + "plane" "(6 34 0) (2 34 0) (2 34 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2782" + "plane" "(2 -34 0) (6 -34 0) (6 -34 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2781" + "plane" "(2 34 0) (2 -34 0) (2 -34 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[0 1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2607" + side + { + "id" "2792" + "plane" "(-6 -38 0) (-6 -34 0) (6 -34 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 -1 0 -92] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2791" + "plane" "(6 -38 -4) (6 -34 -4) (-6 -34 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 -1 0 -92] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2790" + "plane" "(-6 -38 -4) (-6 -38 0) (6 -38 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[1 0 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2789" + "plane" "(6 -38 -4) (6 -38 0) (6 -34 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[0 1 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2788" + "plane" "(-6 -34 -4) (-6 -34 0) (-6 -38 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[0 -1 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2787" + "plane" "(6 -34 -4) (6 -34 0) (-6 -34 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[1 0 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2608" + side + { + "id" "2798" + "plane" "(-6 38 0) (6 38 0) (6 34 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 1 0 -92] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2797" + "plane" "(-6 38 -4) (-6 34 -4) (6 34 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 1 0 -92] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2796" + "plane" "(6 38 -4) (6 38 0) (-6 38 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[-1 0 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2795" + "plane" "(-6 38 -4) (-6 38 0) (-6 34 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[0 -1 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2794" + "plane" "(6 34 -4) (6 34 0) (6 38 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[0 1 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2793" + "plane" "(-6 34 -4) (-6 34 0) (6 34 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[-1 0 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2610" + side + { + "id" "2804" + "plane" "(-54 34 0) (-50 34 0) (-50 -34 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[-1 0 0 -156] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2803" + "plane" "(-50 -34 -4) (-50 34 -4) (-54 34 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[-1 0 0 -156] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2802" + "plane" "(-54 34 0) (-54 -34 0) (-54 -34 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[0 -1 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2801" + "plane" "(-54 -34 0) (-50 -34 0) (-50 -34 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2800" + "plane" "(-50 34 0) (-54 34 0) (-54 34 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2799" + "plane" "(-50 -34 0) (-50 34 0) (-50 34 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2611" + side + { + "id" "2810" + "plane" "(-42 -34 0) (-46 -34 0) (-46 34 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 228] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2809" + "plane" "(-46 34 -4) (-46 -34 -4) (-42 -34 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 228] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2808" + "plane" "(-42 -34 0) (-42 34 0) (-42 34 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[0 1 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2807" + "plane" "(-42 34 0) (-46 34 0) (-46 34 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2806" + "plane" "(-46 -34 0) (-42 -34 0) (-42 -34 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2805" + "plane" "(-46 34 0) (-46 -34 0) (-46 -34 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[0 1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2612" + side + { + "id" "2816" + "plane" "(-54 -38 0) (-54 -34 0) (-42 -34 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 -1 0 -92] 0.25" + "vaxis" "[1 0 0 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2815" + "plane" "(-42 -38 -4) (-42 -34 -4) (-54 -34 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 -1 0 -92] 0.25" + "vaxis" "[1 0 0 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2814" + "plane" "(-54 -38 -4) (-54 -38 0) (-42 -38 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[1 0 0 66] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2813" + "plane" "(-42 -38 -4) (-42 -38 0) (-42 -34 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[0 1 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2812" + "plane" "(-54 -34 -4) (-54 -34 0) (-54 -38 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[0 -1 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2811" + "plane" "(-42 -34 -4) (-42 -34 0) (-54 -34 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[1 0 0 320] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2613" + side + { + "id" "2822" + "plane" "(-54 38 0) (-42 38 0) (-42 34 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 1 0 -92] 0.25" + "vaxis" "[-1 0 0 -192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2821" + "plane" "(-54 38 -4) (-54 34 -4) (-42 34 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 1 0 -92] 0.25" + "vaxis" "[-1 0 0 -192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2820" + "plane" "(-42 38 -4) (-42 38 0) (-54 38 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[-1 0 0 194] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2819" + "plane" "(-54 38 -4) (-54 38 0) (-54 34 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[0 -1 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2818" + "plane" "(-42 34 -4) (-42 34 0) (-42 38 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[0 1 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2817" + "plane" "(-54 34 -4) (-54 34 0) (-42 34 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[-1 0 0 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "comments" "Just to help with positioning. The classname means the template code ignores this." + "logicalpos" "[0 5500]" + } +} +entity +{ + "id" "2614" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "2615" + side + { + "id" "2882" + "plane" "(-32 64 -4) (32 64 -4) (32 64 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2881" + "plane" "(32 34 -4) (-32 34 -4) (-32 34 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2880" + "plane" "(32 34 4) (-32 34 4) (-32 64 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2879" + "plane" "(32 64 -4) (-32 64 -4) (-32 34 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2878" + "plane" "(-32 34 4) (-32 34 -4) (-32 64 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2877" + "plane" "(32 64 4) (32 64 -4) (32 34 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2616" + side + { + "id" "2888" + "plane" "(-32 -34 -4) (-32 34 -4) (-32 34 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2887" + "plane" "(-2 34 -4) (-2 -34 -4) (-2 -34 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2886" + "plane" "(-32 -34 4) (-32 34 4) (-2 34 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2885" + "plane" "(-32 34 -4) (-32 -34 -4) (-2 -34 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2884" + "plane" "(-2 -34 4) (-2 -34 -4) (-32 -34 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2883" + "plane" "(-32 34 4) (-32 34 -4) (-2 34 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2617" + side + { + "id" "2894" + "plane" "(32 34 -4) (32 -34 -4) (32 -34 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2893" + "plane" "(2 -34 -4) (2 34 -4) (2 34 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2892" + "plane" "(2 -34 4) (2 34 4) (32 34 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2891" + "plane" "(2 34 -4) (2 -34 -4) (32 -34 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2890" + "plane" "(2 34 4) (2 34 -4) (32 34 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2889" + "plane" "(32 -34 4) (32 -34 -4) (2 -34 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2618" + side + { + "id" "2900" + "plane" "(32 -64 -4) (-32 -64 -4) (-32 -64 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2899" + "plane" "(-32 -34 -4) (32 -34 -4) (32 -34 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2898" + "plane" "(32 -64 4) (-32 -64 4) (-32 -34 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2897" + "plane" "(32 -34 -4) (-32 -34 -4) (-32 -64 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2896" + "plane" "(32 -34 4) (32 -34 -4) (32 -64 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2895" + "plane" "(-32 -64 4) (-32 -64 -4) (-32 -34 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupid" "19" + "visgroupshown" "1" + "visgroupautoshown" "1" + "comments" "Collision type set by code." + "logicalpos" "[0 -9768]" + } +} +entity +{ + "id" "2619" + "classname" "func_detail" + solid + { + "id" "2620" + side + { + "id" "2906" + "plane" "(32 64 4) (-32 64 4) (-32 64 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2905" + "plane" "(-32 38 4) (32 38 4) (32 38 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2904" + "plane" "(-32 64 4) (32 64 4) (32 38 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2903" + "plane" "(-32 38 -4) (32 38 -4) (32 64 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2902" + "plane" "(-32 64 -4) (-32 64 4) (-32 38 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2901" + "plane" "(32 38 -4) (32 38 4) (32 64 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2621" + side + { + "id" "2912" + "plane" "(-32 38 4) (-32 -38 4) (-32 -38 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2911" + "plane" "(-6 -38 4) (-6 38 4) (-6 38 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2910" + "plane" "(-6 38 4) (-6 -38 4) (-32 -38 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2909" + "plane" "(-6 -38 -4) (-6 38 -4) (-32 38 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2908" + "plane" "(-32 -38 -4) (-32 -38 4) (-6 -38 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2907" + "plane" "(-6 38 -4) (-6 38 4) (-32 38 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2622" + side + { + "id" "2918" + "plane" "(32 -38 4) (32 38 4) (32 38 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2917" + "plane" "(6 38 4) (6 -38 4) (6 -38 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2916" + "plane" "(32 38 4) (32 -38 4) (6 -38 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2915" + "plane" "(32 -38 -4) (32 38 -4) (6 38 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2914" + "plane" "(32 38 -4) (32 38 4) (6 38 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2913" + "plane" "(6 -38 -4) (6 -38 4) (32 -38 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2623" + side + { + "id" "2924" + "plane" "(-32 -64 4) (32 -64 4) (32 -64 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2923" + "plane" "(32 -38 4) (-32 -38 4) (-32 -38 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2922" + "plane" "(-32 -38 4) (32 -38 4) (32 -64 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2921" + "plane" "(-32 -64 -4) (32 -64 -4) (32 -38 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2920" + "plane" "(32 -64 -4) (32 -64 4) (32 -38 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2919" + "plane" "(-32 -38 -4) (-32 -38 4) (-32 -64 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "19" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -9768]" + } +} +entity +{ + "id" "2624" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grating" "0" + "coll_oob" "0" + "coll_solid" "0" + "coll_temporary" "0" + "tags" "footprint" + solid + { + "id" "2625" + side + { + "id" "2930" + "plane" "(6 38 -8) (-6 38 -8) (-6 -38 -8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2929" + "plane" "(6 -38 8) (-6 -38 8) (-6 38 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2928" + "plane" "(6 -38 -8) (-6 -38 -8) (-6 -38 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2927" + "plane" "(-6 -38 -8) (-6 38 -8) (-6 38 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2926" + "plane" "(-6 38 -8) (6 38 -8) (6 38 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2925" + "plane" "(6 38 -8) (6 -38 -8) (6 -38 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 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" + } + } + editor + { + "color" "220 30 220" + "visgroupid" "19" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "2706" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "2790" + side + { + "id" "3206" + "plane" "(-64 64 0) (-32 64 0) (-32 64 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3205" + "plane" "(-32 34 0) (-64 34 0) (-64 34 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3204" + "plane" "(-32 34 4) (-64 34 4) (-64 64 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3203" + "plane" "(-32 64 0) (-64 64 0) (-64 34 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3202" + "plane" "(-32 64 4) (-32 64 0) (-32 34 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3201" + "plane" "(-64 34 4) (-64 34 0) (-64 64 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 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" "2791" + side + { + "id" "3212" + "plane" "(-50 34 0) (-50 -34 0) (-50 -34 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3211" + "plane" "(-64 34 4) (-50 34 4) (-50 -34 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3210" + "plane" "(-64 -34 0) (-50 -34 0) (-50 34 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3209" + "plane" "(-50 -34 4) (-50 -34 0) (-64 -34 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3208" + "plane" "(-64 34 0) (-50 34 0) (-50 34 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3207" + "plane" "(-64 -34 0) (-64 34 0) (-64 34 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 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" "2792" + side + { + "id" "3218" + "plane" "(-46 -34 0) (-46 34 0) (-46 34 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3217" + "plane" "(-46 -34 4) (-46 34 4) (-32 34 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3216" + "plane" "(-46 34 0) (-46 -34 0) (-32 -34 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3215" + "plane" "(-46 34 4) (-46 34 0) (-32 34 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3214" + "plane" "(-32 -34 0) (-46 -34 0) (-46 -34 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3213" + "plane" "(-32 34 0) (-32 -34 0) (-32 -34 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 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" "2793" + side + { + "id" "3224" + "plane" "(-32 -64 0) (-64 -64 0) (-64 -64 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3223" + "plane" "(-64 -34 0) (-32 -34 0) (-32 -34 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3222" + "plane" "(-32 -64 4) (-64 -64 4) (-64 -34 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3221" + "plane" "(-32 -34 0) (-64 -34 0) (-64 -64 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3220" + "plane" "(-32 -34 4) (-32 -34 0) (-32 -64 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3219" + "plane" "(-64 -64 4) (-64 -64 0) (-64 -34 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 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" + } + } + editor + { + "color" "220 30 220" + "visgroupid" "20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "comments" "Collision type set by code." + "logicalpos" "[0 -9768]" + } +} +entity +{ + "id" "2711" + "classname" "func_detail" + solid + { + "id" "2794" + side + { + "id" "3230" + "plane" "(-64 64 -4) (-32 64 -4) (-32 64 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3229" + "plane" "(-32 38 -4) (-64 38 -4) (-64 38 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3228" + "plane" "(-32 38 4) (-64 38 4) (-64 64 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3227" + "plane" "(-32 64 -4) (-64 64 -4) (-64 38 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3226" + "plane" "(-32 64 4) (-32 64 -4) (-32 38 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3225" + "plane" "(-64 38 4) (-64 38 -4) (-64 64 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2795" + side + { + "id" "3236" + "plane" "(-54 38 -4) (-54 -38 -4) (-54 -38 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3235" + "plane" "(-64 38 4) (-54 38 4) (-54 -38 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3234" + "plane" "(-64 -38 -4) (-54 -38 -4) (-54 38 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3233" + "plane" "(-54 -38 4) (-54 -38 -4) (-64 -38 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3232" + "plane" "(-64 38 -4) (-54 38 -4) (-54 38 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3231" + "plane" "(-64 -38 -4) (-64 38 -4) (-64 38 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2796" + side + { + "id" "3242" + "plane" "(-42 -38 -4) (-42 38 -4) (-42 38 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3241" + "plane" "(-42 -38 4) (-42 38 4) (-32 38 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3240" + "plane" "(-42 38 -4) (-42 -38 -4) (-32 -38 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3239" + "plane" "(-42 38 4) (-42 38 -4) (-32 38 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3238" + "plane" "(-32 -38 -4) (-42 -38 -4) (-42 -38 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3237" + "plane" "(-32 38 -4) (-32 -38 -4) (-32 -38 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2797" + side + { + "id" "3248" + "plane" "(-32 -64 -4) (-64 -64 -4) (-64 -64 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3247" + "plane" "(-64 -38 -4) (-32 -38 -4) (-32 -38 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3246" + "plane" "(-32 -64 4) (-64 -64 4) (-64 -38 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3245" + "plane" "(-32 -38 -4) (-64 -38 -4) (-64 -64 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3244" + "plane" "(-32 -38 4) (-32 -38 -4) (-32 -64 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3243" + "plane" "(-64 -64 4) (-64 -64 -4) (-64 -38 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -9768]" + } +} +entity +{ + "id" "2716" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grating" "0" + "coll_oob" "0" + "coll_solid" "0" + "coll_temporary" "0" + "tags" "footprint" + solid + { + "id" "2798" + side + { + "id" "3254" + "plane" "(-42 38 -8) (-54 38 -8) (-54 -38 -8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3253" + "plane" "(-42 -38 8) (-54 -38 8) (-54 38 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3252" + "plane" "(-42 -38 -8) (-54 -38 -8) (-54 -38 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3251" + "plane" "(-54 -38 -8) (-54 38 -8) (-54 38 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3250" + "plane" "(-54 38 -8) (-42 38 -8) (-42 38 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3249" + "plane" "(-42 38 -8) (-42 -38 -8) (-42 -38 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 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" + } + } + editor + { + "color" "220 30 220" + "visgroupid" "20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "2479" + "classname" "func_wall" + "_minlight" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "drawinfastreflection" "0" + "origin" "0 0 -2" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "vrad_brush_cast_shadows" "0" + solid + { + "id" "2480" + side + { + "id" "2600" + "plane" "(-28 28 0) (-24 24 0) (-24 -24 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[-1 0 0 -52] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2599" + "plane" "(-24 -24 -4) (-24 24 -4) (-28 28 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[-1 0 0 -52] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2598" + "plane" "(-28 28 0) (-28 -28 0) (-28 -28 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[0 -1 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2597" + "plane" "(-28 -28 0) (-24 -24 0) (-24 -24 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2596" + "plane" "(-24 24 0) (-28 28 0) (-28 28 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2595" + "plane" "(-24 -24 0) (-24 24 0) (-24 24 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2481" + side + { + "id" "2606" + "plane" "(28 -28 0) (24 -24 0) (24 24 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 -52] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2605" + "plane" "(24 24 -4) (24 -24 -4) (28 -28 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 -52] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2604" + "plane" "(28 -28 0) (28 28 0) (28 28 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[0 1 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2603" + "plane" "(28 28 0) (24 24 0) (24 24 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 -0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2602" + "plane" "(24 -24 0) (28 -28 0) (28 -28 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2601" + "plane" "(24 24 0) (24 -24 0) (24 -24 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[0 1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2482" + side + { + "id" "2612" + "plane" "(24 -24 0) (28 -28 0) (-28 -28 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 -1 0 -52] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2611" + "plane" "(-24 -24 -4) (-28 -28 -4) (28 -28 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 -1 0 -52] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2610" + "plane" "(28 -28 0) (28 -28 -4) (-28 -28 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[1 0 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2609" + "plane" "(24 -24 0) (24 -24 -4) (28 -28 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2608" + "plane" "(-28 -28 0) (-28 -28 -4) (-24 -24 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 -0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2607" + "plane" "(-24 -24 0) (-24 -24 -4) (24 -24 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[1 0 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2483" + side + { + "id" "2618" + "plane" "(24 24 0) (-24 24 0) (-28 28 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 1 0 -52] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2617" + "plane" "(24 24 -4) (28 28 -4) (-28 28 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 1 0 -52] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2616" + "plane" "(-28 28 0) (-28 28 -4) (28 28 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[-1 0 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2615" + "plane" "(-24 24 0) (-24 24 -4) (-28 28 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2614" + "plane" "(28 28 0) (28 28 -4) (24 24 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2613" + "plane" "(24 24 0) (24 24 -4) (-24 24 -4)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 17] 0.25" + "vaxis" "[-1 0 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "comments" "Just to help with positioning. The classname means the template code ignores this." + "logicalpos" "[0 5500]" + } +} +entity +{ + "id" "2547" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "2548" + side + { + "id" "2648" + "plane" "(-32 32 -4) (32 32 -4) (32 32 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2647" + "plane" "(32 24 -4) (-32 24 -4) (-32 24 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2646" + "plane" "(32 24 0) (-32 24 0) (-32 32 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2645" + "plane" "(32 32 -4) (-32 32 -4) (-32 24 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2644" + "plane" "(-32 24 0) (-32 24 -4) (-32 32 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2643" + "plane" "(32 32 0) (32 32 -4) (32 24 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2549" + side + { + "id" "2654" + "plane" "(-32 -24 -4) (-32 24 -4) (-32 24 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2653" + "plane" "(-24 24 -4) (-24 -24 -4) (-24 -24 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2652" + "plane" "(-32 -24 0) (-32 24 0) (-24 24 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2651" + "plane" "(-32 24 -4) (-32 -24 -4) (-24 -24 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2650" + "plane" "(-24 -24 0) (-24 -24 -4) (-32 -24 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2649" + "plane" "(-32 24 0) (-32 24 -4) (-24 24 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2550" + side + { + "id" "2660" + "plane" "(32 24 -4) (32 -24 -4) (32 -24 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2659" + "plane" "(24 -24 -4) (24 24 -4) (24 24 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2658" + "plane" "(24 -24 0) (24 24 0) (32 24 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2657" + "plane" "(24 24 -4) (24 -24 -4) (32 -24 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2656" + "plane" "(24 24 0) (24 24 -4) (32 24 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2655" + "plane" "(32 -24 0) (32 -24 -4) (24 -24 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2551" + side + { + "id" "2666" + "plane" "(32 -32 -4) (-32 -32 -4) (-32 -32 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2665" + "plane" "(-32 -24 -4) (32 -24 -4) (32 -24 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2664" + "plane" "(32 -32 0) (-32 -32 0) (-32 -24 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2663" + "plane" "(32 -24 -4) (-32 -24 -4) (-32 -32 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2662" + "plane" "(32 -24 0) (32 -24 -4) (32 -32 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2661" + "plane" "(-32 -32 0) (-32 -32 -4) (-32 -24 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupid" "17" + "visgroupshown" "1" + "visgroupautoshown" "1" + "comments" "Collision type set by code." + "logicalpos" "[0 -9768]" + } +} +entity +{ + "id" "2557" + "classname" "func_detail" + solid + { + "id" "2558" + side + { + "id" "2696" + "plane" "(32 32 -4) (32 32 4) (-32 32 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2695" + "plane" "(-32 28 -4) (-32 28 4) (32 28 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2694" + "plane" "(-32 28 4) (-32 32 4) (32 32 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2693" + "plane" "(-32 32 -4) (-32 28 -4) (32 28 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2692" + "plane" "(-32 28 -4) (-32 32 -4) (-32 32 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2691" + "plane" "(32 32 -4) (32 28 -4) (32 28 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2559" + side + { + "id" "2702" + "plane" "(-32 28 -4) (-32 28 4) (-32 -28 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2701" + "plane" "(-28 -28 -4) (-28 -28 4) (-28 28 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2700" + "plane" "(-32 28 4) (-28 28 4) (-28 -28 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2699" + "plane" "(-32 -28 -4) (-28 -28 -4) (-28 28 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2698" + "plane" "(-28 -28 -4) (-32 -28 -4) (-32 -28 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2697" + "plane" "(-32 28 -4) (-28 28 -4) (-28 28 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2560" + side + { + "id" "2708" + "plane" "(32 -28 -4) (32 -28 4) (32 28 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2707" + "plane" "(28 28 -4) (28 28 4) (28 -28 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2706" + "plane" "(28 28 4) (32 28 4) (32 -28 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2705" + "plane" "(28 -28 -4) (32 -28 -4) (32 28 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2704" + "plane" "(28 28 -4) (32 28 -4) (32 28 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2703" + "plane" "(32 -28 -4) (28 -28 -4) (28 -28 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2561" + side + { + "id" "2714" + "plane" "(-32 -32 -4) (-32 -32 4) (32 -32 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2713" + "plane" "(32 -28 -4) (32 -28 4) (-32 -28 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2712" + "plane" "(-32 -32 4) (-32 -28 4) (32 -28 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2711" + "plane" "(-32 -28 -4) (-32 -32 -4) (32 -32 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2710" + "plane" "(32 -28 -4) (32 -32 -4) (32 -32 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2709" + "plane" "(-32 -32 -4) (-32 -28 -4) (-32 -28 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "17" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -9768]" + } +} +entity +{ + "id" "2586" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grating" "0" + "coll_oob" "0" + "coll_solid" "0" + "coll_temporary" "0" + "tags" "footprint" + solid + { + "id" "2587" + side + { + "id" "2726" + "plane" "(28 28 -8) (-28 28 -8) (-28 -28 -8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2725" + "plane" "(28 -28 8) (-28 -28 8) (-28 28 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2724" + "plane" "(28 -28 -8) (-28 -28 -8) (-28 -28 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2723" + "plane" "(-28 -28 -8) (-28 28 -8) (-28 28 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2722" + "plane" "(-28 28 -8) (28 28 -8) (28 28 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2721" + "plane" "(28 28 -8) (28 -28 -8) (28 -28 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 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" + } + } + editor + { + "color" "220 30 220" + "visgroupid" "17" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "2435" + "classname" "bee2_collision_volume" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grating" "0" + "coll_oob" "0" + "coll_solid" "0" + "coll_temporary" "0" + "tags" "footprint" + solid + { + "id" "2433" + side + { + "id" "2523" + "plane" "(-80 -40 -2) (-80 40 -2) (-80 40 2)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2522" + "plane" "(80 40 -2) (80 -40 -2) (80 -40 2)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2521" + "plane" "(-80 40 -2) (-80 -40 -2) (-40 -80 -2)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2520" + "plane" "(-80 -40 2) (-80 40 2) (-40 80 2)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2519" + "plane" "(-40 80 -2) (40 80 -2) (40 80 2)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2518" + "plane" "(40 -80 -2) (-40 -80 -2) (-40 -80 2)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2517" + "plane" "(-40 -80 -2) (-80 -40 -2) (-80 -40 2)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2516" + "plane" "(-80 40 2) (-80 40 -2) (-40 80 -2)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2515" + "plane" "(40 80 -2) (80 40 -2) (80 40 2)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2514" + "plane" "(80 -40 2) (80 -40 -2) (40 -80 -2)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 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" + } + } + editor + { + "color" "220 30 220" + "visgroupid" "10" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "2444" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grating" "0" + "coll_oob" "0" + "coll_solid" "0" + "coll_temporary" "0" + "tags" "footprint" + solid + { + "id" "2465" + side + { + "id" "2570" + "plane" "(20 20 -8) (-20 20 -8) (-20 -20 -8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2569" + "plane" "(20 -20 8) (-20 -20 8) (-20 20 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2568" + "plane" "(20 -20 -8) (-20 -20 -8) (-20 -20 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2567" + "plane" "(-20 -20 -8) (-20 20 -8) (-20 20 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2566" + "plane" "(-20 20 -8) (20 20 -8) (20 20 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2565" + "plane" "(20 20 -8) (20 -20 -8) (20 -20 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 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" + } + } + editor + { + "color" "220 30 220" + "visgroupid" "7" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "1895" + "classname" "func_wall" + "_minlight" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "drawinfastreflection" "0" + "origin" "0 0 -10" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "vrad_brush_cast_shadows" "0" + solid + { + "id" "1896" + side + { + "id" "2110" + "plane" "(-14 -14 -8) (-18 -18 -8) (-18 18 -8)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[-1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2109" + "plane" "(-18 18 -12) (-18 -18 -12) (-14 -14 -12)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[-1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2108" + "plane" "(-18 18 -8) (-18 -18 -8) (-18 -18 -12)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 49] 0.25" + "vaxis" "[0 -1 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2107" + "plane" "(-14 -14 -12) (-18 -18 -12) (-18 -18 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2106" + "plane" "(-14 14 -8) (-18 18 -8) (-18 18 -12)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2105" + "plane" "(-14 -14 -8) (-14 14 -8) (-14 14 -12)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 49] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1897" + side + { + "id" "2116" + "plane" "(14 14 -8) (18 18 -8) (18 -18 -8)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2115" + "plane" "(18 -18 -12) (18 18 -12) (14 14 -12)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2114" + "plane" "(18 -18 -8) (18 18 -8) (18 18 -12)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 49] 0.25" + "vaxis" "[0 1 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2113" + "plane" "(18 18 -8) (14 14 -8) (14 14 -12)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 -0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2112" + "plane" "(18 -18 -12) (14 -14 -12) (14 -14 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2111" + "plane" "(14 14 -8) (14 -14 -8) (14 -14 -12)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 49] 0.25" + "vaxis" "[0 1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1898" + side + { + "id" "2122" + "plane" "(18 -18 -8) (-18 -18 -8) (-14 -14 -8)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 -1 0 -12] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2121" + "plane" "(-18 -18 -12) (18 -18 -12) (14 -14 -12)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 -1 0 -12] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2120" + "plane" "(18 -18 -12) (-18 -18 -12) (-18 -18 -8)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 49] 0.25" + "vaxis" "[1 0 0 386] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2119" + "plane" "(18 -18 -8) (14 -14 -8) (14 -14 -12)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2118" + "plane" "(-14 -14 -8) (-18 -18 -8) (-18 -18 -12)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 -0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2117" + "plane" "(14 -14 -8) (-14 -14 -8) (-14 -14 -12)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 49] 0.25" + "vaxis" "[1 0 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1899" + side + { + "id" "2128" + "plane" "(-14 14 -8) (-18 18 -8) (18 18 -8)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2127" + "plane" "(18 18 -12) (-18 18 -12) (-14 14 -12)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2126" + "plane" "(18 18 -8) (-18 18 -8) (-18 18 -12)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 49] 0.25" + "vaxis" "[-1 0 0 -126] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2125" + "plane" "(-14 14 -12) (-18 18 -12) (-18 18 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2124" + "plane" "(18 18 -12) (14 14 -12) (14 14 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2123" + "plane" "(14 14 -12) (-14 14 -12) (-14 14 -8)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 49] 0.25" + "vaxis" "[-1 0 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "comments" "Just to help with positioning. The classname means the template code ignores this." + "logicalpos" "[0 5500]" + } +} +entity +{ + "id" "1960" + "classname" "func_wall" + "_minlight" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "drawinfastreflection" "0" + "origin" "0 0 0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "targetname" "large" + "vrad_brush_cast_shadows" "0" + solid + { + "id" "1961" + side + { + "id" "2278" + "plane" "(72 -32 -2) (80 -40 -2) (80 40 -2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2277" + "plane" "(72 32 2) (80 40 2) (80 -40 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2276" + "plane" "(80 -40 -2) (80 -40 2) (80 40 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 -1 -286.523] 0.3" + "vaxis" "[0 1 0 -17.137] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2275" + "plane" "(72 32 -2) (72 32 2) (72 -32 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 1 -226] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2274" + "plane" "(80 40 -2) (80 40 2) (72 32 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 -0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2273" + "plane" "(72 -32 -2) (72 -32 2) (80 -40 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 0] 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" "1962" + side + { + "id" "2284" + "plane" "(72 -32 -2) (32 -72 -2) (40 -80 -2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[-0.707107 0.707107 0 7.98649] 0.3" + "vaxis" "[-0.707107 -0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2283" + "plane" "(32 -72 2) (72 -32 2) (80 -40 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[-0.707107 0.707107 0 7.98649] 0.3" + "vaxis" "[-0.707107 -0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2282" + "plane" "(32 -72 -2) (32 -72 2) (40 -80 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2281" + "plane" "(80 -40 -2) (80 -40 2) (72 -32 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2280" + "plane" "(40 -80 -2) (40 -80 2) (80 -40 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 -1 -286.523] 0.3" + "vaxis" "[-0.707107 -0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2279" + "plane" "(72 -32 -2) (72 -32 2) (32 -72 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 1 -226] 0.25" + "vaxis" "[-0.707107 -0.707107 0 241.137] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1963" + side + { + "id" "2290" + "plane" "(32 72 -2) (72 32 -2) (80 40 -2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[-0.707107 -0.707107 0 7.98649] 0.3" + "vaxis" "[-0.707107 0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2289" + "plane" "(72 32 2) (32 72 2) (40 80 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[-0.707107 -0.707107 0 7.98649] 0.3" + "vaxis" "[-0.707107 0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2288" + "plane" "(40 80 -2) (40 80 2) (32 72 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 -0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2287" + "plane" "(72 32 -2) (72 32 2) (80 40 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2286" + "plane" "(80 40 -2) (80 40 2) (40 80 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 -1 -286.523] 0.3" + "vaxis" "[-0.707107 0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2285" + "plane" "(32 72 -2) (32 72 2) (72 32 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 1 -225.477] 0.3" + "vaxis" "[-0.707107 0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1964" + side + { + "id" "2296" + "plane" "(-80 -40 -2) (-72 -32 -2) (-72 32 -2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2295" + "plane" "(-80 40 2) (-72 32 2) (-72 -32 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2294" + "plane" "(-80 40 -2) (-80 40 2) (-80 -40 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 1 218] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2293" + "plane" "(-72 -32 -2) (-72 -32 2) (-72 32 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 1 -226] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2292" + "plane" "(-80 -40 -2) (-80 -40 2) (-72 -32 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2291" + "plane" "(-72 32 -2) (-72 32 2) (-80 40 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 0] 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" "1965" + side + { + "id" "2302" + "plane" "(-40 80 -2) (-80 40 -2) (-72 32 -2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0.707107 -0.707107 0 7.98652] 0.3" + "vaxis" "[0.707107 0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2301" + "plane" "(-80 40 2) (-40 80 2) (-32 72 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0.707107 -0.707107 0 7.98652] 0.3" + "vaxis" "[0.707107 0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2300" + "plane" "(-32 72 -2) (-32 72 2) (-40 80 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2299" + "plane" "(-80 40 -2) (-80 40 2) (-72 32 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2298" + "plane" "(-40 80 -2) (-40 80 2) (-80 40 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 -1 -286.523] 0.3" + "vaxis" "[0.707107 0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2297" + "plane" "(-72 32 -2) (-72 32 2) (-32 72 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 1 -225.477] 0.3" + "vaxis" "[0.707107 0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1966" + side + { + "id" "2308" + "plane" "(-80 -40 -2) (-40 -80 -2) (-32 -72 -2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0.707107 0.707107 0 61] 0.25" + "vaxis" "[0.707107 -0.707107 0 241] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2307" + "plane" "(-40 -80 2) (-80 -40 2) (-72 -32 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0.707107 0.707107 0 61] 0.25" + "vaxis" "[0.707107 -0.707107 0 241] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2306" + "plane" "(-40 -80 -2) (-40 -80 2) (-32 -72 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2305" + "plane" "(-72 -32 -2) (-72 -32 2) (-80 -40 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 -0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2304" + "plane" "(-80 -40 -2) (-80 -40 2) (-40 -80 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 -1 -292.411] 0.25" + "vaxis" "[0.707107 -0.707106 0 241] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2303" + "plane" "(-32 -72 -2) (-32 -72 2) (-72 -32 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 1 -219.156] 0.25" + "vaxis" "[0.707107 -0.707107 0 241] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1967" + side + { + "id" "2314" + "plane" "(-40 80 -2) (-32 72 -2) (32 72 -2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2313" + "plane" "(-32 72 2) (-40 80 2) (40 80 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2312" + "plane" "(40 80 -2) (40 80 2) (-40 80 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 -1 -286] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2311" + "plane" "(-32 72 -2) (-32 72 2) (32 72 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 1 -226] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2310" + "plane" "(-40 80 -2) (-40 80 2) (-32 72 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2309" + "plane" "(32 72 -2) (32 72 2) (40 80 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 0] 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" "1968" + side + { + "id" "2320" + "plane" "(-32 -72 -2) (-40 -80 -2) (40 -80 -2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2319" + "plane" "(-40 -80 2) (-32 -72 2) (32 -72 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2318" + "plane" "(-40 -80 -2) (-40 -80 2) (40 -80 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 -1 -286] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2317" + "plane" "(32 -72 -2) (32 -72 2) (-32 -72 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 1 -226] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2316" + "plane" "(40 -80 -2) (40 -80 2) (32 -72 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2315" + "plane" "(-32 -72 -2) (-32 -72 2) (-40 -80 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 -0.707107 0 0] 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" + } + } + editor + { + "color" "220 30 220" + "visgroupid" "18" + "visgroupshown" "1" + "visgroupautoshown" "1" + "comments" "Just to help with positioning.The classname means the template code ignores this." + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "2205" + "classname" "func_wall" + "_minlight" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "drawinfastreflection" "0" + "origin" "128 128 0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "vrad_brush_cast_shadows" "0" + solid + { + "id" "2206" + side + { + "id" "2374" + "plane" "(208 88 -2) (208 168 -2) (200 160 -2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2373" + "plane" "(208 168 2) (208 88 2) (200 96 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2372" + "plane" "(208 168 -2) (208 88 -2) (208 88 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 -1 -286.523] 0.3" + "vaxis" "[0 1 0 -17.137] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2371" + "plane" "(200 96 -2) (200 160 -2) (200 160 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 1 -226] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2370" + "plane" "(200 160 -2) (208 168 -2) (208 168 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 -0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2369" + "plane" "(200 96 2) (208 88 2) (208 88 -2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 0] 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" "2207" + side + { + "id" "2380" + "plane" "(160 56 -2) (168 48 -2) (208 88 -2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[-0.707107 0.707107 0 7.98651] 0.3" + "vaxis" "[-0.707107 -0.707107 0 468.078] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2379" + "plane" "(200 96 2) (208 88 2) (168 48 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[-0.707107 0.707107 0 7.98651] 0.3" + "vaxis" "[-0.707107 -0.707107 0 468.078] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2378" + "plane" "(160 56 2) (168 48 2) (168 48 -2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2377" + "plane" "(200 96 -2) (208 88 -2) (208 88 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2376" + "plane" "(168 48 2) (208 88 2) (208 88 -2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 -1 -286.523] 0.3" + "vaxis" "[-0.707107 -0.707107 0 468.078] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2375" + "plane" "(160 56 -2) (200 96 -2) (200 96 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 1 -226] 0.25" + "vaxis" "[-0.707107 -0.707107 0 453.214] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2208" + side + { + "id" "2386" + "plane" "(200 160 -2) (208 168 -2) (168 208 -2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[-0.707107 -0.707107 0 99.3845] 0.3" + "vaxis" "[-0.707107 0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2385" + "plane" "(160 200 2) (168 208 2) (208 168 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[-0.707107 -0.707107 0 99.3845] 0.3" + "vaxis" "[-0.707107 0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2384" + "plane" "(160 200 -2) (168 208 -2) (168 208 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 -0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2383" + "plane" "(200 160 2) (208 168 2) (208 168 -2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2382" + "plane" "(168 208 -2) (208 168 -2) (208 168 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 -1 -286.523] 0.3" + "vaxis" "[-0.707107 0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2381" + "plane" "(160 200 2) (200 160 2) (200 160 -2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 1 -225.477] 0.3" + "vaxis" "[-0.707107 0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2209" + side + { + "id" "2392" + "plane" "(56 96 -2) (56 160 -2) (48 168 -2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[1 0 0 -464] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2391" + "plane" "(56 160 2) (56 96 2) (48 88 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[1 0 0 -464] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2390" + "plane" "(48 88 -2) (48 168 -2) (48 168 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 1 218] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2389" + "plane" "(56 160 -2) (56 96 -2) (56 96 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 1 -226] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2388" + "plane" "(48 88 2) (56 96 2) (56 96 -2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2387" + "plane" "(48 168 -2) (56 160 -2) (56 160 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 0] 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" "2210" + side + { + "id" "2398" + "plane" "(48 168 -2) (56 160 -2) (96 200 -2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0.707107 -0.707107 0 7.98651] 0.3" + "vaxis" "[0.707107 0.707107 0 -468.078] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2397" + "plane" "(88 208 2) (96 200 2) (56 160 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0.707107 -0.707107 0 7.98651] 0.3" + "vaxis" "[0.707107 0.707107 0 -468.078] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2396" + "plane" "(88 208 -2) (96 200 -2) (96 200 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2395" + "plane" "(48 168 2) (56 160 2) (56 160 -2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2394" + "plane" "(48 168 -2) (88 208 -2) (88 208 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 -1 -286.523] 0.3" + "vaxis" "[0.707107 0.707107 0 -468.078] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2393" + "plane" "(56 160 2) (96 200 2) (96 200 -2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 1 -225.477] 0.3" + "vaxis" "[0.707107 0.707107 0 -468.078] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2211" + side + { + "id" "2404" + "plane" "(88 48 -2) (96 56 -2) (56 96 -2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0.707107 0.707107 0 -151.078] 0.25" + "vaxis" "[0.707107 -0.707107 0 -271] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2403" + "plane" "(48 88 2) (56 96 2) (96 56 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0.707107 0.707107 0 -151.078] 0.25" + "vaxis" "[0.707107 -0.707107 0 -271] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2402" + "plane" "(88 48 2) (96 56 2) (96 56 -2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2401" + "plane" "(48 88 -2) (56 96 -2) (56 96 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 -0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2400" + "plane" "(48 88 2) (88 48 2) (88 48 -2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 -1 -292.411] 0.25" + "vaxis" "[0.707107 -0.707106 0 -271] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2399" + "plane" "(56 96 -2) (96 56 -2) (96 56 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 1 -219.156] 0.25" + "vaxis" "[0.707107 -0.707107 0 -271] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2212" + side + { + "id" "2410" + "plane" "(96 200 -2) (160 200 -2) (168 208 -2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2409" + "plane" "(88 208 2) (168 208 2) (160 200 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2408" + "plane" "(88 208 -2) (168 208 -2) (168 208 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 -1 -286] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2407" + "plane" "(96 200 2) (160 200 2) (160 200 -2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 1 -226] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2406" + "plane" "(88 208 2) (96 200 2) (96 200 -2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2405" + "plane" "(160 200 2) (168 208 2) (168 208 -2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 0] 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" "2213" + side + { + "id" "2416" + "plane" "(88 48 -2) (168 48 -2) (160 56 -2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 1 0 -464] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2415" + "plane" "(96 56 2) (160 56 2) (168 48 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 1 0 -464] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2414" + "plane" "(88 48 2) (168 48 2) (168 48 -2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 -1 -286] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2413" + "plane" "(96 56 -2) (160 56 -2) (160 56 2)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 1 -226] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2412" + "plane" "(160 56 -2) (168 48 -2) (168 48 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2411" + "plane" "(88 48 -2) (96 56 -2) (96 56 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 -0.707107 0 0] 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" + } + } + editor + { + "color" "220 30 220" + "visgroupid" "18" + "visgroupshown" "1" + "visgroupautoshown" "1" + "comments" "Just to help with positioning.The classname means the template code ignores this." + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "2302" + "classname" "bee2_collision_volume" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grating" "0" + "coll_oob" "0" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "2338" + side + { + "id" "2456" + "plane" "(56 96 4) (96 56 4) (72 32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2455" + "plane" "(32 72 0) (72 32 0) (96 56 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2454" + "plane" "(72 32 0) (32 72 0) (32 72 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2453" + "plane" "(56 96 0) (96 56 0) (96 56 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2452" + "plane" "(32 72 0) (56 96 0) (56 96 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2451" + "plane" "(96 56 0) (72 32 0) (72 32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 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" + } + } + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "2347" + "classname" "bee2_collision_volume" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grating" "0" + "coll_oob" "0" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "1788" + side + { + "id" "2462" + "plane" "(64 64 4) (72 64 4) (72 32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2461" + "plane" "(52 52 0) (72 32 0) (72 64 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2460" + "plane" "(64 64 0) (64 64 4) (52 52 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2459" + "plane" "(72 32 0) (72 32 4) (72 64 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2458" + "plane" "(72 64 0) (72 64 4) (64 64 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2457" + "plane" "(52 52 0) (52 52 4) (72 32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1779" + side + { + "id" "2468" + "plane" "(32 72 4) (64 72 4) (64 64 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2467" + "plane" "(52 52 0) (64 64 0) (64 72 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2466" + "plane" "(32 72 0) (32 72 4) (52 52 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2465" + "plane" "(64 64 0) (64 64 4) (64 72 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2464" + "plane" "(64 72 0) (64 72 4) (32 72 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2463" + "plane" "(52 52 0) (52 52 4) (64 64 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupid" "10" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "2369" + "classname" "bee2_collision_volume" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grating" "0" + "coll_oob" "0" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "1579" + side + { + "id" "2473" + "plane" "(72 72 4) (72 32 4) (32 72 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2472" + "plane" "(32 72 0) (72 32 0) (72 72 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2471" + "plane" "(72 72 0) (72 72 4) (32 72 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2470" + "plane" "(72 32 0) (72 32 4) (72 72 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2469" + "plane" "(32 72 0) (32 72 4) (72 32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupid" "11" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +hidden +{ + entity + { + "id" "1654" + "classname" "func_instance" + "angles" "-0 -1.70755e-006 0" + "file" "instances/bee2/50s/items/barrier/glass_hole_small.vmf" + "replace01" "$start_open 0" + "targetname" "gh18" + "origin" "0 0 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "1471" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "1472" + side + { + "id" "1744" + "plane" "(32 32 4) (-32 32 4) (-32 32 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1743" + "plane" "(32 14 0) (-32 14 0) (-32 14 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1742" + "plane" "(32 14 4) (-32 14 4) (-32 32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1741" + "plane" "(32 32 0) (-32 32 0) (-32 14 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1740" + "plane" "(-32 32 0) (-32 32 4) (-32 14 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1739" + "plane" "(32 14 0) (32 14 4) (32 32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1473" + side + { + "id" "1750" + "plane" "(-32 14 4) (-32 -14 4) (-32 -14 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1749" + "plane" "(-14 -14 4) (-14 14 4) (-14 14 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1748" + "plane" "(-32 -14 4) (-32 14 4) (-14 14 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1747" + "plane" "(-32 14 0) (-32 -14 0) (-14 -14 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1746" + "plane" "(-32 -14 0) (-32 -14 4) (-14 -14 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1745" + "plane" "(-32 14 4) (-32 14 0) (-14 14 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1474" + side + { + "id" "1756" + "plane" "(32 -14 4) (32 14 4) (32 14 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1755" + "plane" "(14 14 4) (14 -14 4) (14 -14 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1754" + "plane" "(14 -14 4) (14 14 4) (32 14 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1753" + "plane" "(14 14 0) (14 -14 0) (32 -14 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1752" + "plane" "(14 14 4) (14 14 0) (32 14 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1751" + "plane" "(14 -14 0) (14 -14 4) (32 -14 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1475" + side + { + "id" "1762" + "plane" "(32 -32 0) (-32 -32 0) (-32 -32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1761" + "plane" "(32 -14 4) (-32 -14 4) (-32 -14 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1760" + "plane" "(32 -32 4) (-32 -32 4) (-32 -14 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1759" + "plane" "(32 -14 0) (-32 -14 0) (-32 -32 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1758" + "plane" "(32 -32 0) (32 -32 4) (32 -14 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1757" + "plane" "(-32 -14 0) (-32 -14 4) (-32 -32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupid" "7" + "visgroupshown" "1" + "visgroupautoshown" "1" + "comments" "Collision type set by code." + "logicalpos" "[0 -9768]" + } +} +entity +{ + "id" "1533" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "1518" + side + { + "id" "1810" + "plane" "(72 0 4) (72 64 4) (96 64 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1809" + "plane" "(72 64 0) (72 0 0) (96 0 -7.62939e-006)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1808" + "plane" "(72 64 4) (72 0 4) (72 0 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1807" + "plane" "(96 0 4) (96 64 4) (96 64 -7.62939e-006)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1806" + "plane" "(96 64 4) (72 64 4) (72 64 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1805" + "plane" "(96 0 -7.62939e-006) (72 0 0) (72 0 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1517" + side + { + "id" "1804" + "plane" "(-2.62268e-006 72 4) (-2.62268e-006 96 4) (64 96 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1803" + "plane" "(-2.79753e-006 96 0) (-2.79753e-006 72 0) (64 72 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1802" + "plane" "(-2.62268e-006 96 4) (-2.62268e-006 72 4) (-2.79753e-006 72 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1801" + "plane" "(64 72 4) (64 96 4) (64 96 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1800" + "plane" "(64 96 4) (-2.62268e-006 96 4) (-2.79753e-006 96 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1799" + "plane" "(64 72 0) (-2.79753e-006 72 0) (-2.62268e-006 72 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupid" "10" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "1575" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "1578" + side + { + "id" "1858" + "plane" "(72 0 4) (72 96 4) (96 96 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1857" + "plane" "(72 96 0) (72 0 0) (96 0 -7.62939e-006)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1856" + "plane" "(72 96 4) (72 0 4) (72 0 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1855" + "plane" "(96 0 4) (96 96 4) (96 96 -7.62939e-006)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1854" + "plane" "(96 96 4) (72 96 4) (72 96 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1853" + "plane" "(96 0 -7.62939e-006) (72 0 0) (72 0 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1577" + side + { + "id" "1852" + "plane" "(-2.62268e-006 72 4) (-2.62268e-006 96 4) (72 96 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1851" + "plane" "(-2.79753e-006 96 0) (-2.79753e-006 72 0) (72 72 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1850" + "plane" "(-2.62268e-006 96 4) (-2.62268e-006 72 4) (-2.79753e-006 72 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1849" + "plane" "(72 72 4) (72 96 4) (72 96 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1848" + "plane" "(72 96 4) (-2.62268e-006 96 4) (-2.79753e-006 96 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1847" + "plane" "(72 72 0) (-2.79753e-006 72 0) (-2.62268e-006 72 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupid" "11" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "1618" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "1619" + side + { + "id" "1894" + "plane" "(32 96 4) (32 128 4) (56 128 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1893" + "plane" "(32 128 0) (32 96 0) (56 96 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1892" + "plane" "(32 128 4) (32 96 4) (32 96 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1891" + "plane" "(56 96 4) (56 128 4) (56 128 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1890" + "plane" "(56 128 4) (32 128 4) (32 128 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1889" + "plane" "(56 96 0) (32 96 0) (32 96 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1620" + side + { + "id" "1900" + "plane" "(-2.62268e-006 72 4) (-2.62268e-006 96 4) (56 96 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1899" + "plane" "(-2.79753e-006 96 0) (-2.79753e-006 72 0) (56 72 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1898" + "plane" "(-2.62268e-006 96 4) (-2.62268e-006 72 4) (-2.79753e-006 72 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1897" + "plane" "(56 72 4) (56 96 4) (56 96 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1896" + "plane" "(56 96 4) (-2.62268e-006 96 4) (-2.79753e-006 96 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1895" + "plane" "(56 72 0) (-2.79753e-006 72 0) (-2.62268e-006 72 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1621" + side + { + "id" "1906" + "plane" "(72 0 4) (72 56 4) (96 56 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1905" + "plane" "(72 56 0) (72 0 0) (96 0 -7.62939e-006)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1904" + "plane" "(72 56 4) (72 0 4) (72 0 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1903" + "plane" "(96 0 4) (96 56 4) (96 56 -7.62939e-006)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1902" + "plane" "(96 56 4) (72 56 4) (72 56 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1901" + "plane" "(96 0 -7.62939e-006) (72 0 0) (72 0 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1622" + side + { + "id" "1912" + "plane" "(96 32 4) (96 56 4) (128 56 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1911" + "plane" "(96 56 -7.62939e-006) (96 32 -7.62939e-006) (128 32 -7.62939e-006)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1910" + "plane" "(96 56 4) (96 32 4) (96 32 -7.62939e-006)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1909" + "plane" "(128 32 4) (128 56 4) (128 56 -7.62939e-006)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1908" + "plane" "(128 56 4) (96 56 4) (96 56 -7.62939e-006)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1907" + "plane" "(128 32 -7.62939e-006) (96 32 -7.62939e-006) (96 32 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "1384" + "classname" "func_detail" + solid + { + "id" "1385" + side + { + "id" "1547" + "plane" "(64 80 4) (-2.62268e-006 80 4) (-2.62268e-006 96 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1546" + "plane" "(64 96 -4) (-2.97237e-006 96 -4) (-2.97237e-006 80 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1545" + "plane" "(64 96 4) (-2.62268e-006 96 4) (-2.97237e-006 96 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1544" + "plane" "(64 80 -4) (-2.97237e-006 80 -4) (-2.62268e-006 80 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1543" + "plane" "(64 80 4) (64 96 4) (64 96 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1542" + "plane" "(-2.62268e-006 96 4) (-2.62268e-006 80 4) (-2.97237e-006 80 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1409" + side + { + "id" "1594" + "plane" "(64 56 4) (40 80 4) (64 80 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1593" + "plane" "(64 80 -4) (40 80 -4) (64 56 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1592" + "plane" "(64 56 -4) (40 80 -4) (40 80 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1591" + "plane" "(64 80 4) (40 80 4) (40 80 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1590" + "plane" "(64 56 4) (64 80 4) (64 80 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1421" + side + { + "id" "1612" + "plane" "(80 0 4) (80 64 4) (96 64 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1611" + "plane" "(80 64 -4) (80 0 -4) (96 0 -4.00001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1610" + "plane" "(96 0 4) (96 64 4) (96 64 -4.00001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1609" + "plane" "(80 64 4) (80 0 4) (80 0 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1608" + "plane" "(96 0 -4.00001) (80 0 -4) (80 0 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1607" + "plane" "(96 64 4) (80 64 4) (80 64 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1427" + side + { + "id" "1618" + "plane" "(80 40 4) (64 56 4) (64 64 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1617" + "plane" "(80 64 -4) (64 64 -4) (64 56 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1616" + "plane" "(80 64 4) (64 64 4) (64 64 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1615" + "plane" "(64 64 4) (64 56 4) (64 56 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1614" + "plane" "(80 40 -4) (64 56 -4) (64 56 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1613" + "plane" "(80 40 4) (80 64 4) (80 64 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "10" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "1435" + "classname" "func_detail" + solid + { + "id" "1436" + side + { + "id" "1647" + "plane" "(96 80 4) (-2.62268e-006 80 4) (-2.62268e-006 96 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1646" + "plane" "(96 96 -4.00001) (-2.97237e-006 96 -4) (-2.97237e-006 80 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1645" + "plane" "(96 96 4) (-2.62268e-006 96 4) (-2.97237e-006 96 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1644" + "plane" "(96 80 -4.00001) (-2.97237e-006 80 -4) (-2.62268e-006 80 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1643" + "plane" "(96 80 4) (96 96 4) (96 96 -4.00001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1642" + "plane" "(-2.62268e-006 96 4) (-2.62268e-006 80 4) (-2.97237e-006 80 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1437" + side + { + "id" "1652" + "plane" "(80 40 4) (40 80 4) (80 80 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1651" + "plane" "(80 80 -4) (40 80 -4) (80 40 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1650" + "plane" "(80 40 -4) (40 80 -4) (40 80 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1649" + "plane" "(80 80 4) (40 80 4) (40 80 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1648" + "plane" "(80 40 4) (80 80 4) (80 80 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1438" + side + { + "id" "1658" + "plane" "(80 0 4) (80 80 4) (96 80 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1657" + "plane" "(80 80 -4) (80 0 -4) (96 0 -4.00001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1656" + "plane" "(96 0 4) (96 80 4) (96 80 -4.00001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1655" + "plane" "(80 80 4) (80 0 4) (80 0 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1654" + "plane" "(96 0 -4.00001) (80 0 -4) (80 0 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1653" + "plane" "(96 80 4) (80 80 4) (80 80 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "11" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "1195" + "classname" "func_detail" + solid + { + "id" "1465" + side + { + "id" "1707" + "plane" "(40 80 4) (-2.62268e-006 80 4) (-2.62268e-006 96 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1706" + "plane" "(48 96 -4) (-2.97237e-006 96 -4) (-2.97237e-006 80 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1705" + "plane" "(48 96 4) (-2.62268e-006 96 4) (-2.97237e-006 96 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1704" + "plane" "(40 80 -4) (-2.97237e-006 80 -4) (-2.62268e-006 80 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1703" + "plane" "(48 88 4) (48 96 4) (48 96 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1702" + "plane" "(-2.62268e-006 96 4) (-2.62268e-006 80 4) (-2.97237e-006 80 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1701" + "plane" "(48 88 -4) (40 80 -4) (40 80 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1468" + side + { + "id" "1714" + "plane" "(80 0 4) (80 40 4) (88 48 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1713" + "plane" "(80 40 -4) (80 0 -4) (96 0 -4.00001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1712" + "plane" "(96 0 4) (96 48 4) (96 48 -4.00001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1711" + "plane" "(80 40 4) (80 0 4) (80 0 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1710" + "plane" "(96 48 4) (88 48 4) (88 48 -4.00001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1709" + "plane" "(96 0 -4.00001) (80 0 -4) (80 0 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1708" + "plane" "(88 48 4) (80 40 4) (80 40 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 -0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1449" + side + { + "id" "1688" + "plane" "(128 32 4) (96 32 4) (96 48 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1687" + "plane" "(128 48 -4.00001) (96 48 -4.00001) (96 32 -4.00001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1686" + "plane" "(128 32 -4.00001) (96 32 -4.00001) (96 32 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1685" + "plane" "(128 48 4) (96 48 4) (96 48 -4.00001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1684" + "plane" "(96 48 4) (96 32 4) (96 32 -4.00001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1683" + "plane" "(128 32 4) (128 48 4) (128 48 -4.00001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1450" + side + { + "id" "1694" + "plane" "(40 80 4) (48 88 4) (88 48 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1693" + "plane" "(88 48 -4.00001) (48 88 -4) (40 80 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1692" + "plane" "(88 48 4) (48 88 4) (48 88 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1691" + "plane" "(48 88 4) (40 80 4) (40 80 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 -0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1690" + "plane" "(88 48 -4.00001) (80 40 -4) (80 40 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1689" + "plane" "(80 40 -4) (40 80 -4) (40 80 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1451" + side + { + "id" "1700" + "plane" "(32 96 4) (32 128 4) (48 128 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1699" + "plane" "(32 128 -4) (32 96 -4) (48 96 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1698" + "plane" "(32 128 4) (32 96 4) (32 96 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1697" + "plane" "(48 96 4) (48 128 4) (48 128 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1696" + "plane" "(48 96 -4) (32 96 -4) (32 96 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1695" + "plane" "(48 128 4) (32 128 4) (32 128 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "250" + "classname" "func_detail" + solid + { + "id" "162" + side + { + "id" "471" + "plane" "(32 32 4) (-32 32 4) (-32 32 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "470" + "plane" "(32 18 -4) (-32 18 -4) (-32 18 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "469" + "plane" "(32 18 4) (-32 18 4) (-32 32 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "468" + "plane" "(32 32 -4) (-32 32 -4) (-32 18 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "467" + "plane" "(-32 32 -4) (-32 32 4) (-32 18 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "466" + "plane" "(32 18 -4) (32 18 4) (32 32 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "185" + side + { + "id" "429" + "plane" "(-32 18 4) (-32 -18 4) (-32 -18 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "428" + "plane" "(-18 -18 4) (-18 18 4) (-18 18 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "427" + "plane" "(-32 -18 4) (-32 18 4) (-18 18 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "426" + "plane" "(-32 18 -4) (-32 -18 -4) (-18 -18 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "425" + "plane" "(-32 -18 -4) (-32 -18 4) (-18 -18 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "424" + "plane" "(-32 18 4) (-32 18 -4) (-18 18 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "161" + side + { + "id" "453" + "plane" "(32 -18 4) (32 18 4) (32 18 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "452" + "plane" "(18 18 4) (18 -18 4) (18 -18 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "451" + "plane" "(18 -18 4) (18 18 4) (32 18 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "450" + "plane" "(18 18 -4) (18 -18 -4) (32 -18 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "449" + "plane" "(18 18 4) (18 18 -4) (32 18 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "448" + "plane" "(18 -18 -4) (18 -18 4) (32 -18 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "177" + side + { + "id" "447" + "plane" "(32 -32 -4) (-32 -32 -4) (-32 -32 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "446" + "plane" "(32 -18 4) (-32 -18 4) (-32 -18 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "445" + "plane" "(32 -32 4) (-32 -32 4) (-32 -18 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "444" + "plane" "(32 -18 -4) (-32 -18 -4) (-32 -32 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "443" + "plane" "(32 -32 -4) (32 -32 4) (32 -18 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "442" + "plane" "(-32 -18 -4) (-32 -18 4) (-32 -32 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "7" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -9768]" + } +} +entity +{ + "id" "824" + "classname" "bee2_template_conf" + "detail_auto_visgroup" "0" + "discard_brushes" "0" + "temp_type" "default" + "template_id" "BEE2_HOLE_SQUARE" + "origin" "-2.79753e-006 0 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 3500]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/barrier_variants/info.txt b/packages/barrier_variants/info.txt index f43df7dc45..68da7b0bbf 100644 --- a/packages/barrier_variants/info.txt +++ b/packages/barrier_variants/info.txt @@ -50,4 +50,41 @@ "BEE2_PORTAL_1" "coop_grates_p1" } } -} \ No newline at end of file +} + +"Item" +{ + "ID" "ITEM_BEE2_BARRIER_VARIANTS" + "Description" + { + "" "Adds various new glass/grating variant items. To use these, connect them to regular glass or grating with an antline." + "" "" + "" "* Tinted Glass has a blue coating that prevents Discouragement Beams, Turrets and everything else except the player from seeing through it." + } + "Version" + { + "Styles" + { + "BEE2_CLEAN" + { + "Folder" "barrier_variants" + "Config" "barrier_variants/clean.cfg" + } + "BEE2_OVERGROWN" + { + "Folder" "barrier_variants" + "Config" "barrier_variants/overgrown.cfg" + } + "BEE2_PORTAL_1" + { + "Folder" "barrier_variants" + "Config" "barrier_variants/p1.cfg" + } + "BEE2_1950s" + { + "Folder" "barrier_variants" + "Config" "barrier_variants/50s.cfg" + } + } + } +} diff --git a/packages/barrier_variants/items/barrier_variants/50s.cfg b/packages/barrier_variants/items/barrier_variants/50s.cfg new file mode 100644 index 0000000000..3a5278a1f7 --- /dev/null +++ b/packages/barrier_variants/items/barrier_variants/50s.cfg @@ -0,0 +1,97 @@ +"BarrierFrames" + { + "BEE2_SQUAREBEAMS_RUSTY_WIDE" + { + // Straight points along the X axis, attached to the Z plane. + "Straight" + { + "template" "BEE2_GLASS_SQUAREBEAMS_FRAME_WIDE_STRAIGHT" + } + + "CornerSize" "0" + + "ConcaveCorner" + { + "template" "BEE2_GLASS_SQUAREBEAMS_FRAME_WIDE_CORNER" + } + } + } + +"Barriers" + { + "BEE2_TINTED_GLASS" + { + "Frame" "BEE2_SQUAREBEAMS_RUSTY_WIDE" + + "mergeable" "1" // Instance name does not matter. + "error_tex" "glass" + + "HoleVariant" "THICK_SQUARE_OLDAP" + "HoleVariant" "THIN_MODERN_TESTCHAMBER" + + // Somewhat of a hack, force frames to be world brushes so they don't + // get carved by our nodraw clips. + "frame_world_brush" "1" + + "Brush" + { + "offset" "2" + "thickness" "4" + "carve_by_hole" "1" + + "template" "BEE2_TINTED_GLASS_OLDAP_SCALING" + "material" "bee2/50s/glass_brick" + } + "Brush" + { + "offset" "2.5" + "thickness" "3" + "carve_by_hole" "1" + + "material" "tools/toolsnodraw" + "side_mat" "tools/toolsnodraw" + } + "Brush" + { + "offset" "0" + "thickness" "8" + "carve_by_hole" "0" + "world" "1" + + "material" "tools/toolshint" + "side_mat" "tools/toolsskip" + } + "Collide" + { + "offset" "0" + "thickness" "8" + "carve_by_hole" "1" + + "contents" "solid" // It blocks everything. + } + } + } + + +"Conditions" + { + "Condition" + { + "Priority" "-300" + "instance" "" + "Result" + { + "Has" "glass" + "CustomBarrier" "BEE2_TINTED_GLASS" + } + } + "Condition" + { + "Priority" "200" + "instance" "" + "Result" + { + "ChangeInstance" "" + } + } + } diff --git a/packages/barrier_variants/items/barrier_variants/clean.cfg b/packages/barrier_variants/items/barrier_variants/clean.cfg new file mode 100644 index 0000000000..dfad418016 --- /dev/null +++ b/packages/barrier_variants/items/barrier_variants/clean.cfg @@ -0,0 +1,148 @@ +"BarrierFrames" + { + "BEE2_MODERN_TESTCHAMBER" + { + "Straight" + { + "length" "4" + "model" "models/props_test_chamber/frame_4.mdl" + "angles" "-90 90 0" + "offset" "4 0 8" + } + "Straight" + { + "length" "16" + "model" "models/props_test_chamber/frame_16.mdl" + "angles" "-90 90 0" + "offset" "16 0 8" + } + "Straight" + { + "length" "20" + "model" "models/props_test_chamber/frame_20.mdl" + "angles" "-90 90 0" + "offset" "20 0 8" + } + "Straight" + { + "length" "32" + "model" "models/props_test_chamber/frame_32.mdl" + "angles" "-90 90 0" + "offset" "32 0 8" + } + "Straight" + { + "length" "64" + "model" "models/props_test_chamber/frame_64.mdl" + "angles" "-90 90 0" + "offset" "64 0 8" + } + "Straight" + { + "length" "128" + "model" "models/props_test_chamber/frame_128.mdl" + "angles" "-90 90 0" + "offset" "128 0 8" + } + "CornerSize" "16" + + "Corner" + { + "model" "models/bee2/props_clean/frame_testchamber/frame_convex.mdl" + "angles" "-90 270 0" + "offset" "4 4 4" + } + "ConcaveCorner" + { + "model" "models/BEE2/props_clean/frame_testchamber/frame_concave.mdl" + "angles" "90 90 0" + "offset" "2 2 4" + } + } + } + + +"Barriers" + { + "BEE2_TINTED_GLASS" + { + "Frame" "BEE2_MODERN_TESTCHAMBER" + + "mergeable" "1" // Instance name does not matter. + "error_tex" "glass" + + // If we don't have props_test_chamber, use puzzlemaker, then P1. + "HoleVariant" "THIN_MODERN_TESTCHAMBER" + "HoleVariant" "THIN_MODERN_PETI" + "HoleVariant" "THIN_MODERN_P1_PLASTICWALL" + + "Brush" + { + "offset" "2.5" + "thickness" "3" + "carve_by_hole" "1" + + "material" "bee2/clean/tinted_glass" + } + "Brush" + { + "offset" "2.625" + "thickness" "2.75" + "carve_by_hole" "1" + + "material" "tools/toolsnodraw" + "side_mat" "tools/toolsnodraw" + } + "Brush" + { + "offset" "2" + "thickness" "4" + + "material" "BEE2/glass_player_clip" + "side_mat" "BEE2/glass_player_clip" + "StaticPlayerClip" "1" + } + "Brush" + { + "offset" "0" + "thickness" "8" + "carve_by_hole" "0" + "world" "1" + + "material" "tools/toolshint" + "side_mat" "tools/toolsskip" + } + "Collide" + { + "offset" "0" + "thickness" "8" + "carve_by_hole" "1" + + "contents" "solid" // It blocks everything. + } + } + } + + +"Conditions" + { + "Condition" + { + "Priority" "-300" + "instance" "" + "Result" + { + "Has" "glass" + "CustomBarrier" "BEE2_TINTED_GLASS" + } + } + "Condition" + { + "Priority" "200" + "instance" "" + "Result" + { + "ChangeInstance" "" + } + } + } diff --git a/packages/barrier_variants/items/barrier_variants/editoritems.txt b/packages/barrier_variants/items/barrier_variants/editoritems.txt new file mode 100644 index 0000000000..040779dcab --- /dev/null +++ b/packages/barrier_variants/items/barrier_variants/editoritems.txt @@ -0,0 +1,60 @@ +"Item" + { + "Type" "ITEM_BEE2_BARRIER_VARIANTS" + "Editor" + { + "SubType" + { + "Name" "Tinted Glass" + "Model" "BEE2/clean/tinted_glass.mdl" + "Palette" + { + "Tooltip" "TINTED GLASS" + "Image" "palette/BEE2/clean/tinted_glass.vtf" + } + } + "MovementHandle" "HANDLE_4_DIRECTIONS" + } + "Properties" + { + "ConnectionCount" + { + "DefaultValue" "0" + "Index" "3" + } + "CubeType" + { + "DefaultValue" "0" + "Index" "2" + } + // "StartOpen" + // { + // "DefaultValue" "0" + // "Index" "3" + // } + } + "Exporting" + { + "Instances" + { + "0" + { + "Name" "instances/BEE2/logic/barriers/tinted_glass.vmf" + "EntityCount" "1" + "BrushCount" "2" + "BrushSideCount" "12" + } + } + "TargetName" "bg" + "Offset" "64 64 64" + "Inputs" + { + // Outputs are used to target the glass to convert. + // Inputs will be used for sliding glass. + "BEE2" + { + "Force" "output" + } + } + } + } diff --git a/packages/barrier_variants/items/barrier_variants/editoritems.vmf b/packages/barrier_variants/items/barrier_variants/editoritems.vmf new file mode 100644 index 0000000000..39f21d0ae6 --- /dev/null +++ b/packages/barrier_variants/items/barrier_variants/editoritems.vmf @@ -0,0 +1,242 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "2" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "32" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "2" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" + solid + { + "id" "15" + side + { + "id" "1" + "plane" "(-64 64 64) (-56 64 64) (-56 -64 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2" + "plane" "(-64 -64 -64) (-56 -64 -64) (-56 64 -64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3" + "plane" "(-64 64 64) (-64 -64 64) (-64 -64 -64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4" + "plane" "(-56 64 -64) (-56 -64 -64) (-56 -64 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5" + "plane" "(-56 64 64) (-64 64 64) (-64 64 -64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6" + "plane" "(-56 -64 -64) (-64 -64 -64) (-64 -64 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 157 154" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } +} +entity +{ + "id" "2" + "classname" "bee2_editor_connectionpoint" + "angles" "0 0 0" + "priority" "0" + "skin" "3" + "origin" "-80 -16 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "25" + "classname" "bee2_editor_connectionpoint" + "angles" "0 0 0" + "priority" "0" + "skin" "4" + "origin" "-80 16 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "41" + "classname" "bee2_editor_connectionpoint" + "angles" "0 180 0" + "priority" "0" + "skin" "3" + "origin" "-16 16 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "43" + "classname" "bee2_editor_connectionpoint" + "angles" "0 180 0" + "priority" "0" + "skin" "4" + "origin" "-16 -16 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "81" + "classname" "bee2_editor_connectionpoint" + "angles" "0 0 0" + "priority" "1" + "skin" "3" + "origin" "-80 -48 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "85" + "classname" "bee2_editor_connectionpoint" + "angles" "0 0 0" + "priority" "1" + "skin" "4" + "origin" "-80 48 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "89" + "classname" "bee2_editor_connectionpoint" + "angles" "0 180 0" + "priority" "1" + "skin" "3" + "origin" "-16 48 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "93" + "classname" "bee2_editor_connectionpoint" + "angles" "0 180 0" + "priority" "1" + "skin" "4" + "origin" "-16 -48 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/barrier_variants/items/barrier_variants/overgrown.cfg b/packages/barrier_variants/items/barrier_variants/overgrown.cfg new file mode 100644 index 0000000000..682c953e54 --- /dev/null +++ b/packages/barrier_variants/items/barrier_variants/overgrown.cfg @@ -0,0 +1,85 @@ +"Barriers" + { + "BEE2_TINTED_GLASS" + { + // This frame's in the original glass item. + "Frame" "BEE2_MODERN_TESTCHAMBER" + + "mergeable" "1" // Instance name does not matter. + "error_tex" "glass" + + // If we don't have props_test_chamber, use puzzlemaker, then P1. + "HoleVariant" "THIN_MODERN_TESTCHAMBER" + "HoleVariant" "THIN_MODERN_PETI" + "HoleVariant" "THIN_MODERN_P1_PLASTICWALL" + + "Brush" + { + "offset" "2.5" + "thickness" "3" + "carve_by_hole" "1" + + "material" "bee2/overgrown/tinted_glass" + } + "Brush" + { + "offset" "2.625" + "thickness" "2.75" + "carve_by_hole" "1" + + "material" "tools/toolsnodraw" + "side_mat" "tools/toolsnodraw" + } + "Brush" + { + "offset" "2" + "thickness" "4" + + "material" "BEE2/glass_player_clip" + "side_mat" "BEE2/glass_player_clip" + "StaticPlayerClip" "1" + } + "Brush" + { + "offset" "0" + "thickness" "8" + "carve_by_hole" "0" + "world" "1" + + "material" "tools/toolshint" + "side_mat" "tools/toolsskip" + } + "Collide" + { + "offset" "0" + "thickness" "8" + "carve_by_hole" "1" + + "contents" "solid" // It blocks everything. + } + } + } + + +"Conditions" + { + "Condition" + { + "Priority" "-300" + "instance" "" + "Result" + { + "Has" "glass" + "CustomBarrier" "BEE2_TINTED_GLASS" + } + } + "Condition" + { + "Priority" "200" + "instance" "" + "Result" + { + "ChangeInstance" "" + } + } + } diff --git a/packages/barrier_variants/items/barrier_variants/p1.cfg b/packages/barrier_variants/items/barrier_variants/p1.cfg new file mode 100644 index 0000000000..c8c9bab3a5 --- /dev/null +++ b/packages/barrier_variants/items/barrier_variants/p1.cfg @@ -0,0 +1,87 @@ +"Barriers" + { + "BEE2_TINTED_GLASS" + { + "Frame" "BEE2_MODERN_P1_PLASTICWALL" + + "mergeable" "1" // Instance name does not matter. + "error_tex" "glass" + + // Somewhat of a hack, force frames to be world brushes so they don't + // get carved by our nodraw clips. + "frame_world_brush" "1" + + // Same as regular glass. + "HoleVariant" "THIN_MODERN_P1_PLASTICWALL" + "HoleVariant" "THIN_MODERN_PETI" + "HoleVariant" "THIN_MODERN_TESTCHAMBER" + + "Brush" + { + "offset" "2" + "thickness" "4" + + "material" "bee2/p1/blue_glass" + } + "Brush" + { + "offset" "2.5" + "thickness" "3" + "carve_by_hole" "1" + + "material" "tools/toolsnodraw" + "side_mat" "tools/toolsnodraw" + } + "Brush" + { + "offset" "0" + "thickness" "6" + + "material" "BEE2/glass_player_clip" + "side_mat" "BEE2/glass_player_clip" + "StaticPlayerClip" "1" + } + "Brush" + { + "offset" "0" + "thickness" "8" + "carve_by_hole" "0" + "world" "1" + + "material" "tools/toolshint" + "side_mat" "tools/toolsskip" + } + "Collide" + { + "offset" "0" + "thickness" "8" + "carve_by_hole" "1" + + "contents" "solid" // It blocks everything. + } + } + } + + +"Conditions" + { + "Condition" + { + "Priority" "-300" + "instance" "" + "Result" + { + "Has" "glass" + "CustomBarrier" "BEE2_TINTED_GLASS" + } + } + "Condition" + { + "Priority" "200" + "instance" "" + "Result" + { + "ChangeInstance" "" + } + } + } diff --git a/packages/barrier_variants/items/barrier_variants/properties.txt b/packages/barrier_variants/items/barrier_variants/properties.txt new file mode 100644 index 0000000000..6d2e5d1ef5 --- /dev/null +++ b/packages/barrier_variants/items/barrier_variants/properties.txt @@ -0,0 +1,5 @@ +"Properties" + { + "Authors" "TeamSpen210" + "Tags" "Geometry" + } diff --git a/packages/barrier_variants/resources/instances/50s/items/barrier/glass_hole_large_thick.vmf b/packages/barrier_variants/resources/instances/50s/items/barrier/glass_hole_large_thick.vmf new file mode 100644 index 0000000000..389d864141 --- /dev/null +++ b/packages/barrier_variants/resources/instances/50s/items/barrier/glass_hole_large_thick.vmf @@ -0,0 +1,658 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "16" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "8" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "16" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" +} +entity +{ + "id" "264" + "classname" "func_detail" + solid + { + "id" "148" + side + { + "id" "492" + "plane" "(-80 -40 0) (-80 40 0) (-72 32 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "491" + "plane" "(-80 40 -8) (-80 -40 -8) (-72 -32 -8)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "490" + "plane" "(-80 -40 -8) (-80 40 -8) (-80 40 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 1 -266.522] 0.3" + "vaxis" "[0 1 0 -17.137] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "489" + "plane" "(-72 32 -8) (-72 -32 -8) (-72 -32 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 -1 -250] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "488" + "plane" "(-80 40 -8) (-72 32 -8) (-72 32 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "487" + "plane" "(-72 -32 -8) (-80 -40 -8) (-80 -40 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "164" + side + { + "id" "498" + "plane" "(-32 -72 0) (-40 -80 0) (-80 -40 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0.707107 0.707107 0 7.98652] 0.3" + "vaxis" "[0.707107 -0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "497" + "plane" "(-72 -32 -8) (-80 -40 -8) (-40 -80 -8)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0.707107 0.707107 0 7.98652] 0.3" + "vaxis" "[0.707107 -0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "496" + "plane" "(-32 -72 -8) (-40 -80 -8) (-40 -80 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -28] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "495" + "plane" "(-80 -40 -8) (-72 -32 -8) (-72 -32 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "494" + "plane" "(-40 -80 -8) (-80 -40 -8) (-80 -40 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 1 -266.523] 0.3" + "vaxis" "[0.707107 -0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "493" + "plane" "(-72 -32 -8) (-32 -72 -8) (-32 -72 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 -1 -250] 0.25" + "vaxis" "[0.707107 -0.707107 0 241.137] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "193" + side + { + "id" "504" + "plane" "(-72 32 0) (-80 40 0) (-40 80 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0.707107 -0.707107 0 7.98652] 0.3" + "vaxis" "[0.707107 0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "503" + "plane" "(-32 72 -8) (-40 80 -8) (-80 40 -8)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0.707107 -0.707107 0 7.98652] 0.3" + "vaxis" "[0.707107 0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "502" + "plane" "(-40 80 -8) (-32 72 -8) (-32 72 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -28] 0.25" + "vaxis" "[0 1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "501" + "plane" "(-72 32 -8) (-80 40 -8) (-80 40 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "500" + "plane" "(-80 40 -8) (-40 80 -8) (-40 80 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 1 -266.522] 0.3" + "vaxis" "[0.707107 0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "499" + "plane" "(-32 72 -8) (-72 32 -8) (-72 32 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 -1 -245.478] 0.3" + "vaxis" "[0.707107 0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "205" + side + { + "id" "510" + "plane" "(72 -32 0) (72 32 0) (80 40 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "509" + "plane" "(72 32 -8) (72 -32 -8) (80 -40 -8)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "508" + "plane" "(80 40 -8) (80 -40 -8) (80 -40 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 -1 194] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "507" + "plane" "(72 -32 -8) (72 32 -8) (72 32 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 -1 -250] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "506" + "plane" "(80 -40 -8) (72 -32 -8) (72 -32 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "505" + "plane" "(72 32 -8) (80 40 -8) (80 40 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 0 -1 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "206" + side + { + "id" "516" + "plane" "(80 40 0) (72 32 0) (32 72 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[-0.707107 -0.707107 0 7.9865] 0.3" + "vaxis" "[-0.707107 0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "515" + "plane" "(40 80 -8) (32 72 -8) (72 32 -8)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[-0.707107 -0.707107 0 7.9865] 0.3" + "vaxis" "[-0.707107 0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "514" + "plane" "(32 72 -8) (40 80 -8) (40 80 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -28] 0.25" + "vaxis" "[0 1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "513" + "plane" "(80 40 -8) (72 32 -8) (72 32 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "512" + "plane" "(40 80 -8) (80 40 -8) (80 40 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 1 -266.523] 0.3" + "vaxis" "[-0.707107 0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "511" + "plane" "(72 32 -8) (32 72 -8) (32 72 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 -1 -245.478] 0.3" + "vaxis" "[-0.707107 0.707107 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "207" + side + { + "id" "522" + "plane" "(40 -80 0) (32 -72 0) (72 -32 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[-0.707107 0.707107 0 61] 0.25" + "vaxis" "[-0.707107 -0.707107 0 241] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "521" + "plane" "(80 -40 -8) (72 -32 -8) (32 -72 -8)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[-0.707107 0.707107 0 61] 0.25" + "vaxis" "[-0.707107 -0.707107 0 241] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "520" + "plane" "(40 -80 -8) (32 -72 -8) (32 -72 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -28] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "519" + "plane" "(72 -32 -8) (80 -40 -8) (80 -40 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "518" + "plane" "(80 -40 -8) (40 -80 -8) (40 -80 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 1 -268.411] 0.25" + "vaxis" "[-0.707107 -0.707106 0 241] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "517" + "plane" "(32 -72 -8) (72 -32 -8) (72 -32 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 -1 -243.156] 0.25" + "vaxis" "[-0.707107 -0.707107 0 241] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "250" + side + { + "id" "528" + "plane" "(32 72 0) (-32 72 0) (-40 80 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "527" + "plane" "(40 80 -8) (-40 80 -8) (-32 72 -8)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "526" + "plane" "(-40 80 -8) (40 80 -8) (40 80 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 1 -262] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "525" + "plane" "(32 72 -8) (-32 72 -8) (-32 72 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 -1 -250] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "524" + "plane" "(40 80 -8) (32 72 -8) (32 72 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "523" + "plane" "(-32 72 -8) (-40 80 -8) (-40 80 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -16] 0.25" + "vaxis" "[0 0 -1 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "251" + side + { + "id" "534" + "plane" "(40 -80 0) (-40 -80 0) (-32 -72 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "533" + "plane" "(32 -72 -8) (-32 -72 -8) (-40 -80 -8)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "532" + "plane" "(40 -80 -8) (-40 -80 -8) (-40 -80 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 1 -262] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "531" + "plane" "(-32 -72 -8) (32 -72 -8) (32 -72 0)" + "material" "METAL/UNDERGROUND_WALL_METAL004C_BOTTOM" + "uaxis" "[0 0 -1 -250] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "530" + "plane" "(-40 -80 -8) (-32 -72 -8) (-32 -72 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -48] 0.25" + "vaxis" "[0 0 -1 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "529" + "plane" "(32 -72 -8) (40 -80 -8) (40 -80 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 0 -1 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/barrier_variants/resources/instances/50s/items/barrier/glass_hole_small_thick.vmf b/packages/barrier_variants/resources/instances/50s/items/barrier/glass_hole_small_thick.vmf new file mode 100644 index 0000000000..16228feaba --- /dev/null +++ b/packages/barrier_variants/resources/instances/50s/items/barrier/glass_hole_small_thick.vmf @@ -0,0 +1,354 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "14" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "8" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "14" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" +} +entity +{ + "id" "125" + "classname" "func_detail" + solid + { + "id" "52" + side + { + "id" "84" + "plane" "(-14 -14 0) (-18 -18 0) (-18 18 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[-1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "83" + "plane" "(-18 18 -8) (-18 -18 -8) (-14 -14 -8)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[-1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "82" + "plane" "(-18 -18 -8) (-18 18 -8) (-18 18 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 45] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "81" + "plane" "(-14 -14 -8) (-18 -18 -8) (-18 -18 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[-0.707107 -0.707107 0 16.9705] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "80" + "plane" "(-18 18 -8) (-14 14 -8) (-14 14 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 32] 0.25" + "vaxis" "[-0.707107 0.707107 0 16.9705] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "79" + "plane" "(-14 14 -8) (-14 -14 -8) (-14 -14 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 45] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "104" + side + { + "id" "90" + "plane" "(14 14 0) (18 18 0) (18 -18 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "89" + "plane" "(18 -18 -8) (18 18 -8) (14 14 -8)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "88" + "plane" "(18 18 -8) (18 -18 -8) (18 -18 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 45] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "87" + "plane" "(14 14 -8) (18 18 -8) (18 18 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[0.707107 0.707107 0 16.9705] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "86" + "plane" "(18 -18 -8) (14 -14 -8) (14 -14 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 32] 0.25" + "vaxis" "[0.707107 -0.707107 0 16.9705] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "85" + "plane" "(14 -14 -8) (14 14 -8) (14 14 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 45] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "115" + side + { + "id" "96" + "plane" "(18 -18 0) (-18 -18 0) (-14 -14 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 -1 0 -12] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "95" + "plane" "(-18 -18 -8) (18 -18 -8) (14 -14 -8)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 -1 0 -12] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "94" + "plane" "(18 -18 -8) (-18 -18 -8) (-18 -18 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 45] 0.25" + "vaxis" "[-1 0 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "93" + "plane" "(14 -14 -8) (18 -18 -8) (18 -18 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[0.707107 -0.707107 0 16.9705] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92" + "plane" "(-18 -18 -8) (-14 -14 -8) (-14 -14 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 32] 0.25" + "vaxis" "[-0.707107 -0.707107 0 16.9705] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "91" + "plane" "(-14 -14 -8) (14 -14 -8) (14 -14 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 45] 0.25" + "vaxis" "[-1 0 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "116" + side + { + "id" "102" + "plane" "(-14 14 0) (-18 18 0) (18 18 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "101" + "plane" "(18 18 -8) (-18 18 -8) (-14 14 -8)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "100" + "plane" "(-18 18 -8) (18 18 -8) (18 18 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 45] 0.25" + "vaxis" "[-1 0 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "99" + "plane" "(-14 14 -8) (-18 18 -8) (-18 18 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[-0.707107 0.707107 0 16.9705] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "98" + "plane" "(18 18 -8) (14 14 -8) (14 14 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 32] 0.25" + "vaxis" "[0.707107 0.707107 0 16.9705] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "97" + "plane" "(14 14 -8) (-14 14 -8) (-14 14 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 45] 0.25" + "vaxis" "[-1 0 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5500]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/barrier_variants/resources/materials/BEE2/50s/glass_brick.vmt b/packages/barrier_variants/resources/materials/BEE2/50s/glass_brick.vmt new file mode 100644 index 0000000000..686fc0b352 --- /dev/null +++ b/packages/barrier_variants/resources/materials/BEE2/50s/glass_brick.vmt @@ -0,0 +1,18 @@ +LightmappedGeneric + { + $basetexture "BEE2/50s/glass_brick_colour" + $translucent 1 + + $bumpmap "BEE2/50s/glass_brick_height-ssbump" + $ssbump 1 + + $envmap "metal/black_wall_envmap_002a_hdr" + $normalmapalphaenvmapmask 1 + + $envmapsaturation .1 + $envmaptint "[ .02 .1 .1 ]" + $fresnelreflection .3 + + $surfaceprop glass + %noportal 1 + } diff --git a/packages/barrier_variants/resources/materials/BEE2/50s/glass_brick_colour.vtf b/packages/barrier_variants/resources/materials/BEE2/50s/glass_brick_colour.vtf new file mode 100644 index 0000000000..649c739553 Binary files /dev/null and b/packages/barrier_variants/resources/materials/BEE2/50s/glass_brick_colour.vtf differ diff --git a/packages/barrier_variants/resources/materials/BEE2/50s/glass_brick_height-ssbump.vtf b/packages/barrier_variants/resources/materials/BEE2/50s/glass_brick_height-ssbump.vtf new file mode 100644 index 0000000000..3d6d7f22ad Binary files /dev/null and b/packages/barrier_variants/resources/materials/BEE2/50s/glass_brick_height-ssbump.vtf differ diff --git a/packages/barrier_variants/resources/materials/BEE2/clean/tinted_glass.vmt b/packages/barrier_variants/resources/materials/BEE2/clean/tinted_glass.vmt new file mode 100644 index 0000000000..f701f24c42 --- /dev/null +++ b/packages/barrier_variants/resources/materials/BEE2/clean/tinted_glass.vmt @@ -0,0 +1,15 @@ +LightmappedGeneric +{ +$basetexture "BEE2/clean/tinted_glass" +$envmap "metal/black_wall_envmap_002a_hdr" +$envmapmask "glass/glasswindow_frosted_002b_mask" + +$envmapsaturation .1 +$envmaptint "[ .06 .12 .14 ]" +$surfaceprop glass +$translucent 1 +$fresnelreflection .6 + +%noportal 1 +$worldimposter 1 +} diff --git a/packages/barrier_variants/resources/materials/BEE2/clean/tinted_glass.vtf b/packages/barrier_variants/resources/materials/BEE2/clean/tinted_glass.vtf new file mode 100644 index 0000000000..b478f77051 Binary files /dev/null and b/packages/barrier_variants/resources/materials/BEE2/clean/tinted_glass.vtf differ diff --git a/packages/barrier_variants/resources/materials/BEE2/overgrown/tinted_glass.vmt b/packages/barrier_variants/resources/materials/BEE2/overgrown/tinted_glass.vmt new file mode 100644 index 0000000000..5c46ae7d6b --- /dev/null +++ b/packages/barrier_variants/resources/materials/BEE2/overgrown/tinted_glass.vmt @@ -0,0 +1,20 @@ +LightmappedGeneric +{ +$basetexture "BEE2/clean/tinted_glass" +$envmap "metal/black_wall_envmap_002a_hdr" +$envmapmask "glass/glasswindow_frosted_002b_mask" + +$envmapsaturation .1 +$envmaptint "[ .06 .12 .14 ]" +$surfaceprop glass +$translucent 1 +$fresnelreflection .6 + +$detail "detail/detail_dirt01a" +$detailScale 0.25 +$detailBlendFactor 0.2 +$detailblendmode 0 // Apply on top of original tex + +%noportal 1 +$worldimposter 1 +} diff --git a/packages/barrier_variants/resources/materials/BEE2/p1/blue_glass.vmt b/packages/barrier_variants/resources/materials/BEE2/p1/blue_glass.vmt new file mode 100644 index 0000000000..dd323bdb91 --- /dev/null +++ b/packages/barrier_variants/resources/materials/BEE2/p1/blue_glass.vmt @@ -0,0 +1,17 @@ +LightmappedGeneric + { + $basetexture "BEE2/p1/blue_glass" + $translucent 1 + $alpha 0.5 + + $envmap "metal/black_wall_envmap_002a_hdr" + $envmapmask "glass/glasswindow_frosted_002b_mask" + + $envmapsaturation .1 + $envmaptint "[ .4 .4 .4 ]" + $translucent 1 + $fresnelreflection .3 + + $surfaceprop glass + %noportal 1 + } diff --git a/packages/barrier_variants/resources/materials/BEE2/p1/blue_glass.vtf b/packages/barrier_variants/resources/materials/BEE2/p1/blue_glass.vtf new file mode 100644 index 0000000000..6a18be16be Binary files /dev/null and b/packages/barrier_variants/resources/materials/BEE2/p1/blue_glass.vtf differ diff --git a/packages/barrier_variants/resources/materials/models/props_map_editor/palette/bee2/clean/tinted_glass.vtf b/packages/barrier_variants/resources/materials/models/props_map_editor/palette/bee2/clean/tinted_glass.vtf new file mode 100644 index 0000000000..29dd1ddeaa Binary files /dev/null and b/packages/barrier_variants/resources/materials/models/props_map_editor/palette/bee2/clean/tinted_glass.vtf differ diff --git a/packages/barrier_variants/resources/models/bee2/frame_testchamber/frame_concave.dx90.vtx b/packages/barrier_variants/resources/models/bee2/frame_testchamber/frame_concave.dx90.vtx new file mode 100644 index 0000000000..3d354b35df Binary files /dev/null and b/packages/barrier_variants/resources/models/bee2/frame_testchamber/frame_concave.dx90.vtx differ diff --git a/packages/barrier_variants/resources/models/bee2/frame_testchamber/frame_concave.mdl b/packages/barrier_variants/resources/models/bee2/frame_testchamber/frame_concave.mdl new file mode 100644 index 0000000000..d34fea9838 Binary files /dev/null and b/packages/barrier_variants/resources/models/bee2/frame_testchamber/frame_concave.mdl differ diff --git a/packages/barrier_variants/resources/models/bee2/frame_testchamber/frame_concave.phy b/packages/barrier_variants/resources/models/bee2/frame_testchamber/frame_concave.phy new file mode 100644 index 0000000000..d469a8c62f Binary files /dev/null and b/packages/barrier_variants/resources/models/bee2/frame_testchamber/frame_concave.phy differ diff --git a/packages/barrier_variants/resources/models/bee2/frame_testchamber/frame_concave.vvd b/packages/barrier_variants/resources/models/bee2/frame_testchamber/frame_concave.vvd new file mode 100644 index 0000000000..451361c4af Binary files /dev/null and b/packages/barrier_variants/resources/models/bee2/frame_testchamber/frame_concave.vvd differ diff --git a/packages/barrier_variants/resources/models/bee2/frame_testchamber/frame_convex.dx90.vtx b/packages/barrier_variants/resources/models/bee2/frame_testchamber/frame_convex.dx90.vtx new file mode 100644 index 0000000000..4c396d45a0 Binary files /dev/null and b/packages/barrier_variants/resources/models/bee2/frame_testchamber/frame_convex.dx90.vtx differ diff --git a/packages/barrier_variants/resources/models/bee2/frame_testchamber/frame_convex.mdl b/packages/barrier_variants/resources/models/bee2/frame_testchamber/frame_convex.mdl new file mode 100644 index 0000000000..abf767a79e Binary files /dev/null and b/packages/barrier_variants/resources/models/bee2/frame_testchamber/frame_convex.mdl differ diff --git a/packages/barrier_variants/resources/models/bee2/frame_testchamber/frame_convex.phy b/packages/barrier_variants/resources/models/bee2/frame_testchamber/frame_convex.phy new file mode 100644 index 0000000000..4d9e5a5771 Binary files /dev/null and b/packages/barrier_variants/resources/models/bee2/frame_testchamber/frame_convex.phy differ diff --git a/packages/barrier_variants/resources/models/bee2/frame_testchamber/frame_convex.vvd b/packages/barrier_variants/resources/models/bee2/frame_testchamber/frame_convex.vvd new file mode 100644 index 0000000000..78800827eb Binary files /dev/null and b/packages/barrier_variants/resources/models/bee2/frame_testchamber/frame_convex.vvd differ diff --git a/packages/barrier_variants/resources/models/props_map_editor/bee2/clean/tinted_glass.dx90.vtx b/packages/barrier_variants/resources/models/props_map_editor/bee2/clean/tinted_glass.dx90.vtx new file mode 100644 index 0000000000..53599e5efe Binary files /dev/null and b/packages/barrier_variants/resources/models/props_map_editor/bee2/clean/tinted_glass.dx90.vtx differ diff --git a/packages/barrier_variants/resources/models/props_map_editor/bee2/clean/tinted_glass.mdl b/packages/barrier_variants/resources/models/props_map_editor/bee2/clean/tinted_glass.mdl new file mode 100644 index 0000000000..ab495046bc Binary files /dev/null and b/packages/barrier_variants/resources/models/props_map_editor/bee2/clean/tinted_glass.mdl differ diff --git a/packages/barrier_variants/resources/models/props_map_editor/bee2/clean/tinted_glass.vvd b/packages/barrier_variants/resources/models/props_map_editor/bee2/clean/tinted_glass.vvd new file mode 100644 index 0000000000..4a693f28b5 Binary files /dev/null and b/packages/barrier_variants/resources/models/props_map_editor/bee2/clean/tinted_glass.vvd differ diff --git a/packages/barrier_variants/resources/models/puzzlemaker/selection_bee2/clean/tinted_glass.3ds b/packages/barrier_variants/resources/models/puzzlemaker/selection_bee2/clean/tinted_glass.3ds new file mode 100644 index 0000000000..6a76d1f7ab Binary files /dev/null and b/packages/barrier_variants/resources/models/puzzlemaker/selection_bee2/clean/tinted_glass.3ds differ diff --git a/packages/barrier_variants/templates/rusty_frame_corner_wide.vmf b/packages/barrier_variants/templates/rusty_frame_corner_wide.vmf new file mode 100644 index 0000000000..2abf9b303a --- /dev/null +++ b/packages/barrier_variants/templates/rusty_frame_corner_wide.vmf @@ -0,0 +1,143 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "73" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "4" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "73" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" +} +entity +{ + "id" "667" + "classname" "bee2_template_conf" + "detail_auto_visgroup" "0" + "discard_brushes" "0" + "temp_type" "default" + "template_id" "BEE2_GLASS_SQUAREBEAMS_FRAME_WIDE_CORNER" + "origin" "0 0 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "659" + "classname" "func_detail" + solid + { + "id" "660" + side + { + "id" "59" + "plane" "(4 0 0) (0 0 0) (0 0 7.99965)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 44] 0.25" + "vaxis" "[1 0 0 256] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58" + "plane" "(0 4 0) (4 4 0) (4 4 7.99965)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 44] 0.25" + "vaxis" "[1 0 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57" + "plane" "(4 4 0) (0 4 0) (0 0 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 -1 0 60] 0.25" + "vaxis" "[-1 0 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56" + "plane" "(4 0 8) (0 0 8) (0 4 8)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 -1 0 60] 0.25" + "vaxis" "[-1 0 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55" + "plane" "(0 0 7.99931) (0 0 0) (0 4 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 -468] 0.25" + "vaxis" "[0 -1 0 272] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "54" + "plane" "(4 4 7.99931) (4 4 0) (4 0 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 1 0 45] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 -10768]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/barrier_variants/templates/rusty_frame_straight_wide.vmf b/packages/barrier_variants/templates/rusty_frame_straight_wide.vmf new file mode 100644 index 0000000000..fad9e0b2d8 --- /dev/null +++ b/packages/barrier_variants/templates/rusty_frame_straight_wide.vmf @@ -0,0 +1,143 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "75" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "4" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "75" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" +} +entity +{ + "id" "667" + "classname" "bee2_template_conf" + "detail_auto_visgroup" "0" + "discard_brushes" "0" + "temp_type" "default" + "template_id" "BEE2_GLASS_SQUAREBEAMS_FRAME_WIDE_STRAIGHT" + "origin" "0 0 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "659" + "classname" "func_detail" + solid + { + "id" "660" + side + { + "id" "59" + "plane" "(64 -4 0) (0 -4 0) (0 -4 7.99965)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 58] 0.25" + "vaxis" "[1 0 0 256] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58" + "plane" "(0 0 0) (64 0 0) (64 0 7.99965)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 58] 0.25" + "vaxis" "[1 0 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57" + "plane" "(64 0 0) (0 0 0) (0 -4 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 -1 0 44] 0.25" + "vaxis" "[-1 0 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56" + "plane" "(64 -4 8) (0 -4 8) (0 0 8)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 -1 0 44] 0.25" + "vaxis" "[-1 0 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55" + "plane" "(0 -4 7.99931) (0 -4 0) (0 0 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 -468] 0.25" + "vaxis" "[0 -1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "54" + "plane" "(64 0 7.99931) (64 0 0) (64 -4 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 1 0 60] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 -10768]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/barrier_variants/templates/tinted_glass.vmf b/packages/barrier_variants/templates/tinted_glass.vmf new file mode 100644 index 0000000000..1e8177c594 --- /dev/null +++ b/packages/barrier_variants/templates/tinted_glass.vmf @@ -0,0 +1,312 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "2" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "16" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "2" + "classname" "worldspawn" + "skyname" "sky_black_nofog" + "maxpropscreenwidth" "-1" + "detailvbsp" "detail.vbsp" + "detailmaterial" "detail/detailsprites" + "maxblobcount" "250" +} +entity +{ + "id" "2" + "classname" "bee2_template_barriersetter" + "angles" "0 90 90" + "barrierid" "BEE2_TINTED_GLASS" + "force" "1" + "origin" "-64 -16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "23" + "classname" "bee2_template_barriersetter" + "angles" "0 90 90" + "barrierid" "BEE2_TINTED_GLASS" + "force" "1" + "origin" "-64 -48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "25" + "classname" "bee2_template_barriersetter" + "angles" "0 90 90" + "barrierid" "BEE2_TINTED_GLASS" + "force" "1" + "origin" "-64 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "27" + "classname" "bee2_template_barriersetter" + "angles" "0 90 90" + "barrierid" "BEE2_TINTED_GLASS" + "force" "1" + "origin" "-64 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "29" + "classname" "bee2_template_barriersetter" + "angles" "0 90 90" + "barrierid" "BEE2_TINTED_GLASS" + "force" "1" + "origin" "-64 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "31" + "classname" "bee2_template_barriersetter" + "angles" "0 90 90" + "barrierid" "BEE2_TINTED_GLASS" + "force" "1" + "origin" "-64 48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "33" + "classname" "bee2_template_barriersetter" + "angles" "0 90 90" + "barrierid" "BEE2_TINTED_GLASS" + "force" "1" + "origin" "-64 48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "35" + "classname" "bee2_template_barriersetter" + "angles" "0 90 90" + "barrierid" "BEE2_TINTED_GLASS" + "force" "1" + "origin" "-64 16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "37" + "classname" "bee2_template_barriersetter" + "angles" "0 90 90" + "barrierid" "BEE2_TINTED_GLASS" + "force" "1" + "origin" "-64 16 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "39" + "classname" "bee2_template_barriersetter" + "angles" "0 90 90" + "barrierid" "BEE2_TINTED_GLASS" + "force" "1" + "origin" "-64 48 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "41" + "classname" "bee2_template_barriersetter" + "angles" "0 90 90" + "barrierid" "BEE2_TINTED_GLASS" + "force" "1" + "origin" "-64 48 48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "43" + "classname" "bee2_template_barriersetter" + "angles" "0 90 90" + "barrierid" "BEE2_TINTED_GLASS" + "force" "1" + "origin" "-64 16 48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "45" + "classname" "bee2_template_barriersetter" + "angles" "0 90 90" + "barrierid" "BEE2_TINTED_GLASS" + "force" "1" + "origin" "-64 -16 48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "47" + "classname" "bee2_template_barriersetter" + "angles" "0 90 90" + "barrierid" "BEE2_TINTED_GLASS" + "force" "1" + "origin" "-64 -48 48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "49" + "classname" "bee2_template_barriersetter" + "angles" "0 90 90" + "barrierid" "BEE2_TINTED_GLASS" + "force" "1" + "origin" "-64 -48 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "51" + "classname" "bee2_template_barriersetter" + "angles" "0 90 90" + "barrierid" "BEE2_TINTED_GLASS" + "force" "1" + "origin" "-64 -16 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "117" + "classname" "bee2_template_conf" + "debug" "0" + "detail_auto_visgroup" "0" + "discard_brushes" "0" + "temp_type" "default" + "template_id" "BEE2_TINTED_GLASS_PLACER" + "origin" "0 0 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/barrier_variants/templates/tinted_glass_oldap.vmf b/packages/barrier_variants/templates/tinted_glass_oldap.vmf new file mode 100644 index 0000000000..4dc3ab6a20 --- /dev/null +++ b/packages/barrier_variants/templates/tinted_glass_oldap.vmf @@ -0,0 +1,132 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "1" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "64" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "1" + "classname" "worldspawn" + "skyname" "sky_black_nofog" + "maxpropscreenwidth" "-1" + "detailvbsp" "detail.vbsp" + "detailmaterial" "detail/detailsprites" + "maxblobcount" "250" + solid + { + "id" "2" + side + { + "id" "1" + "plane" "(-64 64 64) (64 64 64) (64 -64 64)" + "material" "BEE2/50S/GLASS_BRICK" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2" + "plane" "(-64 -64 -64) (64 -64 -64) (64 64 -64)" + "material" "BEE2/50S/GLASS_BRICK" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3" + "plane" "(-64 64 64) (-64 -64 64) (-64 -64 -64)" + "material" "BEE2/50S/GLASS_BRICK" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4" + "plane" "(64 64 -64) (64 -64 -64) (64 -64 64)" + "material" "BEE2/50S/GLASS_BRICK" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5" + "plane" "(64 64 64) (-64 64 64) (-64 64 -64)" + "material" "BEE2/50S/GLASS_BRICK" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6" + "plane" "(64 -64 -64) (-64 -64 -64) (-64 -64 64)" + "material" "BEE2/50S/GLASS_BRICK" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 158 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } +} +entity +{ + "id" "49" + "classname" "bee2_template_conf" + "debug" "0" + "detail_auto_visgroup" "0" + "discard_brushes" "0" + "temp_type" "default" + "template_id" "BEE2_TINTED_GLASS_OLDAP_SCALING" + "origin" "0 0 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/blocks/items/special_marker/editoritems.txt b/packages/blocks/items/special_marker/editoritems.txt index 8096fe1854..8aec262bf6 100644 --- a/packages/blocks/items/special_marker/editoritems.txt +++ b/packages/blocks/items/special_marker/editoritems.txt @@ -10,11 +10,12 @@ { "ModelName" "bee2_block_special.3ds" } - "Palette" - { - "Tooltip" "Surface Marker" - "Image" "palette/logic/blocks/special.png" - } + // Disabled for now + // "Palette" + // { + // "Tooltip" "Surface Marker" + // "Image" "palette/logic/blocks/special.png" + // } "Sounds" { "SOUND_CREATED" "P2Editor.PlaceButton" diff --git a/packages/blocks/templates/angled_30.vmf b/packages/blocks/templates/angled_30.vmf index 8224703b98..5aa4011f73 100644 --- a/packages/blocks/templates/angled_30.vmf +++ b/packages/blocks/templates/angled_30.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "7335" - "mapversion" "15" + "editorbuild" "9672" + "mapversion" "18" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "15" + "mapversion" "18" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -29,6 +29,478 @@ world "skyname" "sky_black_nofog" } entity +{ + "id" "189" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "212" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "214" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "216" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "218" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "220" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "222" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "224" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "226" + "classname" "bee2_template_barriersetter" + "angles" "0 270 90" + "force" "0" + "origin" "64 -48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "243" + "classname" "bee2_template_barriersetter" + "angles" "0 270 90" + "force" "0" + "origin" "64 -16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "247" + "classname" "bee2_template_barriersetter" + "angles" "0 270 90" + "force" "0" + "origin" "64 16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "251" + "classname" "bee2_template_barriersetter" + "angles" "0 270 90" + "force" "0" + "origin" "64 48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "255" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "force" "0" + "origin" "-16 48 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "277" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "force" "0" + "origin" "-48 48 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "279" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "force" "0" + "origin" "-48 16 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "281" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "force" "0" + "origin" "-48 -16 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "283" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "force" "0" + "origin" "-48 -48 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "285" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "force" "0" + "origin" "-16 -48 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "287" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "force" "0" + "origin" "-16 -16 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "289" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "force" "0" + "origin" "-16 16 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "291" + "classname" "bee2_template_barriersetter" + "angles" "-90 0 0" + "force" "0" + "origin" "-3.8147e-006 48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "299" + "classname" "bee2_template_barriersetter" + "angles" "-90 0 0" + "force" "0" + "origin" "-3.8147e-006 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "303" + "classname" "bee2_template_barriersetter" + "angles" "-90 0 0" + "force" "0" + "origin" "-3.8147e-006 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "307" + "classname" "bee2_template_barriersetter" + "angles" "-90 0 0" + "force" "0" + "origin" "-3.8147e-006 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "319" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "force" "0" + "origin" "16 48 -32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "333" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "force" "0" + "origin" "16 16 -32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "337" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "force" "0" + "origin" "16 -16 -32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "339" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "force" "0" + "origin" "16 -48 -32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "341" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "force" "0" + "origin" "48 -48 -32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "343" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "force" "0" + "origin" "48 -16 -32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "345" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "force" "0" + "origin" "48 16 -32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "347" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "force" "0" + "origin" "48 48 -32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity { "id" "43" "classname" "bee2_template_tilesetter" diff --git a/packages/blocks/templates/angled_45.vmf b/packages/blocks/templates/angled_45.vmf index 98a21edd07..fabb6e7125 100644 --- a/packages/blocks/templates/angled_45.vmf +++ b/packages/blocks/templates/angled_45.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "7335" - "mapversion" "11" + "editorbuild" "9672" + "mapversion" "12" "formatversion" "100" "prefab" "0" } @@ -14,13 +14,13 @@ viewsettings "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "32" + "nGridSpacing" "16" "bShow3DGrid" "0" } world { "id" "1" - "mapversion" "11" + "mapversion" "12" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -29,6 +29,822 @@ world "skyname" "sky_black_nofog" } entity +{ + "id" "374" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "377" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "380" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "383" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "450" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "452" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "454" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "456" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "458" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "460" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "462" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "464" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "466" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "468" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "470" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "472" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "474" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 48 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "476" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 16 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "478" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -48 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "480" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -16 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "482" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "484" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "486" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "488" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "514" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "force" "0" + "origin" "-48 48 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "516" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "force" "0" + "origin" "-48 16 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "518" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "force" "0" + "origin" "-48 -16 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "520" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "force" "0" + "origin" "-48 -48 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "558" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "force" "0" + "origin" "64 48 48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "560" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "force" "0" + "origin" "64 16 48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "562" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "force" "0" + "origin" "64 -16 48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "564" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "force" "0" + "origin" "64 -48 48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "694" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "force" "0" + "origin" "32 48 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "696" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "force" "0" + "origin" "32 16 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "698" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "force" "0" + "origin" "32 -16 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "700" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "force" "0" + "origin" "32 -48 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "726" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "force" "0" + "origin" "0 48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "728" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "force" "0" + "origin" "0 16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "730" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "force" "0" + "origin" "0 -16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "732" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "force" "0" + "origin" "0 -48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "774" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "force" "0" + "origin" "-32 48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "776" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "force" "0" + "origin" "-32 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "778" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "force" "0" + "origin" "-32 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "780" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "force" "0" + "origin" "-32 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "822" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "force" "0" + "origin" "-16 48 -32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "824" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "force" "0" + "origin" "-16 16 -32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "826" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "force" "0" + "origin" "-16 -16 -32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "828" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "force" "0" + "origin" "-16 -48 -32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "854" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "force" "0" + "origin" "16 48 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "856" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "force" "0" + "origin" "16 16 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "858" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "force" "0" + "origin" "16 -16 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "860" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "force" "0" + "origin" "16 -48 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "918" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "force" "0" + "origin" "48 48 32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "920" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "force" "0" + "origin" "48 16 32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "922" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "force" "0" + "origin" "48 -16 32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "924" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "force" "0" + "origin" "48 -48 32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity { "id" "46" "classname" "bee2_template_tilesetter" diff --git a/packages/blocks/templates/angled_60.vmf b/packages/blocks/templates/angled_60.vmf index 671bb016b2..f8c304c530 100644 --- a/packages/blocks/templates/angled_60.vmf +++ b/packages/blocks/templates/angled_60.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8419" - "mapversion" "18" + "editorbuild" "9672" + "mapversion" "20" "formatversion" "100" "prefab" "0" } @@ -14,13 +14,13 @@ viewsettings "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "16" + "nGridSpacing" "32" "bShow3DGrid" "0" } world { "id" "1" - "mapversion" "18" + "mapversion" "20" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -29,6 +29,974 @@ world "skyname" "sky_black_nofog" } entity +{ + "id" "413" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "424" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "426" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "428" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "430" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "432" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "434" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "436" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "438" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "440" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "442" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "444" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "446" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "448" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "450" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "452" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "454" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 48 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "456" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 16 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "458" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -16 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "460" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -48 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "462" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -48 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "464" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -16 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "466" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 16 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "468" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 48 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "470" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 48 48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "472" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 16 48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "474" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -16 48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "476" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -48 48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "478" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -48 48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "480" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -16 48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "482" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 16 48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "484" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 48 48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "486" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "force" "0" + "origin" "0 48 48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "499" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "force" "0" + "origin" "0 48 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "507" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "force" "0" + "origin" "-32 48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "509" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "force" "0" + "origin" "-32 48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "511" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "force" "0" + "origin" "-32 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "517" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "force" "0" + "origin" "-32 16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "519" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "force" "0" + "origin" "0 16 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "521" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "force" "0" + "origin" "0 16 48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "523" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "force" "0" + "origin" "0 -16 48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "525" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "force" "0" + "origin" "0 -16 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "527" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "force" "0" + "origin" "-32 -16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "529" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "force" "0" + "origin" "-32 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "531" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "force" "0" + "origin" "-32 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "533" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "force" "0" + "origin" "-32 -48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "535" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "force" "0" + "origin" "0 -48 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "537" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "force" "0" + "origin" "0 -48 48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "539" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-16 48 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "542" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-48 48 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "545" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-48 16 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "548" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-48 -16 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "551" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-48 -48 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "554" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-16 -48 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "557" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-16 16 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "560" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-16 -16 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "715" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "717" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "719" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "721" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "723" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "725" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "727" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 -48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "729" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 -16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "795" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-16 48 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "797" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-16 16 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "799" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-16 -16 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "801" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-16 -48 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity { "id" "48" "classname" "bee2_template_tilesetter" diff --git a/packages/blocks/templates/angled_corner_30.vmf b/packages/blocks/templates/angled_corner_30.vmf index 19befbb0ec..9d54847933 100644 --- a/packages/blocks/templates/angled_corner_30.vmf +++ b/packages/blocks/templates/angled_corner_30.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8419" - "mapversion" "17" + "editorbuild" "9672" + "mapversion" "18" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "17" + "mapversion" "18" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -29,6 +29,342 @@ world "skyname" "sky_black_nofog" } entity +{ + "id" "149" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "166" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "170" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "172" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "285" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-16 16 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "288" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-16 48 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "291" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-48 48 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "294" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-16 -16 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "297" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-16 -48 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "300" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-48 -48 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "303" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-48 -16 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "306" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-48 16 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "309" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "48 48 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "312" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "16 48 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "315" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "16 16 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "318" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "48 16 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "465" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "origin" "0 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "479" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "origin" "0 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "483" + "classname" "bee2_template_barriersetter" + "angles" "90 90 0" + "origin" "16 0 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "493" + "classname" "bee2_template_barriersetter" + "angles" "90 90 0" + "origin" "48 0 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "497" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "16 -16 -32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "499" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "16 -48 -32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "521" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "48 -16 -32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "523" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "48 -48 -32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity { "id" "53" "classname" "bee2_template_tilesetter" diff --git a/packages/blocks/templates/angled_corner_45.vmf b/packages/blocks/templates/angled_corner_45.vmf index 1a59991d8e..b34119925a 100644 --- a/packages/blocks/templates/angled_corner_45.vmf +++ b/packages/blocks/templates/angled_corner_45.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8037" - "mapversion" "16" + "editorbuild" "9672" + "mapversion" "18" "formatversion" "100" "prefab" "0" } @@ -14,13 +14,13 @@ viewsettings "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "8" + "nGridSpacing" "16" "bShow3DGrid" "0" } world { "id" "1" - "mapversion" "16" + "mapversion" "18" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -29,6 +29,621 @@ world "skyname" "sky_black_nofog" } entity +{ + "id" "396" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-48 -48 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "399" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-48 -16 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "402" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-48 16 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "405" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-16 48 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "408" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "16 48 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "411" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "48 48 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "468" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-48 48 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "484" + "classname" "bee2_template_barrier_voxel_clear" + "origin" "-16 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "507" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "513" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "515" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "517" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "519" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "521" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "523" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "525" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "527" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "529" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "531" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "533" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "535" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -48 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "537" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-16 16 -32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "539" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "16 16 -32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "541" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "48 16 -32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "543" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-16 -48 -32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "545" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-16 -16 -32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "585" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-16 -16 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "587" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-16 -48 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "589" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "16 -16 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "591" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "16 -48 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "601" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "48 -16 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "603" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "48 -48 32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "607" + "classname" "bee2_template_barriersetter" + "angles" "90 90 0" + "origin" "16 32 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "623" + "classname" "bee2_template_barriersetter" + "angles" "90 90 0" + "origin" "48 32 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "627" + "classname" "bee2_template_barriersetter" + "angles" "90 90 0" + "origin" "-16 32 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "635" + "classname" "bee2_template_barriersetter" + "angles" "90 90 0" + "origin" "16 0 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "637" + "classname" "bee2_template_barriersetter" + "angles" "90 90 0" + "origin" "48 0 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "651" + "classname" "bee2_template_barriersetter" + "angles" "90 90 0" + "origin" "48 -32 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "659" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "origin" "-32 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "669" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "origin" "-32 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "673" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "origin" "-32 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "677" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "origin" "0 -16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "679" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "origin" "0 -48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "725" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "origin" "32 -48 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity { "id" "264" "classname" "bee2_template_tilesetter" diff --git a/packages/blocks/templates/angled_corner_60.vmf b/packages/blocks/templates/angled_corner_60.vmf index db36ee505b..6b0249b3d9 100644 --- a/packages/blocks/templates/angled_corner_60.vmf +++ b/packages/blocks/templates/angled_corner_60.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "7335" - "mapversion" "23" + "editorbuild" "9672" + "mapversion" "24" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "23" + "mapversion" "24" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -29,6 +29,790 @@ world "skyname" "sky_black_nofog" } entity +{ + "id" "745" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "16 -16 32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "747" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "16 -48 32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "749" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "48 -48 32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "751" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "48 -16 32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "753" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "origin" "0 -16 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "755" + "classname" "bee2_template_barriersetter" + "angles" "90 180 0" + "origin" "0 -48 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "757" + "classname" "bee2_template_barriersetter" + "angles" "90 90 0" + "origin" "16 0 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "759" + "classname" "bee2_template_barriersetter" + "angles" "90 90 0" + "origin" "48 0 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "761" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -16 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "763" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -48 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "765" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -48 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "767" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -16 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "953" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "955" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "957" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "959" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "961" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 -16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "963" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-48 -16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "965" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 -48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "967" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-48 -48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "977" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "979" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-48 48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "981" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "983" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-48 16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "993" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "995" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "997" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "999" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1025" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1027" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1029" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1031" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1033" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1035" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-48 48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1037" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1039" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-48 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1049" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1051" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-48 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1053" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1055" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-48 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1065" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1067" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1069" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1071" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1081" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-16 -48 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1083" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-48 -48 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1085" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-16 -16 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1087" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-48 -16 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1121" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-16 16 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1123" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-48 16 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1125" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-16 48 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1127" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "-48 48 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1137" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "48 16 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1139" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "16 16 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1141" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "48 48 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1143" + "classname" "bee2_template_barriersetter" + "angles" "0 0 0" + "origin" "16 48 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity { "id" "129" "classname" "bee2_template_tilesetter" diff --git a/packages/blocks/templates/block_128_32.vmf b/packages/blocks/templates/block_128_32.vmf index 4434c62bbe..645bdad76f 100644 --- a/packages/blocks/templates/block_128_32.vmf +++ b/packages/blocks/templates/block_128_32.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "7335" - "mapversion" "9" + "editorbuild" "9672" + "mapversion" "11" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "9" + "mapversion" "11" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -105,6 +105,62 @@ world } } entity +{ + "id" "444" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "0 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "450" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "0 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "454" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "0 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "458" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "0 48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity { "id" "6" "classname" "bee2_template_tilesetter" diff --git a/packages/blocks/templates/block_128_64.vmf b/packages/blocks/templates/block_128_64.vmf index 5c9fd13c59..4938e6facf 100644 --- a/packages/blocks/templates/block_128_64.vmf +++ b/packages/blocks/templates/block_128_64.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "7335" - "mapversion" "9" + "editorbuild" "9672" + "mapversion" "12" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "9" + "mapversion" "12" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -105,6 +105,230 @@ world } } entity +{ + "id" "290" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "32 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "296" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "32 -48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "300" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "0 -48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "302" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "0 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "308" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "0 -16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "310" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "0 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "312" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "32 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "314" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "32 -16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "324" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "0 16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "326" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "0 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "328" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "32 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "330" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "32 16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "340" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "0 48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "342" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "0 48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "344" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "32 48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "346" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "32 48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity { "id" "6" "classname" "bee2_template_tilesetter" @@ -492,9 +716,9 @@ entity { "id" "3" "classname" "bee2_template_conf" + "debug" "1" "detail_auto_visgroup" "0" "discard_brushes" "0" - "is_scaling" "0" "realign_faces" "1 2 3 4 5 6" "temp_type" "default" "template_id" "BEE2_BLOCK_128_64_64" diff --git a/packages/blocks/templates/block_64_64.vmf b/packages/blocks/templates/block_64_64.vmf index fc0730039a..e1e27f5489 100644 --- a/packages/blocks/templates/block_64_64.vmf +++ b/packages/blocks/templates/block_64_64.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "7335" - "mapversion" "14" + "editorbuild" "9672" + "mapversion" "18" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "14" + "mapversion" "18" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -105,6 +105,117 @@ world } } entity +{ + "id" "699" + "classname" "bee2_template_barrier_voxel_clear" + "origin" "32 16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "701" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "0 48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "703" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "32 48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "705" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "0 16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "618" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "32 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "620" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "32 48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "622" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "0 48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "624" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "0 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity { "id" "7" "classname" "bee2_template_tilesetter" diff --git a/packages/blocks/templates/flat_half.vmf b/packages/blocks/templates/flat_half.vmf index 229e8f5226..1c74df9953 100644 --- a/packages/blocks/templates/flat_half.vmf +++ b/packages/blocks/templates/flat_half.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "7335" - "mapversion" "7" + "editorbuild" "9672" + "mapversion" "8" "formatversion" "100" "prefab" "0" } @@ -14,13 +14,13 @@ viewsettings "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "16" + "nGridSpacing" "32" "bShow3DGrid" "0" } world { "id" "1" - "mapversion" "7" + "mapversion" "8" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -105,6 +105,454 @@ world } } entity +{ + "id" "371" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-48 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "375" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-48 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "377" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-48 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "379" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-48 48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "381" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "383" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "385" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "387" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "389" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "391" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "393" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "395" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "397" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "399" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "401" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "403" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "405" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "407" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "409" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 -48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "411" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-48 -48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "413" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 -16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "415" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-48 -16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "417" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-48 16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "419" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-48 48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "421" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "423" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "425" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "427" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "429" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "431" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "433" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "435" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity { "id" "12" "classname" "bee2_template_tilesetter" diff --git a/packages/blocks/templates/flat_quarter.vmf b/packages/blocks/templates/flat_quarter.vmf index 5de48ded31..a284ca99ab 100644 --- a/packages/blocks/templates/flat_quarter.vmf +++ b/packages/blocks/templates/flat_quarter.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "7335" - "mapversion" "8" + "editorbuild" "9672" + "mapversion" "9" "formatversion" "100" "prefab" "0" } @@ -14,13 +14,13 @@ viewsettings "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "16" + "nGridSpacing" "32" "bShow3DGrid" "0" } world { "id" "1" - "mapversion" "8" + "mapversion" "9" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -29,6 +29,230 @@ world "skyname" "sky_black_nofog" } entity +{ + "id" "139" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "147" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "149" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "151" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-48 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "153" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-48 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "155" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "157" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "159" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "161" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "163" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "165" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "167" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-48 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "169" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-48 48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "171" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "173" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "175" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity { "id" "8" "classname" "bee2_template_tilesetter" diff --git a/packages/blocks/templates/flat_threequarter.vmf b/packages/blocks/templates/flat_threequarter.vmf index 9148dcfdbc..aa95fbb515 100644 --- a/packages/blocks/templates/flat_threequarter.vmf +++ b/packages/blocks/templates/flat_threequarter.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "7335" - "mapversion" "9" + "editorbuild" "9672" + "mapversion" "10" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "9" + "mapversion" "10" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -105,6 +105,678 @@ world } } entity +{ + "id" "920" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "922" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "924" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "926" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-48 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "928" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-48 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "930" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "932" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "934" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "936" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "938" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "940" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "942" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-48 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "944" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-48 48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "946" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "948" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "950" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "952" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "954" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "956" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 -48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "958" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-48 -48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "960" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-48 -16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "962" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 -16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "964" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "966" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "968" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "970" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "972" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "974" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-48 16 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "976" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-48 48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "978" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "980" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "982" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1016" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -48 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1018" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -48 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1020" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 -48 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1022" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-48 -48 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1024" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-48 -16 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1026" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 -16 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1028" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 -16 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1030" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 -16 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1032" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 16 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1034" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 16 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1036" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 16 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1038" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-48 16 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1040" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-48 48 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1042" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "-16 48 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1044" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "16 48 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1046" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "48 48 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity { "id" "23" "classname" "bee2_template_tilesetter" diff --git a/packages/blocks/templates/win_full.vmf b/packages/blocks/templates/win_full.vmf index c1db697247..3450459229 100644 --- a/packages/blocks/templates/win_full.vmf +++ b/packages/blocks/templates/win_full.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8973" - "mapversion" "27" + "editorbuild" "9672" + "mapversion" "28" "formatversion" "100" "prefab" "0" } @@ -14,13 +14,13 @@ viewsettings "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "8" + "nGridSpacing" "32" "bShow3DGrid" "0" } world { "id" "1" - "mapversion" "27" + "mapversion" "28" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -29,6 +29,118 @@ world "skyname" "sky_black_nofog" } entity +{ + "id" "591" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "0 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "604" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "0 -48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "606" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "0 -48 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "608" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "0 -48 48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "610" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "0 48 48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "616" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "0 48 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "618" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "0 48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "620" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "0 48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity { "id" "494" "classname" "bee2_template_tilesetter" diff --git a/packages/blocks/templates/win_low.vmf b/packages/blocks/templates/win_low.vmf index 5763644475..c0e87f06a5 100644 --- a/packages/blocks/templates/win_low.vmf +++ b/packages/blocks/templates/win_low.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8973" - "mapversion" "33" + "editorbuild" "9672" + "mapversion" "35" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "33" + "mapversion" "35" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -29,6 +29,174 @@ world "skyname" "sky_black_nofog" } entity +{ + "id" "616" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "0 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "635" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "0 -48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "637" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "0 -48 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "639" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "0 -16 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "641" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "0 16 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "643" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "0 48 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "645" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "0 48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "647" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "0 48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "649" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "0 48 48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "651" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "0 16 48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "653" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "0 -16 48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "655" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "0 0 0" + "origin" "0 -48 48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity { "id" "507" "classname" "bee2_template_tilesetter" diff --git a/packages/blocks/templates/win_mid.vmf b/packages/blocks/templates/win_mid.vmf index 1dab712b18..437e2fb5f8 100644 --- a/packages/blocks/templates/win_mid.vmf +++ b/packages/blocks/templates/win_mid.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8973" - "mapversion" "30" + "editorbuild" "9672" + "mapversion" "31" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "30" + "mapversion" "31" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -29,6 +29,174 @@ world "skyname" "sky_black_nofog" } entity +{ + "id" "783" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "90 0 0" + "origin" "0 -48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "785" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "90 0 0" + "origin" "1.39876e-006 -48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "787" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "90 0 0" + "origin" "2.79753e-006 -48 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "789" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "90 0 0" + "origin" "4.19629e-006 -48 48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "791" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "90 0 0" + "origin" "4.19629e-006 -16 48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "797" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "90 0 0" + "origin" "0 -16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "799" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "90 0 0" + "origin" "0 16 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "805" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "90 0 0" + "origin" "4.19629e-006 16 48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "807" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "90 0 0" + "origin" "4.19629e-006 48 48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "809" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "90 0 0" + "origin" "2.79753e-006 48 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "811" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "90 0 0" + "origin" "1.39876e-006 48 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "813" + "classname" "bee2_template_barrier_voxel_clear" + "angles" "90 0 0" + "origin" "0 48 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity { "id" "507" "classname" "bee2_template_tilesetter" diff --git a/packages/catwalk/info.txt b/packages/catwalk/info.txt index ac3a41cfa8..09141d25f0 100644 --- a/packages/catwalk/info.txt +++ b/packages/catwalk/info.txt @@ -10,7 +10,7 @@ "" "A walkway to allow players to cross gaps. They auto-generate the connecting sections, allowing it to be placed in mid-air." "" "Place items at each corner of the walkway, and connect together with antlines. (They will not be visible.)" "" "" - "" " * Stairs will be generated if they start at different heights, as long as there is at least twice the vertical distance horizontally." + "" " * Stairs will be generated if they start at different heights. For these to work, there must be 2 voxels of horizontal space for each movement up or down." "" "* Catwalks with only one connection will be open." "" "* A catwalk can be placed standalone on a wall, to form an enclosed platform." } diff --git a/packages/catwalk/resources/models/props_map_editor/bee2/retro/catwalk.dx90.vtx b/packages/catwalk/resources/models/props_map_editor/bee2/retro/catwalk.dx90.vtx index 9e9ae50526..6f1e3e2947 100644 Binary files a/packages/catwalk/resources/models/props_map_editor/bee2/retro/catwalk.dx90.vtx and b/packages/catwalk/resources/models/props_map_editor/bee2/retro/catwalk.dx90.vtx differ diff --git a/packages/catwalk/resources/models/props_map_editor/bee2/retro/catwalk.mdl b/packages/catwalk/resources/models/props_map_editor/bee2/retro/catwalk.mdl index cc82474975..75dd7724c3 100644 Binary files a/packages/catwalk/resources/models/props_map_editor/bee2/retro/catwalk.mdl and b/packages/catwalk/resources/models/props_map_editor/bee2/retro/catwalk.mdl differ diff --git a/packages/catwalk/resources/models/props_map_editor/bee2/retro/catwalk.vvd b/packages/catwalk/resources/models/props_map_editor/bee2/retro/catwalk.vvd index cd2c1ee211..144ea825d6 100644 Binary files a/packages/catwalk/resources/models/props_map_editor/bee2/retro/catwalk.vvd and b/packages/catwalk/resources/models/props_map_editor/bee2/retro/catwalk.vvd differ diff --git a/packages/fr_fizzlers/resources/models/props_map_editor/bee2/clean/fr_compressed_smoke_field.dx90.vtx b/packages/fr_fizzlers/resources/models/props_map_editor/bee2/clean/fr_compressed_smoke_field.dx90.vtx index b218df1c9c..b4ee541dab 100644 Binary files a/packages/fr_fizzlers/resources/models/props_map_editor/bee2/clean/fr_compressed_smoke_field.dx90.vtx and b/packages/fr_fizzlers/resources/models/props_map_editor/bee2/clean/fr_compressed_smoke_field.dx90.vtx differ diff --git a/packages/fr_fizzlers/resources/models/props_map_editor/bee2/clean/fr_compressed_smoke_field.mdl b/packages/fr_fizzlers/resources/models/props_map_editor/bee2/clean/fr_compressed_smoke_field.mdl index bdfc955c38..d06dcf3d36 100644 Binary files a/packages/fr_fizzlers/resources/models/props_map_editor/bee2/clean/fr_compressed_smoke_field.mdl and b/packages/fr_fizzlers/resources/models/props_map_editor/bee2/clean/fr_compressed_smoke_field.mdl differ diff --git a/packages/fr_fizzlers/resources/models/props_map_editor/bee2/clean/fr_compressed_smoke_field.vvd b/packages/fr_fizzlers/resources/models/props_map_editor/bee2/clean/fr_compressed_smoke_field.vvd index cb11fb9aa5..2f35b1956d 100644 Binary files a/packages/fr_fizzlers/resources/models/props_map_editor/bee2/clean/fr_compressed_smoke_field.vvd and b/packages/fr_fizzlers/resources/models/props_map_editor/bee2/clean/fr_compressed_smoke_field.vvd differ diff --git a/packages/fr_fizzlers/resources/models/props_map_editor/bee2/clean/fr_force_deflection_field.dx90.vtx b/packages/fr_fizzlers/resources/models/props_map_editor/bee2/clean/fr_force_deflection_field.dx90.vtx index cd200bdd78..ebb3434007 100644 Binary files a/packages/fr_fizzlers/resources/models/props_map_editor/bee2/clean/fr_force_deflection_field.dx90.vtx and b/packages/fr_fizzlers/resources/models/props_map_editor/bee2/clean/fr_force_deflection_field.dx90.vtx differ diff --git a/packages/fr_fizzlers/resources/models/props_map_editor/bee2/clean/fr_force_deflection_field.mdl b/packages/fr_fizzlers/resources/models/props_map_editor/bee2/clean/fr_force_deflection_field.mdl index e7e39e9149..407a411d37 100644 Binary files a/packages/fr_fizzlers/resources/models/props_map_editor/bee2/clean/fr_force_deflection_field.mdl and b/packages/fr_fizzlers/resources/models/props_map_editor/bee2/clean/fr_force_deflection_field.mdl differ diff --git a/packages/fr_fizzlers/resources/models/props_map_editor/bee2/clean/fr_force_deflection_field.vvd b/packages/fr_fizzlers/resources/models/props_map_editor/bee2/clean/fr_force_deflection_field.vvd index f641671aaa..e878137296 100644 Binary files a/packages/fr_fizzlers/resources/models/props_map_editor/bee2/clean/fr_force_deflection_field.vvd and b/packages/fr_fizzlers/resources/models/props_map_editor/bee2/clean/fr_force_deflection_field.vvd differ diff --git a/packages/fr_fizzlers/resources/models/props_map_editor/bee2/clean/fr_matter_inquisition_field.dx90.vtx b/packages/fr_fizzlers/resources/models/props_map_editor/bee2/clean/fr_matter_inquisition_field.dx90.vtx index 0d490302f2..38c2b997b7 100644 Binary files a/packages/fr_fizzlers/resources/models/props_map_editor/bee2/clean/fr_matter_inquisition_field.dx90.vtx and b/packages/fr_fizzlers/resources/models/props_map_editor/bee2/clean/fr_matter_inquisition_field.dx90.vtx differ diff --git a/packages/fr_fizzlers/resources/models/props_map_editor/bee2/clean/fr_matter_inquisition_field.mdl b/packages/fr_fizzlers/resources/models/props_map_editor/bee2/clean/fr_matter_inquisition_field.mdl index ff379bc340..86c5ecb6be 100644 Binary files a/packages/fr_fizzlers/resources/models/props_map_editor/bee2/clean/fr_matter_inquisition_field.mdl and b/packages/fr_fizzlers/resources/models/props_map_editor/bee2/clean/fr_matter_inquisition_field.mdl differ diff --git a/packages/fr_fizzlers/resources/models/props_map_editor/bee2/clean/fr_matter_inquisition_field.vvd b/packages/fr_fizzlers/resources/models/props_map_editor/bee2/clean/fr_matter_inquisition_field.vvd index d4c87e5d51..fee0a2b446 100644 Binary files a/packages/fr_fizzlers/resources/models/props_map_editor/bee2/clean/fr_matter_inquisition_field.vvd and b/packages/fr_fizzlers/resources/models/props_map_editor/bee2/clean/fr_matter_inquisition_field.vvd differ diff --git a/packages/glass_hole/info.txt b/packages/glass_hole/info.txt deleted file mode 100644 index 3b43440b76..0000000000 --- a/packages/glass_hole/info.txt +++ /dev/null @@ -1,34 +0,0 @@ -"ID" "BEE2_GLASS_HOLE" -"Name" "Glass Hole" -"Desc" "Allows cutting circular holes into glass." - -"Item" - { - "ID" "ITEM_BEE2_GLASS_HOLE" - "Version" - { - "Styles" - { - "BEE2_CLEAN" - { - "Folder" "hole" - "config" "modern.cfg" - } - "BEE2_OVERGROWN" - { - "Folder" "hole" - "config" "modern.cfg" - } - "BEE2_PORTAL_1" - { - "Folder" "hole" - "config" "p1.cfg" - } - "BEE2_1950s" - { - "Folder" "hole" - "config" "retro.cfg" - } - } - } - } diff --git a/packages/glass_hole/items/hole/editoritems.txt b/packages/glass_hole/items/hole/editoritems.txt deleted file mode 100644 index 32f59ec437..0000000000 --- a/packages/glass_hole/items/hole/editoritems.txt +++ /dev/null @@ -1,56 +0,0 @@ -"Item" - { - "Type" "ITEM_BEE2_GLASS_HOLE" - "Editor" - { - "SubTypeProperty" "StartOpen" - "SubType" - { - "Name" "Small Glass Hole" - "Model" - { - "ModelName" "bee2_glass_hole_small.3ds" - } - "Palette" - { - "Tooltip" "GLASS HOLE" - "Image" "palette/clean/BEE2/glass_hole.png" - } - } - "SubType" - { - "Name" "Large Glass Hole" - "Model" - { - "ModelName" "bee2_glass_hole_large.3ds" - } - } - "MovementHandle" "HANDLE_NONE" - "OccupiesVoxel" "0" - "CanAnchorOnBarriers" "1" - } - "Properties" - { - "StartOpen" - { - "DefaultValue" "0" - "Index" "1" - } - } - "Exporting" - { - "Instances" - { - "0" - { - "Name" "instances/BEE2/logic/geometry/glass_hole.vmf" - "EntityCount" "0" - "BrushCount" "1" - "BrushSideCount" "6" - } - } - - "TargetName" "gh" - "Offset" "64 64 64" - } - } diff --git a/packages/glass_hole/items/hole/properties.txt b/packages/glass_hole/items/hole/properties.txt deleted file mode 100644 index 52ad8294f7..0000000000 --- a/packages/glass_hole/items/hole/properties.txt +++ /dev/null @@ -1,22 +0,0 @@ -"Properties" - { - "Authors" "TeamSpen210" - "Tags" "BEE 2;Partial Blocks" - "Description" - { - "" "Allows cutting circular holes into Glass or Grating." - "" "" - "" "* Place on top of an existing glass/grating surface. (Place onto a wall to rotate to the correct orientation, then drag onto the glass.)" - "" " * Unfortunately voxels with an adjacent wall make this difficult. Filling the block in, placing the hole item, then hollowing and adding the glass second will help in some situations." - "" "* Use the Start Open property to select the small or large variant." - "" "* For large holes, glass must also be present above, below, left and right." - "" "* Small holes allow portal shots, bullets, lasers and paint splatter. Large holes allow anything through that physically fits." - "" "* This also works with grating, although it is less useful." - } - - "ent_count" "~3" - "Icon" - { - "0" "clean/BEE2/glass_hole.png" - } - } diff --git a/packages/glass_hole/items/modern.cfg b/packages/glass_hole/items/modern.cfg deleted file mode 100644 index 4649fdb035..0000000000 --- a/packages/glass_hole/items/modern.cfg +++ /dev/null @@ -1,28 +0,0 @@ -"Options" - { - "glass_hole_temp" "BEE2_HOLE_MODERN" - "glass_hole_size_small" "32" - "glass_hole_size_large" "160" - } - -"Conditions" - { - "Condition" - { - "instance" "" - "Condition" - { - "instvar" "$start_open 1" - "Result" - { - "GlassHole" "large" - "ChangeInstance" "instances/BEE2/clean/items/barrier/glass_hole_large.vmf" - } - "Else" - { - "GlassHole" "small" - "ChangeInstance" "instances/BEE2/clean/items/barrier/glass_hole_small.vmf" - } - } - } - } diff --git a/packages/glass_hole/items/p1.cfg b/packages/glass_hole/items/p1.cfg deleted file mode 100644 index 1dbba0f619..0000000000 --- a/packages/glass_hole/items/p1.cfg +++ /dev/null @@ -1,28 +0,0 @@ -"Options" - { - "glass_hole_temp" "BEE2_HOLE_SQUARE" - "glass_hole_size_small" "32" - "glass_hole_size_large" "160" - } - -"Conditions" - { - "Condition" - { - "instance" "" - "Condition" - { - "instvar" "$start_open 1" - "Result" - { - "GlassHole" "large" - "ChangeInstance" "instances/BEE2/p1/items/barrier/glass_hole_large.vmf" - } - "Else" - { - "GlassHole" "small" - "ChangeInstance" "instances/BEE2/p1/items/barrier/glass_hole_small.vmf" - } - } - } - } diff --git a/packages/glass_hole/items/retro.cfg b/packages/glass_hole/items/retro.cfg deleted file mode 100644 index f1f9cb61d4..0000000000 --- a/packages/glass_hole/items/retro.cfg +++ /dev/null @@ -1,28 +0,0 @@ -"Options" - { - "glass_hole_temp" "BEE2_HOLE_SQUARE" - "glass_hole_size_small" "32" - "glass_hole_size_large" "160" - } - -"Conditions" - { - "Condition" - { - "instance" "" - "Condition" - { - "instvar" "$start_open 1" - "Result" - { - "GlassHole" "large" - "ChangeInstance" "instances/BEE2/50s/items/barrier/glass_hole_large.vmf" - } - "Else" - { - "GlassHole" "small" - "ChangeInstance" "instances/BEE2/50s/items/barrier/glass_hole_small.vmf" - } - } - } - } diff --git a/packages/glass_hole/resources/models/props_map_editor/bee2_glass_hole_large.vvd b/packages/glass_hole/resources/models/props_map_editor/bee2_glass_hole_large.vvd deleted file mode 100644 index 2d00645bfa..0000000000 Binary files a/packages/glass_hole/resources/models/props_map_editor/bee2_glass_hole_large.vvd and /dev/null differ diff --git a/packages/glass_hole/resources/models/props_map_editor/bee2_glass_hole_small.vvd b/packages/glass_hole/resources/models/props_map_editor/bee2_glass_hole_small.vvd deleted file mode 100644 index 5437652883..0000000000 Binary files a/packages/glass_hole/resources/models/props_map_editor/bee2_glass_hole_small.vvd and /dev/null differ diff --git a/packages/lifeform_sensor/items/lifeform_sensor/editoritems.txt b/packages/lifeform_sensor/items/lifeform_sensor/editoritems.txt index b78b49a8bd..1147f26cf9 100644 --- a/packages/lifeform_sensor/items/lifeform_sensor/editoritems.txt +++ b/packages/lifeform_sensor/items/lifeform_sensor/editoritems.txt @@ -7,16 +7,12 @@ "SubTypeProperty" "HazardType" "SubType" { - "Name" "Lifeform Sensor" - "Model" - { - "ModelName" "BEE2_lifeform_sensor.mdl" - } + "Name" "Lifeform Sensor" + "Model" "BEE2/clean/lifeform_sensor.mdl" "Palette" { "Tooltip" "LIFEFORM SENSOR" "Image" "palette/clean/lifeform_sensor.png" - "Position" "0 3 0" } "Sounds" { @@ -28,11 +24,8 @@ } "SubType" { - "Name" "Lifeform Sensor" - "Model" - { - "ModelName" "BEE2_lifeform_sensor.mdl" - } + "Name" "Lifeform Sensor" + "Model" "BEE2/clean/lifeform_sensor.mdl" "Sounds" { "SOUND_CREATED" "P2Editor.PlaceOther" diff --git a/packages/lifeform_sensor/resources/models/props_map_editor/bee2/clean/lifeform_sensor.dx90.vtx b/packages/lifeform_sensor/resources/models/props_map_editor/bee2/clean/lifeform_sensor.dx90.vtx new file mode 100644 index 0000000000..e95d0779a5 Binary files /dev/null and b/packages/lifeform_sensor/resources/models/props_map_editor/bee2/clean/lifeform_sensor.dx90.vtx differ diff --git a/packages/lifeform_sensor/resources/models/props_map_editor/bee2/clean/lifeform_sensor.mdl b/packages/lifeform_sensor/resources/models/props_map_editor/bee2/clean/lifeform_sensor.mdl new file mode 100644 index 0000000000..a65fc731b1 Binary files /dev/null and b/packages/lifeform_sensor/resources/models/props_map_editor/bee2/clean/lifeform_sensor.mdl differ diff --git a/packages/lifeform_sensor/resources/models/props_map_editor/bee2/clean/lifeform_sensor.vvd b/packages/lifeform_sensor/resources/models/props_map_editor/bee2/clean/lifeform_sensor.vvd new file mode 100644 index 0000000000..2adff54323 Binary files /dev/null and b/packages/lifeform_sensor/resources/models/props_map_editor/bee2/clean/lifeform_sensor.vvd differ diff --git a/packages/lifeform_sensor/resources/models/props_map_editor/bee2_lifeform_sensor.dx90.vtx b/packages/lifeform_sensor/resources/models/props_map_editor/bee2_lifeform_sensor.dx90.vtx deleted file mode 100644 index 4291898cd2..0000000000 Binary files a/packages/lifeform_sensor/resources/models/props_map_editor/bee2_lifeform_sensor.dx90.vtx and /dev/null differ diff --git a/packages/lifeform_sensor/resources/models/props_map_editor/bee2_lifeform_sensor.mdl b/packages/lifeform_sensor/resources/models/props_map_editor/bee2_lifeform_sensor.mdl deleted file mode 100644 index de1cd2d961..0000000000 Binary files a/packages/lifeform_sensor/resources/models/props_map_editor/bee2_lifeform_sensor.mdl and /dev/null differ diff --git a/packages/lifeform_sensor/resources/models/props_map_editor/bee2_lifeform_sensor.vvd b/packages/lifeform_sensor/resources/models/props_map_editor/bee2_lifeform_sensor.vvd deleted file mode 100644 index 1a490186b3..0000000000 Binary files a/packages/lifeform_sensor/resources/models/props_map_editor/bee2_lifeform_sensor.vvd and /dev/null differ diff --git a/packages/lifeform_sensor/resources/models/puzzlemaker/selection_BEE2_lifeform_sensor.3ds b/packages/lifeform_sensor/resources/models/puzzlemaker/selection_bee2/clean/lifeform_sensor.3ds similarity index 100% rename from packages/lifeform_sensor/resources/models/puzzlemaker/selection_BEE2_lifeform_sensor.3ds rename to packages/lifeform_sensor/resources/models/puzzlemaker/selection_bee2/clean/lifeform_sensor.3ds diff --git a/packages/logic/items/logic_gate/properties.txt b/packages/logic/items/logic_gate/properties.txt index 0b9e236c90..0d7c7289d3 100644 --- a/packages/logic/items/logic_gate/properties.txt +++ b/packages/logic/items/logic_gate/properties.txt @@ -10,7 +10,7 @@ "" "* The OR activates when any input is activated." "" "* The NOT deactivates when any input activates." } - "all_icon" "palette/logic/logic_gates.png" + "all_icon" "palette/logic/gates.png" "all_name" "LOGIC GATES" "Ent_Count" "1" "Icon" diff --git a/packages/neurotoxin/info.txt b/packages/neurotoxin/info.txt index b5b6f146d0..708382b70f 100644 --- a/packages/neurotoxin/info.txt +++ b/packages/neurotoxin/info.txt @@ -83,6 +83,7 @@ "Instances" { "0" "instances/BEE2/p1/items/neuro/timer.vmf" + "bee2_case" "instances/BEE2/clean/items/neuro/timer_case.vmf" } } "BEE2_1950s" diff --git a/packages/paintFizzler/resources/models/props_map_editor/bee2/clean/paint_fizz.dx90.vtx b/packages/paintFizzler/resources/models/props_map_editor/bee2/clean/paint_fizz.dx90.vtx index b38ad4ce07..59e510f30d 100644 Binary files a/packages/paintFizzler/resources/models/props_map_editor/bee2/clean/paint_fizz.dx90.vtx and b/packages/paintFizzler/resources/models/props_map_editor/bee2/clean/paint_fizz.dx90.vtx differ diff --git a/packages/paintFizzler/resources/models/props_map_editor/bee2/clean/paint_fizz.mdl b/packages/paintFizzler/resources/models/props_map_editor/bee2/clean/paint_fizz.mdl index b066d381cd..2da154d24b 100644 Binary files a/packages/paintFizzler/resources/models/props_map_editor/bee2/clean/paint_fizz.mdl and b/packages/paintFizzler/resources/models/props_map_editor/bee2/clean/paint_fizz.mdl differ diff --git a/packages/paintFizzler/resources/models/props_map_editor/bee2/clean/paint_fizz.vvd b/packages/paintFizzler/resources/models/props_map_editor/bee2/clean/paint_fizz.vvd index 100afd788b..c8bf5e0d28 100644 Binary files a/packages/paintFizzler/resources/models/props_map_editor/bee2/clean/paint_fizz.vvd and b/packages/paintFizzler/resources/models/props_map_editor/bee2/clean/paint_fizz.vvd differ diff --git a/packages/phys_shield/resources/models/props_map_editor/bee2/clean/fg_physler.dx90.vtx b/packages/phys_shield/resources/models/props_map_editor/bee2/clean/fg_physler.dx90.vtx index 7bf81e6891..65b9a4b007 100644 Binary files a/packages/phys_shield/resources/models/props_map_editor/bee2/clean/fg_physler.dx90.vtx and b/packages/phys_shield/resources/models/props_map_editor/bee2/clean/fg_physler.dx90.vtx differ diff --git a/packages/phys_shield/resources/models/props_map_editor/bee2/clean/fg_physler.mdl b/packages/phys_shield/resources/models/props_map_editor/bee2/clean/fg_physler.mdl index 88890351c3..988f632e14 100644 Binary files a/packages/phys_shield/resources/models/props_map_editor/bee2/clean/fg_physler.mdl and b/packages/phys_shield/resources/models/props_map_editor/bee2/clean/fg_physler.mdl differ diff --git a/packages/phys_shield/resources/models/props_map_editor/bee2/clean/fg_physler.vvd b/packages/phys_shield/resources/models/props_map_editor/bee2/clean/fg_physler.vvd index aeba78727e..025861f07c 100644 Binary files a/packages/phys_shield/resources/models/props_map_editor/bee2/clean/fg_physler.vvd and b/packages/phys_shield/resources/models/props_map_editor/bee2/clean/fg_physler.vvd differ diff --git a/packages/rexaura/rex_fields/resources/models/props_map_editor/bee2/clean/rex_flux_field.dx90.vtx b/packages/rexaura/rex_fields/resources/models/props_map_editor/bee2/clean/rex_flux_field.dx90.vtx index 00013070c8..5b2967f11d 100644 Binary files a/packages/rexaura/rex_fields/resources/models/props_map_editor/bee2/clean/rex_flux_field.dx90.vtx and b/packages/rexaura/rex_fields/resources/models/props_map_editor/bee2/clean/rex_flux_field.dx90.vtx differ diff --git a/packages/rexaura/rex_fields/resources/models/props_map_editor/bee2/clean/rex_flux_field.mdl b/packages/rexaura/rex_fields/resources/models/props_map_editor/bee2/clean/rex_flux_field.mdl index 65e91a57b8..f381316515 100644 Binary files a/packages/rexaura/rex_fields/resources/models/props_map_editor/bee2/clean/rex_flux_field.mdl and b/packages/rexaura/rex_fields/resources/models/props_map_editor/bee2/clean/rex_flux_field.mdl differ diff --git a/packages/rexaura/rex_fields/resources/models/props_map_editor/bee2/clean/rex_flux_field.vvd b/packages/rexaura/rex_fields/resources/models/props_map_editor/bee2/clean/rex_flux_field.vvd index dec76efc72..e571105bcb 100644 Binary files a/packages/rexaura/rex_fields/resources/models/props_map_editor/bee2/clean/rex_flux_field.vvd and b/packages/rexaura/rex_fields/resources/models/props_map_editor/bee2/clean/rex_flux_field.vvd differ diff --git a/packages/sendificator/items/sendtor_all.cfg b/packages/sendificator/items/sendtor_all.cfg index db6e11f1bc..8596fa01ec 100644 --- a/packages/sendificator/items/sendtor_all.cfg +++ b/packages/sendificator/items/sendtor_all.cfg @@ -56,36 +56,17 @@ "Filename" "hmw/sendtor_cube_data.nut" "Cube" "" } - - "Pack" "PACK_HMW_SENDTOR_LOGIC" + // Export out these collision types for the VScript to check against. + "VScriptCollide" "GLASS OOB" + "addGlobal" { "File" "instances/bee2/logic/hmw/sendtor_manager.vmf" "Name" "sendtor_ents" } - + "Has" "NeedsPortalMan" // Ensure the portalgun logic is added to the map, which tracks portals. "NextCondition" "" // Don't do more than once. } } - "Condition" - { - // Add this earlier, before some styles reorient the exit door - "Priority" "-10" - "Has" "Sendificator" - "OR" - { - "instance" "[spExitCorr]" - "instance" "[coopCorr]" - } - "Result" - { - "addOverlay" - { - // This fizzles cubes which get teleported into the exit room - "File" "instances/bee2/logic/hmw/sendtor_exit.vmf" - "Copy_Fixup" "0" - } - } - } } diff --git a/packages/sendificator/resources/scripts/vscripts/hmw/sendificator.nut b/packages/sendificator/resources/scripts/vscripts/hmw/sendificator.nut index bcb3ae01bb..9858813d88 100644 --- a/packages/sendificator/resources/scripts/vscripts/hmw/sendificator.nut +++ b/packages/sendificator/resources/scripts/vscripts/hmw/sendificator.nut @@ -79,8 +79,8 @@ ripple_fx <- Entities.FindByName(null, "@sendtor_ripple_e"); // BEE addition: If cube teleports outside max bounds, fizzle it. This can // happen if you hit a laser cube inside a portal. -map_bounds_min <- -128.0; -map_bounds_max <- 26 * 128.0; +map_bounds_min <- -1024.0; +map_bounds_max <- 28 * 128.0; // static variables @@ -472,13 +472,20 @@ function trace() } if (hit == 0) { - // No more cubes and portals. We might still be hitting glass, - // so check the thickness. - if (place_laser_for_glass()) { - schedule_call("trace_glass();"); - } - else { - reset_lasers(); + // No more cubes and portals. + + // First check if glass is here, via dumped BEE info. + if (::BEE_PointCollide(current_pos, ::BEECollide.GLASS, 0.5)) { + // Glass is here, check if it's thin enough for passage. + if (place_laser_for_glass()) { + schedule_call("trace_glass();"); + } + else { // Can't place laser, fail. + reset_lasers(); + } + } else { + // Not glass, place the cube. + teleport_cube(); } return; } @@ -511,20 +518,22 @@ function trace_glass() // Not glass, so this is the endpoint. // Turn off the glass-tracing laser. reset_laser_for_glass(); - - // Calculate the teleport destination - local cargo = find_cube_to_send(::sendtor_platform.GetOrigin()); - local dest_offset = teleport_dest_offset; - if (cargo != null && is_monster_cube(cargo)) { - dest_offset = teleport_dest_offset_mon; - } - pos = backtrack_dest(dest_offset, index); - dest_confirm(cargo, pos); - + teleport_cube(); return; } } +function teleport_cube() { + // Calculate the teleport destination + local cargo = find_cube_to_send(::sendtor_platform.GetOrigin()); + local dest_offset = teleport_dest_offset; + if (cargo != null && is_monster_cube(cargo)) { + dest_offset = teleport_dest_offset_mon; + } + local pos = backtrack_dest(dest_offset, index); + dest_confirm(cargo, pos); +} + function trace_cubes() { @@ -702,13 +711,18 @@ function dest_confirm(cargo, location) freeze_time = 0.1; } - if ( + if (::BEE_PointCollide(current_pos, ::BEECollide.OOB, 0.1)) { + // Placed in an OOB area - exit, obs rooms, etc. + // Fizzle the cube. + printl("Cube sendificated out of bounds, fizzling."); + EntFireByHandle(cargo, "Dissolve", "", 0.5, self, self); + } else if ( map_bounds_min > location.x || location.y > map_bounds_max || map_bounds_min > location.y || location.x > map_bounds_max || map_bounds_min > location.z || location.z > map_bounds_max ) { - // Outside the map, force a fizzle. - printl("Cube sendificated out of bounds, fizzling."); + // Fully outside the map, force a fizzle. + printl("Cube sendificated out of the map, fizzling."); EntFireByHandle(cargo, "SilentDissolve", "", 0.1, self, self); EntFireByHandle(cargo, "Dissolve", "", 0.25, self, self); // Play fizzling sound globally, to let players know what happened. diff --git a/packages/signage/info.txt b/packages/signage/info.txt index 277f7abd83..2b2b29ca01 100644 --- a/packages/signage/info.txt +++ b/packages/signage/info.txt @@ -10,6 +10,8 @@ "" "Signage helps indicate unseen elements or hint to solutions for puzzles." "" "" "" "* The timer widget chooses which sign should be used. Infinite uses no sign." + "" "* Change which sign corresponds to which timer value in the Item/Style Properties window." + "" "* Right click on the item in the editor to see the currently selected order." "" "* Set Start Enabled to add an arrow pointing in a direction." "" "* Set Start Reversed to point towards the center of the block instead." "" "" @@ -89,6 +91,8 @@ "" "Allows manually placing the signage used for antline connections." "" "" "" "* The timer widget chooses which sign should be used (3-12)." + "" "* These match the signs used on connections, in the same order that the editor picks." + "" "* Right click on the item in the editor to see the sign order." "" "* Set Start Reversed to place it on the other side." "" "" "" "The signage blocks portal placement as well." diff --git a/packages/standing_reclined_fizzlers/templates/standing_wall_pillar_clean_over.vmf b/packages/standing_reclined_fizzlers/templates/standing_wall_pillar_clean_over.vmf index 19777d214d..c9b30c6a74 100644 --- a/packages/standing_reclined_fizzlers/templates/standing_wall_pillar_clean_over.vmf +++ b/packages/standing_reclined_fizzlers/templates/standing_wall_pillar_clean_over.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8419" - "mapversion" "145" + "editorbuild" "9672" + "mapversion" "146" "formatversion" "100" "prefab" "0" } @@ -44,7 +44,7 @@ viewsettings world { "id" "1" - "mapversion" "145" + "mapversion" "146" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -78,7 +78,7 @@ entity "classname" "bee2_template_tilesetter" "angles" "0 180 0" "color" "tile" - "force" "1" + "force" "0" "skin" "4" "origin" "0 -80 -64" editor diff --git a/packages/styles/oldAp/info.txt b/packages/styles/oldAp/info.txt index df2e4c9a17..1fb0ba4573 100644 --- a/packages/styles/oldAp/info.txt +++ b/packages/styles/oldAp/info.txt @@ -2884,7 +2884,47 @@ { "Styles" { - "BEE2_1950s" "glass" + "BEE2_1950s" + { + "Base" "BEE2_CLEAN" + + "Config" "barriers.cfg" + "Append" + { + "Replacements" + { + "%GLASS_TEMP%" "BEE2_GLASS_TEMPLATE_50s" + "%GLASS_MAT%" "glass/glasswindow007a_less_shiny" + "%GRATE_MAT%" "metal/underground_metalgrate001a" + } + } + } + "BEE2_1970s" + { + "Base" "BEE2_1950s" + + "Append" + { + "Replacements" + { + "%GLASS_TEMP%" "BEE2_GLASS_TEMPLATE_70s" + "%GLASS_MAT%" "glass/glasswindow_frosted" + "%GRATE_MAT%" "metal/underground_metalgrate001a" + } + } + } + "BEE2_1980s" + { + "Base" "BEE2_1970s" + + "Append" + { + "Replacements" + { + "%GRATE_MAT%" "metal/underground_metalgrate001b" + } + } + } } } } @@ -3128,10 +3168,6 @@ "Base" "BEE2_1950s" "Append" { - "Replacements" - { - "%decade%" "80s" - } "Conditions" { "Condition" diff --git a/packages/styles/oldAp/items/barriers.cfg b/packages/styles/oldAp/items/barriers.cfg new file mode 100644 index 0000000000..a3d9506720 --- /dev/null +++ b/packages/styles/oldAp/items/barriers.cfg @@ -0,0 +1,173 @@ +"BarrierFrames" + { + "BEE2_SQUAREBEAMS_RUSTY" + { + // Straight points along the X axis, attached to the Z plane. + "Straight" + { + "template" "BEE2_GLASS_SQUAREBEAMS_FRAME_STRAIGHT" + } + + "CornerSize" "0" + + "ConcaveCorner" + { + "template" "BEE2_GLASS_SQUAREBEAMS_FRAME_CORNER" + } + } + } + +"Barriers" + { + "VALVE_GLASS" + { + "Frame" "BEE2_SQUAREBEAMS_RUSTY" + + "mergeable" "1" // Instance name does not matter. + "error_tex" "glass" + + // If we don't have puzzlemaker frames, try props_test_chamber, then P1. + "HoleVariant" "THIN_SQUARE_OLDAP" + "HoleVariant" "THIN_MODERN_TESTCHAMBER" + + "Brush" + { + "offset" "0.5" + "thickness" "1" + "carve_by_hole" "1" + + "template" "%GLASS_TEMP%" + "material" "%GLASS_MAT%" + } + "Brush" + { + "offset" "0" + "thickness" "4" + "carve_by_hole" "1" + + "material" "BEE2/glass_player_clip" + "tooltexture" "1" + "StaticPlayerClip" "1" + } + "Brush" // Cut visleafs along the plane, to help with depth sorting. + { + "offset" "0" + "thickness" "4" + "carve_by_hole" "0" + "world" "1" + + "material" "tools/toolshint" + "side_mat" "tools/toolsskip" + } + "Collide" + { + "offset" "0" + "thickness" "4" + "carve_by_hole" "1" + "contents" "glass" + } + } + "VALVE_GRATING" + { + "Frame" "BEE2_SQUAREBEAMS_RUSTY" + + "mergeable" "1" // Instance name does not matter. + "error_tex" "grating" + + "HoleVariant" "THIN_SQUARE_OLDAP" + "HoleVariant" "THIN_MODERN_TESTCHAMBER" + + "Brush" + { + "offset" "0.5" + "thickness" "1" + "carve_by_hole" "1" + + "template" "BEE2_GRATING_TEMPLATE_SQUARE" + "material" "%GRATE_MAT%" + + "keys" + { + "classname" "func_brush" + "renderfx" "14" // Constant Glow + "solidity" "1" // Never Solid + } + } + "Brush" + { + "offset" "0" + "thickness" "4" + "carve_by_hole" "1" + + "material" "BEE2/grate_player_clip" + "side_mat" "BEE2/grate_player_clip" + "StaticPlayerClip" "1" + } + "Brush" + { + "offset" "0" + "thickness" "4" + "carve_by_hole" "1" + + "material" "tools/toolstrigger" + "tooltexture" "1" + + "keys" + { + "classname" "func_clip_vphysics" + "filtername" "@grating_filter" + } + } + "Brush" // Cut visleafs along the plane, to help with depth sorting. + { + "offset" "0" + "thickness" "4" + "carve_by_hole" "0" + "world" "1" + + "material" "tools/toolshint" + "side_mat" "tools/toolsskip" + } + "Collide" + { + "offset" "0" + "thickness" "4" + "carve_by_hole" "1" + "contents" "grating" + } + } + } + + +"Conditions" + { + "Condition" + { + "instance" "[glass_128]" + "Condition" + { + "instvar" "$barrier_type glass" + "Result" + { + "Has" "glass" + } + } + "Condition" + { + "instvar" "$barrier_type grating" + "Result" + { + "Has" "grating" + } + } + } + "Condition" + { + "Priority" "200" + "instance" "[glass_128]" + "Result" + { + "ChangeInstance" "" + } + } + } diff --git a/packages/styles/oldAp/items/glass/editoritems.txt b/packages/styles/oldAp/items/glass/editoritems.txt deleted file mode 100644 index ff83082d82..0000000000 --- a/packages/styles/oldAp/items/glass/editoritems.txt +++ /dev/null @@ -1,141 +0,0 @@ -"Item" -{ - "Type" "ITEM_BARRIER" - "ItemClass" "ItemBarrier" - "Editor" - { - "SubTypeProperty" "BarrierType" - "SubType" - { - "Name" "PORTAL2_PuzzleEditor_Item_glass" - "Model" - { - "ModelName" "glass_handle.3ds" - } - "Palette" - { - "Tooltip" "PORTAL2_PuzzleEditor_Palette_glass" - "Image" "palette/glass.png" - "Position" "1 3 0" - } - } - "SubType" - { - "Name" "PORTAL2_PuzzleEditor_Item_grating" - "Model" - { - "ModelName" "glass_handle.3ds" - } - "Palette" - { - "Tooltip" "PORTAL2_PuzzleEditor_Palette_grating" - "Image" "palette/grating.png" - "Position" "1 3 0" - } - } - "MovementHandle" "HANDLE_4_DIRECTIONS" - "CanAnchorOnBarriers" "1" - "OccupiesVoxel" "0" - } - "Properties" - { - "BarrierType" - { - "DefaultValue" "0" - "Index" "0" - } - } - "Exporting" - { - "Instances" - { - "0" - { - "Name" "instances/BEE2/50s/items/barrier/segment.vmf" - "EntityCount" "1" - "BrushCount" "2" - "BrushSideCount" "12" - } - "1" - { - "Name" "instances/BEE2/50s/items/barrier/frame_left_corner.vmf" - "EntityCount" "0" - "BrushCount" "1" - "BrushSideCount" "6" - } - "2" - { - "Name" "instances/BEE2/50s/items/barrier/frame_left_straight.vmf" - "EntityCount" "0" - "BrushCount" "1" - "BrushSideCount" "6" - "EntityCount" "0" - } - "3" - { - "Name" "instances/BEE2/50s/items/barrier/frame_left_short.vmf" - "EntityCount" "0" - "BrushCount" "1" - "BrushSideCount" "6" - "EntityCount" "0" - } - "4" - { - "Name" "instances/BEE2/50s/items/barrier/frame_left_convex_corner.vmf" - "EntityCount" "0" - "BrushCount" "1" - "BrushSideCount" "6" - } - "5" - { - "Name" "instances/BEE2/50s/items/barrier/frame_right_corner.vmf" - "EntityCount" "0" - "BrushCount" "1" - } - "6" - { - "Name" "instances/BEE2/50s/items/barrier/frame_right_straight.vmf" - "EntityCount" "0" - "BrushCount" "1" - "BrushSideCount" "6" - } - "7" - { - "Name" "instances/BEE2/50s/items/barrier/frame_right_short.vmf" - "EntityCount" "0" - "BrushCount" "1" - "BrushSideCount" "6" - } - "8" - { - "Name" "instances/BEE2/50s/items/barrier/frame_right_convex_corner.vmf" - "EntityCount" "0" - "BrushCount" "1" - "BrushSideCount" "6" - } - } - "TargetName" "g" - "Offset" "64 64 64" - } -} - -"Item" -{ - "Type" "ITEM_BARRIER_EXTENT" - "ItemClass" "ItemBarrierExtent" - "Editor" - { - "SubType" - { - "Model" - { - "ModelName" "handle_grip_trianglesmall.3ds" - } - } - "MovementHandle" "HANDLE_NONE" - "OccupiesVoxel" "0" - "Deletable" "0" - "Copyable" "0" - "PseudoHandle" "1" - } -} \ No newline at end of file diff --git a/packages/styles/oldAp/items/glass/properties.txt b/packages/styles/oldAp/items/glass/properties.txt deleted file mode 100644 index 013f0368de..0000000000 --- a/packages/styles/oldAp/items/glass/properties.txt +++ /dev/null @@ -1,13 +0,0 @@ -"Properties" - { - "Authors" "Valve, TeamSpen210" - "Tags" "Portal 2;Geometry" - "infoURL" "https:/\/developer.valvesoftware.com/wiki/Portal_2_Puzzle_Maker/Glass" - "all_icon" "palette/grouped/glass_grating.vtf" - "all_name" "[[VALVE_GEOMETRY]] GLASS / GRATING" - "Icon" - { - "0" "VALVE_GEOMETRY:clean/glass.png" - "1" "VALVE_GEOMETRY:clean/grating.png" - } - } diff --git a/packages/styles/p1_style/resources/instances/p1/items/barrier/right_convex_corner.vmf b/packages/styles/oldAp/items/mandatory/50s/coop_exit/editoritems.vmf similarity index 55% rename from packages/styles/p1_style/resources/instances/p1/items/barrier/right_convex_corner.vmf rename to packages/styles/oldAp/items/mandatory/50s/coop_exit/editoritems.vmf index bf9057628a..d8a98d5301 100644 --- a/packages/styles/p1_style/resources/instances/p1/items/barrier/right_convex_corner.vmf +++ b/packages/styles/oldAp/items/mandatory/50s/coop_exit/editoritems.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "5685" - "mapversion" "49" + "editorbuild" "9672" + "mapversion" "2" "formatversion" "100" "prefab" "0" } @@ -14,32 +14,41 @@ viewsettings "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "2" + "nGridSpacing" "16" "bShow3DGrid" "0" } world { "id" "1" - "mapversion" "49" + "mapversion" "2" "classname" "worldspawn" - "detailmaterial" "detail/detailsprites" + "skyname" "sky_black_nofog" + "maxpropscreenwidth" "-1" "detailvbsp" "detail.vbsp" + "detailmaterial" "detail/detailsprites" "maxblobcount" "250" - "maxpropscreenwidth" "-1" - "skyname" "sky_black_nofog" } entity { - "id" "407" - "classname" "func_detail" + "id" "9" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grating" "0" + "coll_oob" "1" + "coll_solid" "0" + "coll_temporary" "0" solid { - "id" "400" + "id" "2" side { "id" "1" - "plane" "(60 60 -60) (64 60 -60) (64 60 -64)" - "material" "PLASTIC/PLASTICWALL004A" + "plane" "(-124 -124 -68) (124 -124 -68) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -49,8 +58,8 @@ entity side { "id" "2" - "plane" "(60 64 -64) (64 64 -64) (64 64 -60)" - "material" "PLASTIC/PLASTICWALL004A" + "plane" "(-124 124 -572) (124 124 -572) (124 124 -68)" + "material" "TOOLS/TOOLSCLIP" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -60,10 +69,10 @@ entity side { "id" "3" - "plane" "(60 60 -60) (60 60 -64) (60 64 -64)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "plane" "(-124 -124 -68) (-124 -124 -572) (-124 124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -71,10 +80,10 @@ entity side { "id" "4" - "plane" "(64 64 -60) (64 64 -64) (64 60 -64)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[0 1 0 112] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "plane" "(124 124 -68) (124 124 -572) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -82,10 +91,10 @@ entity side { "id" "5" - "plane" "(64 60 -60) (60 60 -60) (60 64 -60)" - "material" "PLASTIC/PLASTICWALL004A" + "plane" "(124 -124 -68) (-124 -124 -68) (-124 124 -68)" + "material" "TOOLS/TOOLSCLIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -93,24 +102,24 @@ entity side { "id" "6" - "plane" "(64 64 -64) (60 64 -64) (60 60 -64)" - "material" "PLASTIC/PLASTICWALL004A" + "plane" "(124 124 -572) (-124 124 -572) (-124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 180 0" + "color" "220 30 220" "visgroupshown" "1" "visgroupautoshown" "1" } } editor { - "color" "0 180 0" + "color" "220 30 220" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" diff --git a/packages/valve/clean_style/resources/instances/clean/elevator_sp/exit_door_preview.vmf b/packages/styles/oldAp/items/mandatory/50s/entry_door/editoritems.vmf similarity index 50% rename from packages/valve/clean_style/resources/instances/clean/elevator_sp/exit_door_preview.vmf rename to packages/styles/oldAp/items/mandatory/50s/entry_door/editoritems.vmf index c4ea5aed37..d8a98d5301 100644 --- a/packages/valve/clean_style/resources/instances/clean/elevator_sp/exit_door_preview.vmf +++ b/packages/styles/oldAp/items/mandatory/50s/entry_door/editoritems.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "7552" - "mapversion" "66" + "editorbuild" "9672" + "mapversion" "2" "formatversion" "100" "prefab" "0" } @@ -14,100 +14,98 @@ viewsettings "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "32" + "nGridSpacing" "16" "bShow3DGrid" "0" } world { "id" "1" - "mapversion" "66" + "mapversion" "2" "classname" "worldspawn" - "detailmaterial" "detail/detailsprites" + "skyname" "sky_black_nofog" + "maxpropscreenwidth" "-1" "detailvbsp" "detail.vbsp" + "detailmaterial" "detail/detailsprites" "maxblobcount" "250" - "maxpropscreenwidth" "-1" - "skyname" "sky_black_nofog" } entity { - "id" "386" - "classname" "trigger_multiple" - "origin" "64 0 -256" - "spawnflags" "4097" - "StartDisabled" "0" - "targetname" "@preview_restart_trigger" - "wait" "3" - connections - { - "OnTrigger" "@clientcommandCommandrestart_level2-1" - "OnTrigger" "@preview_complete_messageDisplay0-1" - "OnTrigger" "@screenshot2Trigger01" - } + "id" "9" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grating" "0" + "coll_oob" "1" + "coll_solid" "0" + "coll_temporary" "0" solid { - "id" "387" + "id" "2" side { - "id" "90" - "plane" "(-124 -188 -160) (-124 188 -160) (252 188 -160)" - "material" "TOOLS/TOOLSTRIGGER" + "id" "1" + "plane" "(-124 -124 -68) (124 -124 -68) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0.14851] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "89" - "plane" "(-124 188 -352) (-124 -188 -352) (252 -188 -352)" - "material" "TOOLS/TOOLSTRIGGER" + "id" "2" + "plane" "(-124 124 -572) (124 124 -572) (124 124 -68)" + "material" "TOOLS/TOOLSCLIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0.14851] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "88" - "plane" "(-124 -188 -352) (-124 188 -352) (-124 188 -160)" - "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 -0.14851] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "3" + "plane" "(-124 -124 -68) (-124 -124 -572) (-124 124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "87" - "plane" "(252 188 -352) (252 -188 -352) (252 -188 -160)" - "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 -0.14851] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "4" + "plane" "(124 124 -68) (124 124 -572) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "86" - "plane" "(-124 188 -352) (252 188 -352) (252 188 -160)" - "material" "TOOLS/TOOLSTRIGGER" + "id" "5" + "plane" "(124 -124 -68) (-124 -124 -68) (-124 124 -68)" + "material" "TOOLS/TOOLSCLIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "85" - "plane" "(252 -188 -352) (-124 -188 -352) (-124 -188 -160)" - "material" "TOOLS/TOOLSTRIGGER" + "id" "6" + "plane" "(124 124 -572) (-124 124 -572) (-124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" diff --git a/packages/styles/oldAp/items/mandatory/50s/entry_door/vbsp_config.cfg b/packages/styles/oldAp/items/mandatory/50s/entry_door/vbsp_config.cfg index 646b399256..0bc694ca9d 100644 --- a/packages/styles/oldAp/items/mandatory/50s/entry_door/vbsp_config.cfg +++ b/packages/styles/oldAp/items/mandatory/50s/entry_door/vbsp_config.cfg @@ -201,27 +201,31 @@ // Basic check that this space is free - check all four blocks, and that it's inside the map. "BlockType" { - "Offset" "0 -1 1" + "Offset" "0 1 1" "Type" "AIR OCCUPIED GOO" } "PosIsSolid" { - "Pos" "16 -144 0" + "Pos" "-64 144 80" + "dir" "1 0 0" "Type" "tile" } "PosIsSolid" { - "Pos" "48 -144 0" + "Pos" "-64 176 80" + "dir" "1 0 0" "Type" "tile" } "PosIsSolid" { - "Pos" "16 -176 0" + "Pos" "-64 144 112" + "dir" "1 0 0" "Type" "tile" } "PosIsSolid" { - "Pos" "48 -176 0" + "Pos" "-64 176 112" + "dir" "1 0 0" "Type" "tile" } "Result" diff --git a/packages/styles/oldAp/items/mandatory/50s/exit_door/editoritems.vmf b/packages/styles/oldAp/items/mandatory/50s/exit_door/editoritems.vmf new file mode 100644 index 0000000000..d8a98d5301 --- /dev/null +++ b/packages/styles/oldAp/items/mandatory/50s/exit_door/editoritems.vmf @@ -0,0 +1,135 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "2" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "16" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "2" + "classname" "worldspawn" + "skyname" "sky_black_nofog" + "maxpropscreenwidth" "-1" + "detailvbsp" "detail.vbsp" + "detailmaterial" "detail/detailsprites" + "maxblobcount" "250" +} +entity +{ + "id" "9" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grating" "0" + "coll_oob" "1" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "2" + side + { + "id" "1" + "plane" "(-124 -124 -68) (124 -124 -68) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2" + "plane" "(-124 124 -572) (124 124 -572) (124 124 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3" + "plane" "(-124 -124 -68) (-124 -124 -572) (-124 124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4" + "plane" "(124 124 -68) (124 124 -572) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5" + "plane" "(124 -124 -68) (-124 -124 -68) (-124 124 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6" + "plane" "(124 124 -572) (-124 124 -572) (-124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/styles/oldAp/items/mandatory/50s/exit_door/vbsp_config.cfg b/packages/styles/oldAp/items/mandatory/50s/exit_door/vbsp_config.cfg index 72d38b3da3..0e11fdcef4 100644 --- a/packages/styles/oldAp/items/mandatory/50s/exit_door/vbsp_config.cfg +++ b/packages/styles/oldAp/items/mandatory/50s/exit_door/vbsp_config.cfg @@ -21,10 +21,8 @@ "StyleVar" "RestartOnExit" "Result" { - "addOverlay" - { - "File" "instances/BEE2/clean/elevator_sp/exit_preview.vmf" - } + // Trigger restart when @map_won is triggered. + "addoverlay" "instances/BEE2/logic/exit_preview.vmf" } } } diff --git a/packages/styles/oldAp/items/mandatory/60s/coop_exit/editoritems.vmf b/packages/styles/oldAp/items/mandatory/60s/coop_exit/editoritems.vmf new file mode 100644 index 0000000000..d8a98d5301 --- /dev/null +++ b/packages/styles/oldAp/items/mandatory/60s/coop_exit/editoritems.vmf @@ -0,0 +1,135 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "2" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "16" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "2" + "classname" "worldspawn" + "skyname" "sky_black_nofog" + "maxpropscreenwidth" "-1" + "detailvbsp" "detail.vbsp" + "detailmaterial" "detail/detailsprites" + "maxblobcount" "250" +} +entity +{ + "id" "9" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grating" "0" + "coll_oob" "1" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "2" + side + { + "id" "1" + "plane" "(-124 -124 -68) (124 -124 -68) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2" + "plane" "(-124 124 -572) (124 124 -572) (124 124 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3" + "plane" "(-124 -124 -68) (-124 -124 -572) (-124 124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4" + "plane" "(124 124 -68) (124 124 -572) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5" + "plane" "(124 -124 -68) (-124 -124 -68) (-124 124 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6" + "plane" "(124 124 -572) (-124 124 -572) (-124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/styles/oldAp/items/mandatory/60s/entry_door/editoritems.vmf b/packages/styles/oldAp/items/mandatory/60s/entry_door/editoritems.vmf new file mode 100644 index 0000000000..d8a98d5301 --- /dev/null +++ b/packages/styles/oldAp/items/mandatory/60s/entry_door/editoritems.vmf @@ -0,0 +1,135 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "2" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "16" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "2" + "classname" "worldspawn" + "skyname" "sky_black_nofog" + "maxpropscreenwidth" "-1" + "detailvbsp" "detail.vbsp" + "detailmaterial" "detail/detailsprites" + "maxblobcount" "250" +} +entity +{ + "id" "9" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grating" "0" + "coll_oob" "1" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "2" + side + { + "id" "1" + "plane" "(-124 -124 -68) (124 -124 -68) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2" + "plane" "(-124 124 -572) (124 124 -572) (124 124 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3" + "plane" "(-124 -124 -68) (-124 -124 -572) (-124 124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4" + "plane" "(124 124 -68) (124 124 -572) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5" + "plane" "(124 -124 -68) (-124 -124 -68) (-124 124 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6" + "plane" "(124 124 -572) (-124 124 -572) (-124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/styles/oldAp/items/mandatory/60s/entry_door/vbsp_config.cfg b/packages/styles/oldAp/items/mandatory/60s/entry_door/vbsp_config.cfg index 46fbfd5500..7deee9806b 100644 --- a/packages/styles/oldAp/items/mandatory/60s/entry_door/vbsp_config.cfg +++ b/packages/styles/oldAp/items/mandatory/60s/entry_door/vbsp_config.cfg @@ -130,27 +130,31 @@ // Basic check that this space is free - check all four blocks, and that it's inside the map. "BlockType" { - "Offset" "0 -1 1" + "Offset" "0 1 1" "Type" "AIR OCCUPIED GOO" } "PosIsSolid" { - "Pos" "16 -144 0" + "Pos" "-64 144 80" + "dir" "1 0 0" "Type" "tile" } "PosIsSolid" { - "Pos" "48 -144 0" + "Pos" "-64 176 80" + "dir" "1 0 0" "Type" "tile" } "PosIsSolid" { - "Pos" "16 -176 0" + "Pos" "-64 144 112" + "dir" "1 0 0" "Type" "tile" } "PosIsSolid" { - "Pos" "48 -176 0" + "Pos" "-64 176 112" + "dir" "1 0 0" "Type" "tile" } "Result" diff --git a/packages/styles/oldAp/items/mandatory/60s/exit_door/editoritems.vmf b/packages/styles/oldAp/items/mandatory/60s/exit_door/editoritems.vmf new file mode 100644 index 0000000000..d8a98d5301 --- /dev/null +++ b/packages/styles/oldAp/items/mandatory/60s/exit_door/editoritems.vmf @@ -0,0 +1,135 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "2" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "16" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "2" + "classname" "worldspawn" + "skyname" "sky_black_nofog" + "maxpropscreenwidth" "-1" + "detailvbsp" "detail.vbsp" + "detailmaterial" "detail/detailsprites" + "maxblobcount" "250" +} +entity +{ + "id" "9" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grating" "0" + "coll_oob" "1" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "2" + side + { + "id" "1" + "plane" "(-124 -124 -68) (124 -124 -68) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2" + "plane" "(-124 124 -572) (124 124 -572) (124 124 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3" + "plane" "(-124 -124 -68) (-124 -124 -572) (-124 124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4" + "plane" "(124 124 -68) (124 124 -572) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5" + "plane" "(124 -124 -68) (-124 -124 -68) (-124 124 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6" + "plane" "(124 124 -572) (-124 124 -572) (-124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/styles/oldAp/items/mandatory/60s/exit_door/vbsp_config.cfg b/packages/styles/oldAp/items/mandatory/60s/exit_door/vbsp_config.cfg index 72d38b3da3..0e11fdcef4 100644 --- a/packages/styles/oldAp/items/mandatory/60s/exit_door/vbsp_config.cfg +++ b/packages/styles/oldAp/items/mandatory/60s/exit_door/vbsp_config.cfg @@ -21,10 +21,8 @@ "StyleVar" "RestartOnExit" "Result" { - "addOverlay" - { - "File" "instances/BEE2/clean/elevator_sp/exit_preview.vmf" - } + // Trigger restart when @map_won is triggered. + "addoverlay" "instances/BEE2/logic/exit_preview.vmf" } } } diff --git a/packages/styles/oldAp/items/mandatory/70s/coop_exit/editoritems.vmf b/packages/styles/oldAp/items/mandatory/70s/coop_exit/editoritems.vmf new file mode 100644 index 0000000000..d8a98d5301 --- /dev/null +++ b/packages/styles/oldAp/items/mandatory/70s/coop_exit/editoritems.vmf @@ -0,0 +1,135 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "2" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "16" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "2" + "classname" "worldspawn" + "skyname" "sky_black_nofog" + "maxpropscreenwidth" "-1" + "detailvbsp" "detail.vbsp" + "detailmaterial" "detail/detailsprites" + "maxblobcount" "250" +} +entity +{ + "id" "9" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grating" "0" + "coll_oob" "1" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "2" + side + { + "id" "1" + "plane" "(-124 -124 -68) (124 -124 -68) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2" + "plane" "(-124 124 -572) (124 124 -572) (124 124 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3" + "plane" "(-124 -124 -68) (-124 -124 -572) (-124 124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4" + "plane" "(124 124 -68) (124 124 -572) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5" + "plane" "(124 -124 -68) (-124 -124 -68) (-124 124 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6" + "plane" "(124 124 -572) (-124 124 -572) (-124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/styles/oldAp/items/mandatory/70s/entry_door/editoritems.vmf b/packages/styles/oldAp/items/mandatory/70s/entry_door/editoritems.vmf new file mode 100644 index 0000000000..d8a98d5301 --- /dev/null +++ b/packages/styles/oldAp/items/mandatory/70s/entry_door/editoritems.vmf @@ -0,0 +1,135 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "2" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "16" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "2" + "classname" "worldspawn" + "skyname" "sky_black_nofog" + "maxpropscreenwidth" "-1" + "detailvbsp" "detail.vbsp" + "detailmaterial" "detail/detailsprites" + "maxblobcount" "250" +} +entity +{ + "id" "9" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grating" "0" + "coll_oob" "1" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "2" + side + { + "id" "1" + "plane" "(-124 -124 -68) (124 -124 -68) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2" + "plane" "(-124 124 -572) (124 124 -572) (124 124 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3" + "plane" "(-124 -124 -68) (-124 -124 -572) (-124 124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4" + "plane" "(124 124 -68) (124 124 -572) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5" + "plane" "(124 -124 -68) (-124 -124 -68) (-124 124 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6" + "plane" "(124 124 -572) (-124 124 -572) (-124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/styles/oldAp/items/mandatory/70s/entry_door/vbsp_config.cfg b/packages/styles/oldAp/items/mandatory/70s/entry_door/vbsp_config.cfg index 585a364b2c..5828fdb330 100644 --- a/packages/styles/oldAp/items/mandatory/70s/entry_door/vbsp_config.cfg +++ b/packages/styles/oldAp/items/mandatory/70s/entry_door/vbsp_config.cfg @@ -163,27 +163,31 @@ // Basic check that this space is free - check all four blocks, and that it's inside the map. "BlockType" { - "Offset" "0 -1 1" + "Offset" "0 1 1" "Type" "AIR OCCUPIED GOO" } "PosIsSolid" { - "Pos" "16 -144 0" + "Pos" "-64 144 80" + "dir" "1 0 0" "Type" "tile" } "PosIsSolid" { - "Pos" "48 -144 0" + "Pos" "-64 176 80" + "dir" "1 0 0" "Type" "tile" } "PosIsSolid" { - "Pos" "16 -176 0" + "Pos" "-64 144 112" + "dir" "1 0 0" "Type" "tile" } "PosIsSolid" { - "Pos" "48 -176 0" + "Pos" "-64 176 112" + "dir" "1 0 0" "Type" "tile" } "Result" diff --git a/packages/styles/oldAp/items/mandatory/70s/exit_door/editoritems.vmf b/packages/styles/oldAp/items/mandatory/70s/exit_door/editoritems.vmf new file mode 100644 index 0000000000..d8a98d5301 --- /dev/null +++ b/packages/styles/oldAp/items/mandatory/70s/exit_door/editoritems.vmf @@ -0,0 +1,135 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "2" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "16" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "2" + "classname" "worldspawn" + "skyname" "sky_black_nofog" + "maxpropscreenwidth" "-1" + "detailvbsp" "detail.vbsp" + "detailmaterial" "detail/detailsprites" + "maxblobcount" "250" +} +entity +{ + "id" "9" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grating" "0" + "coll_oob" "1" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "2" + side + { + "id" "1" + "plane" "(-124 -124 -68) (124 -124 -68) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2" + "plane" "(-124 124 -572) (124 124 -572) (124 124 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3" + "plane" "(-124 -124 -68) (-124 -124 -572) (-124 124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4" + "plane" "(124 124 -68) (124 124 -572) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5" + "plane" "(124 -124 -68) (-124 -124 -68) (-124 124 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6" + "plane" "(124 124 -572) (-124 124 -572) (-124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/styles/oldAp/items/mandatory/70s/exit_door/vbsp_config.cfg b/packages/styles/oldAp/items/mandatory/70s/exit_door/vbsp_config.cfg index da9bbde0a2..b8fc23dcf4 100644 --- a/packages/styles/oldAp/items/mandatory/70s/exit_door/vbsp_config.cfg +++ b/packages/styles/oldAp/items/mandatory/70s/exit_door/vbsp_config.cfg @@ -60,7 +60,47 @@ "StyleVar" "RestartOnExit" "Result" { - "addOverlay" "instances/BEE2/clean/elevator_sp/exit_door_preview.vmf" + // Trigger restart when @map_won is triggered. + "addoverlay" "instances/BEE2/logic/exit_preview.vmf" + } + } + // Then, add speaker if asked. + "Condition" + { + "StyleVar" "DoorCameras" + // Basic check that this space is free - check all four blocks, and that it's inside the map. + "BlockType" + { + "Offset" "0 1 1" + "Type" "AIR OCCUPIED GOO" + } + "PosIsSolid" + { + "Pos" "-64 144 80" + "dir" "1 0 0" + "Type" "tile" + } + "PosIsSolid" + { + "Pos" "-64 176 80" + "dir" "1 0 0" + "Type" "tile" + } + "PosIsSolid" + { + "Pos" "-64 144 112" + "dir" "1 0 0" + "Type" "tile" + } + "PosIsSolid" + { + "Pos" "-64 176 112" + "dir" "1 0 0" + "Type" "tile" + } + "Result" + { + "AddOverlay" "instances/BEE2/50s/sphere_sp/door_speaker.vmf" } } } @@ -98,104 +138,6 @@ "RemoveInstVar" "$fizz_folder" } } - - "Condition" - { - "Priority" "50" - "instance" "[door_frame_sp]" - "instvar" "$door_type = exit" - "Condition" - { - // This variable is copied from the exit door.. - "instvar" "$connectioncount > 0" - "Result" - { - "TemplateBrush" "BEE2_DOOR_FRAME_70s" - "Switch" - { - "Flag" "instvar" - "$corr_index = 1" - { - "AddOverlay" "" - } - "$corr_index = 2" - { - "AddOverlay" "" - } - "$corr_index = 3" - { - "AddOverlay" "" - } - "$corr_index = 4" - { - "AddOverlay" "" - } - } - } - "Else" - { - "Switch" - { - "Flag" "instvar" - "$corr_index = 1" - { - "AddOverlay" "" - } - "$corr_index = 2" - { - "AddOverlay" "" - } - "$corr_index = 3" - { - "AddOverlay" "" - } - "$corr_index = 4" - { - "AddOverlay" "" - } - } - } - } - // Then, add speaker if asked. - "Condition" - { - "StyleVar" "DoorCameras" - // Basic check that this space is free - check all four blocks, and that it's inside the map. - "BlockType" - { - "Offset" "0 -1 1" - "Type" "AIR OCCUPIED GOO" - } - "PosIsSolid" - { - "Pos" "16 -144 0" - "Type" "tile" - } - "PosIsSolid" - { - "Pos" "48 -144 0" - "Type" "tile" - } - "PosIsSolid" - { - "Pos" "16 -176 0" - "Type" "tile" - } - "PosIsSolid" - { - "Pos" "48 -176 0" - "Type" "tile" - } - "Result" - { - "ChangeInstance" "instances/BEE2/50s/sphere_sp/door_speaker.vmf" - } - "Else" - { - "ChangeInstance" "" - } - } - } // Check the kind of exit sign, then pick an appropriate instance. // $orient indicates if the signs are vertically/horizontally stacked. diff --git a/packages/styles/oldAp/items/mandatory/80s/coop_exit/editoritems.vmf b/packages/styles/oldAp/items/mandatory/80s/coop_exit/editoritems.vmf new file mode 100644 index 0000000000..d8a98d5301 --- /dev/null +++ b/packages/styles/oldAp/items/mandatory/80s/coop_exit/editoritems.vmf @@ -0,0 +1,135 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "2" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "16" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "2" + "classname" "worldspawn" + "skyname" "sky_black_nofog" + "maxpropscreenwidth" "-1" + "detailvbsp" "detail.vbsp" + "detailmaterial" "detail/detailsprites" + "maxblobcount" "250" +} +entity +{ + "id" "9" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grating" "0" + "coll_oob" "1" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "2" + side + { + "id" "1" + "plane" "(-124 -124 -68) (124 -124 -68) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2" + "plane" "(-124 124 -572) (124 124 -572) (124 124 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3" + "plane" "(-124 -124 -68) (-124 -124 -572) (-124 124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4" + "plane" "(124 124 -68) (124 124 -572) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5" + "plane" "(124 -124 -68) (-124 -124 -68) (-124 124 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6" + "plane" "(124 124 -572) (-124 124 -572) (-124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/styles/oldAp/items/mandatory/80s/entry_door/editoritems.vmf b/packages/styles/oldAp/items/mandatory/80s/entry_door/editoritems.vmf new file mode 100644 index 0000000000..d8a98d5301 --- /dev/null +++ b/packages/styles/oldAp/items/mandatory/80s/entry_door/editoritems.vmf @@ -0,0 +1,135 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "2" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "16" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "2" + "classname" "worldspawn" + "skyname" "sky_black_nofog" + "maxpropscreenwidth" "-1" + "detailvbsp" "detail.vbsp" + "detailmaterial" "detail/detailsprites" + "maxblobcount" "250" +} +entity +{ + "id" "9" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grating" "0" + "coll_oob" "1" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "2" + side + { + "id" "1" + "plane" "(-124 -124 -68) (124 -124 -68) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2" + "plane" "(-124 124 -572) (124 124 -572) (124 124 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3" + "plane" "(-124 -124 -68) (-124 -124 -572) (-124 124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4" + "plane" "(124 124 -68) (124 124 -572) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5" + "plane" "(124 -124 -68) (-124 -124 -68) (-124 124 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6" + "plane" "(124 124 -572) (-124 124 -572) (-124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/styles/oldAp/items/mandatory/80s/entry_door/vbsp_config.cfg b/packages/styles/oldAp/items/mandatory/80s/entry_door/vbsp_config.cfg index 306b1ede02..7219b558ac 100644 --- a/packages/styles/oldAp/items/mandatory/80s/entry_door/vbsp_config.cfg +++ b/packages/styles/oldAp/items/mandatory/80s/entry_door/vbsp_config.cfg @@ -10,40 +10,41 @@ } "Condition" { + "instvar" "$attach horizontal" "StyleVar" "DoorCameras" // Basic check that this space is free - check all four blocks, and that it's inside the map. "BlockType" { - "Offset" "0 -1 1" + "Offset" "0 1 1" "Type" "AIR OCCUPIED GOO" } "PosIsSolid" { - "Pos" "16 -144 0" + "Pos" "-64 144 80" + "dir" "1 0 0" "Type" "tile" } "PosIsSolid" { - "Pos" "48 -144 0" + "Pos" "-64 176 80" + "dir" "1 0 0" "Type" "tile" } "PosIsSolid" { - "Pos" "16 -176 0" + "Pos" "-64 144 112" + "dir" "1 0 0" "Type" "tile" } "PosIsSolid" { - "Pos" "48 -176 0" + "Pos" "-64 176 112" + "dir" "1 0 0" "Type" "tile" } "Result" { - "ChangeInstance" "instances/BEE2/50s/sphere_sp/door_speaker.vmf" - } - "Else" - { - "ChangeInstance" "" + "AddOverlay" "instances/BEE2/50s/sphere_sp/door_speaker.vmf" } } } diff --git a/packages/styles/oldAp/items/mandatory/80s/exit_door/editoritems.vmf b/packages/styles/oldAp/items/mandatory/80s/exit_door/editoritems.vmf new file mode 100644 index 0000000000..d8a98d5301 --- /dev/null +++ b/packages/styles/oldAp/items/mandatory/80s/exit_door/editoritems.vmf @@ -0,0 +1,135 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "2" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "16" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "2" + "classname" "worldspawn" + "skyname" "sky_black_nofog" + "maxpropscreenwidth" "-1" + "detailvbsp" "detail.vbsp" + "detailmaterial" "detail/detailsprites" + "maxblobcount" "250" +} +entity +{ + "id" "9" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grating" "0" + "coll_oob" "1" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "2" + side + { + "id" "1" + "plane" "(-124 -124 -68) (124 -124 -68) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2" + "plane" "(-124 124 -572) (124 124 -572) (124 124 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3" + "plane" "(-124 -124 -68) (-124 -124 -572) (-124 124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4" + "plane" "(124 124 -68) (124 124 -572) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5" + "plane" "(124 -124 -68) (-124 -124 -68) (-124 124 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6" + "plane" "(124 124 -572) (-124 124 -572) (-124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/styles/oldAp/items/mandatory/80s/exit_door/vbsp_config.cfg b/packages/styles/oldAp/items/mandatory/80s/exit_door/vbsp_config.cfg index 1f39b14645..0d94ed88db 100644 --- a/packages/styles/oldAp/items/mandatory/80s/exit_door/vbsp_config.cfg +++ b/packages/styles/oldAp/items/mandatory/80s/exit_door/vbsp_config.cfg @@ -21,10 +21,8 @@ "StyleVar" "RestartOnExit" "Result" { - "addOverlay" - { - "File" "instances/BEE2/clean/elevator_sp/exit_preview.vmf" - } + // Trigger restart when @map_won is triggered. + "addoverlay" "instances/BEE2/logic/exit_preview.vmf" } } } diff --git a/packages/styles/oldAp/items/track_plat.cfg b/packages/styles/oldAp/items/track_plat.cfg index 8e2039ad8b..f1dadc222b 100644 --- a/packages/styles/oldAp/items/track_plat.cfg +++ b/packages/styles/oldAp/items/track_plat.cfg @@ -1,7 +1,3 @@ -"Replacements" - { - "%decade%" "50s" - } "Conditions" { // Before just about anything, add the tiles to the surface if it's a panel type. @@ -85,32 +81,31 @@ "instance" "" "Condition" { - // Non-oscillating outputs. - "instance" "" + "instance" "" "Result" { - "ChangeIOType" - { - "Type" "AND" - "invertVar" "$start_active" - "SpawnFire" "always" - "Enable_Cmd" "plat,TurnOn,,0.00,-1" - "Disable_Cmd" "plat,TurnOff,,0.00,-1" - } + // Never starts active. + "SetInstVar" "$start_active 0" } } "Condition" { - // Non-oscillating inputs. - "instance" "" + "instance" "" + // If autodrop is set, player presence is required. + "InstVar" "$disable_autodrop == 1" "Result" { - "ChangeIOType" + // This adds an item with a virtual input to the platform, + // giving us exactly the behaviour we want. + "AttachInputOverlay" { - "Type" "AND" - "invertVar" "0" - "Enable_Cmd" "plat,TurnOn,,0.00,-1" - "Disable_Cmd" "plat,TurnOff,,0.00,-1" + "File" "instances/BEE2/clean/items/track/trigger.vmf" + "name_suffix" "player" + "input_conf" + { + "Out_Activate" "instance:trigger;OnStartTouch" + "Out_Deactivate" "instance:trigger;OnEndTouchAll" + } } } } diff --git a/packages/styles/oldAp/resources/instances/50s/items/laser/emitter_center.vmf b/packages/styles/oldAp/resources/instances/50s/items/laser/emitter_center.vmf index 7ade272f23..faa133c5a3 100644 --- a/packages/styles/oldAp/resources/instances/50s/items/laser/emitter_center.vmf +++ b/packages/styles/oldAp/resources/instances/50s/items/laser/emitter_center.vmf @@ -2,7 +2,7 @@ versioninfo { "editorversion" "400" "editorbuild" "9672" - "mapversion" "101" + "mapversion" "102" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "101" + "mapversion" "102" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -620,7 +620,7 @@ entity "rendermode" "0" "skin" "0" "solid" "6" - "StartState" "$start_disabled" + "StartState" "!$start_enabled" "targetname" "laser" "origin" "0 0 -80" editor diff --git a/packages/styles/oldAp/resources/instances/50s/items/laser/emitter_center_floor.vmf b/packages/styles/oldAp/resources/instances/50s/items/laser/emitter_center_floor.vmf index e68e96d2ac..56a2b944fd 100644 --- a/packages/styles/oldAp/resources/instances/50s/items/laser/emitter_center_floor.vmf +++ b/packages/styles/oldAp/resources/instances/50s/items/laser/emitter_center_floor.vmf @@ -2,7 +2,7 @@ versioninfo { "editorversion" "400" "editorbuild" "9672" - "mapversion" "103" + "mapversion" "104" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "103" + "mapversion" "104" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -843,7 +843,7 @@ entity "rendermode" "0" "skin" "0" "solid" "6" - "StartState" "$start_disabled" + "StartState" "!$start_enabled" "targetname" "laser" "origin" "0 0 -104" editor diff --git a/packages/styles/oldAp/resources/instances/50s/items/laser/emitter_offset.vmf b/packages/styles/oldAp/resources/instances/50s/items/laser/emitter_offset.vmf index 30c056faa5..5dbae93fa1 100644 --- a/packages/styles/oldAp/resources/instances/50s/items/laser/emitter_offset.vmf +++ b/packages/styles/oldAp/resources/instances/50s/items/laser/emitter_offset.vmf @@ -2,7 +2,7 @@ versioninfo { "editorversion" "400" "editorbuild" "9672" - "mapversion" "106" + "mapversion" "107" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "106" + "mapversion" "107" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -594,102 +594,96 @@ entity "logicalpos" "[0 500]" } } -hidden +entity { - entity + "id" "3446" + "classname" "func_noportal_volume" + "origin" "1 0 -64" + "solid" "6" + "spawnflags" "0" + solid { - "id" "3446" - "classname" "func_noportal_volume" - "origin" "1 0 -64" - "solid" "6" - "spawnflags" "0" - hidden - { - solid - { - "id" "3447" - side - { - "id" "1057" - "plane" "(32 -32 -60) (32 -32 -68) (-30 -32 -68)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1056" - "plane" "(-30 32 -60) (-30 32 -68) (32 32 -68)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1055" - "plane" "(-30 -32 -60) (-30 -32 -68) (-30 32 -68)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1054" - "plane" "(32 32 -60) (32 32 -68) (32 -32 -68)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1053" - "plane" "(32 -32 -60) (-30 -32 -60) (-30 32 -60)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1052" - "plane" "(32 32 -68) (-30 32 -68) (-30 -32 -68)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } + "id" "3447" + side + { + "id" "1057" + "plane" "(32 -32 -60) (32 -32 -68) (-30 -32 -68)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1056" + "plane" "(-30 32 -60) (-30 32 -68) (32 32 -68)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1055" + "plane" "(-30 -32 -60) (-30 -32 -68) (-30 32 -68)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1054" + "plane" "(32 32 -60) (32 32 -68) (32 -32 -68)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1053" + "plane" "(32 -32 -60) (-30 -32 -60) (-30 32 -60)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1052" + "plane" "(32 32 -68) (-30 32 -68) (-30 -32 -68)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } editor { "color" "220 30 220" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 500]" } } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } } entity { @@ -723,7 +717,7 @@ entity "rendermode" "0" "skin" "0" "solid" "0" - "StartState" "$start_disabled" + "StartState" "!$start_enabled" "targetname" "laser" "origin" "0 0 -80" editor @@ -742,7 +736,3 @@ cordons { "active" "0" } -quickhide -{ - "count" "3" -} diff --git a/packages/styles/oldAp/resources/instances/50s/items/laser/emitter_offset_floor.vmf b/packages/styles/oldAp/resources/instances/50s/items/laser/emitter_offset_floor.vmf index cdb7d581d1..4125066a3c 100644 --- a/packages/styles/oldAp/resources/instances/50s/items/laser/emitter_offset_floor.vmf +++ b/packages/styles/oldAp/resources/instances/50s/items/laser/emitter_offset_floor.vmf @@ -2,7 +2,7 @@ versioninfo { "editorversion" "400" "editorbuild" "9672" - "mapversion" "109" + "mapversion" "110" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "109" + "mapversion" "110" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -783,7 +783,7 @@ entity "rendermode" "0" "skin" "0" "solid" "0" - "StartState" "$start_disabled" + "StartState" "!$start_enabled" "targetname" "laser" "origin" "0 0 -104" editor diff --git a/packages/styles/oldAp/resources/instances/50s/items/stairs.vmf b/packages/styles/oldAp/resources/instances/50s/items/stairs.vmf index 2bf61c5f8c..2b7b8bcf21 100644 --- a/packages/styles/oldAp/resources/instances/50s/items/stairs.vmf +++ b/packages/styles/oldAp/resources/instances/50s/items/stairs.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8419" - "mapversion" "91" + "editorbuild" "9672" + "mapversion" "99" "formatversion" "100" "prefab" "0" } @@ -20,13 +20,13 @@ viewsettings "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "16" + "nGridSpacing" "8" "bShow3DGrid" "0" } world { "id" "1" - "mapversion" "91" + "mapversion" "99" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -115,7 +115,7 @@ world side { "id" "724" - "plane" "(64 -60 -132) (-60 -60 -132) (-60 -60 -128)" + "plane" "(64 -60 -180) (-60 -60 -180) (-60 -60 -128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 -32] 0.25" @@ -126,7 +126,7 @@ world side { "id" "723" - "plane" "(-60 60 -128) (-60 60 -132) (64 60 -132)" + "plane" "(-60 60 -128) (-60 60 -180) (64 60 -180)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 -32] 0.25" @@ -137,7 +137,7 @@ world side { "id" "722" - "plane" "(-60 -60 -128) (-60 -60 -132) (-60 60 -132)" + "plane" "(-60 -60 -128) (-60 -60 -180) (-60 60 -180)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" "vaxis" "[0 1 0 32] 0.25" @@ -159,7 +159,7 @@ world side { "id" "720" - "plane" "(64 60 -132) (-60 60 -132) (-60 -60 -132)" + "plane" "(64 60 -180) (-60 60 -180) (-60 -60 -180)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 1 0 32] 0.25" @@ -170,7 +170,7 @@ world side { "id" "719" - "plane" "(64 60 -128) (64 60 -132) (64 -60 -132)" + "plane" "(64 60 -128) (64 60 -180) (64 -60 -180)" "material" "CONCRETE/UNDERGROUND_CONCRETE_CEILING001" "uaxis" "[0 0 -1 -12] 0.25" "vaxis" "[0 1 0 240] 0.25" @@ -186,82 +186,6 @@ world } } solid - { - "id" "3315" - side - { - "id" "725" - "plane" "(60 -60 -132) (64 -60 -132) (64 -60 -180)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "726" - "plane" "(60 60 -180) (64 60 -180) (64 60 -132)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "727" - "plane" "(60 -60 -132) (60 -60 -180) (60 60 -180)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "728" - "plane" "(64 60 -132) (64 60 -180) (64 -60 -180)" - "material" "CONCRETE/UNDERGROUND_CONCRETE_CEILING001" - "uaxis" "[0 0 -1 -208] 0.25" - "vaxis" "[0 1 0 240] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "729" - "plane" "(64 -60 -132) (60 -60 -132) (60 60 -132)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "730" - "plane" "(64 60 -180) (60 60 -180) (60 -60 -180)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 224 197" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid { "id" "3316" side @@ -467,82 +391,288 @@ world "visgroupautoshown" "1" } } +} +entity +{ + "id" "3414" + "classname" "func_noportal_volume" + "origin" "-32 0 -64" + "parent_attachment_point" "stair_2" + "parentname" "stair" + "spawnflags" "1" + "targetname" "noportal" solid { - "id" "1110" + "id" "3408" side { - "id" "294" - "plane" "(28 44 -132) (28 52 -132) (36 52 -132)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "id" "772" + "plane" "(-56 56 -60) (-8 56 -60) (-8 -56 -60)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.05" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "293" - "plane" "(28 52 -140) (28 44 -140) (36 44 -140)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "id" "771" + "plane" "(-56 -56 -68) (-8 -56 -68) (-8 56 -68)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.05" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "292" - "plane" "(28 44 -140) (28 52 -140) (28 52 -132)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 -16] 0.25" + "id" "770" + "plane" "(-56 56 -60) (-56 -56 -60) (-56 -56 -68)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -27.0793] 0.0175439" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "291" - "plane" "(36 52 -140) (36 44 -140) (36 44 -132)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 -16] 0.25" + "id" "769" + "plane" "(-8 56 -68) (-8 -56 -68) (-8 -56 -60)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -27.0793] 0.0175439" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "290" - "plane" "(28 52 -140) (36 52 -140) (36 52 -132)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" - "vaxis" "[0 0 -1 -16] 0.25" + "id" "768" + "plane" "(-8 56 -60) (-56 56 -60) (-56 56 -68)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.05" + "vaxis" "[0 0 -1 -27.0793] 0.0175439" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "289" - "plane" "(36 44 -140) (28 44 -140) (28 44 -132)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" - "vaxis" "[0 0 -1 -16] 0.25" + "id" "767" + "plane" "(-8 -56 -68) (-56 -56 -68) (-56 -56 -60)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.05" + "vaxis" "[0 0 -1 -27.0793] 0.0175439" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "comments" "Prevent portals being placed while extended. Since the steps are planar portals can stretch across. We need multiple because it uses the AABB, this covers all portal placements." + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "3481" + "classname" "func_noportal_volume" + "origin" "64 0 -64" + "parent_attachment_point" "stair_5" + "parentname" "stair" + "spawnflags" "1" + "targetname" "noportal" + solid + { + "id" "3482" + side + { + "id" "796" + "plane" "(40 56 -60) (88 56 -60) (88 -56 -60)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.05" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "795" + "plane" "(40 -56 -68) (88 -56 -68) (88 56 -68)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.05" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "794" + "plane" "(40 56 -60) (40 -56 -60) (40 -56 -68)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -27.0793] 0.0175439" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "793" + "plane" "(88 56 -68) (88 -56 -68) (88 -56 -60)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -27.0793] 0.0175439" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "792" + "plane" "(88 56 -60) (40 56 -60) (40 56 -68)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.05" + "vaxis" "[0 0 -1 -27.0793] 0.0175439" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "791" + "plane" "(88 -56 -68) (40 -56 -68) (40 -56 -60)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.05" + "vaxis" "[0 0 -1 -27.0793] 0.0175439" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 122 119" + "color" "220 30 220" "visgroupshown" "1" "visgroupautoshown" "1" } } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "comments" "Prevent portals being placed while extended. Since the steps are planar portals can stretch across. We need multiple because it uses the AABB, this covers all portal placements." + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "3511" + "classname" "func_noportal_volume" + "origin" "160 0 -64" + "parent_attachment_point" "stair_7" + "parentname" "stair" + "spawnflags" "1" + "targetname" "noportal" + solid + { + "id" "3512" + side + { + "id" "808" + "plane" "(136 56 -60) (184 56 -60) (184 -56 -60)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.05" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "807" + "plane" "(136 -56 -68) (184 -56 -68) (184 56 -68)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.05" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "806" + "plane" "(136 56 -60) (136 -56 -60) (136 -56 -68)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -27.0793] 0.0175439" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "805" + "plane" "(184 56 -68) (184 -56 -68) (184 -56 -60)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -27.0793] 0.0175439" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "804" + "plane" "(184 56 -60) (136 56 -60) (136 56 -68)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.05" + "vaxis" "[0 0 -1 -27.0793] 0.0175439" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "803" + "plane" "(184 -56 -68) (136 -56 -68) (136 -56 -60)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.05" + "vaxis" "[0 0 -1 -27.0793] 0.0175439" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "comments" "Prevent portals being placed while extended. Since the steps are planar portals can stretch across. We need multiple because it uses the AABB, this covers all portal placements." + "logicalpos" "[0 500]" + } } entity { @@ -612,6 +742,8 @@ entity "OnUser1" "stairSetPlaybackRate-10.05-1" "OnUser2" "stairSetPlaybackRate10.05-1" "OnUser2" "motor_rotOpen0-1" + "OnUser2" "noportalActivate0.05-1" + "OnUser1" "noportalDeactivate0.05-1" } "origin" "64 0 -64" editor @@ -825,7 +957,7 @@ hidden editor { "color" "220 30 220" - "visgroupshown" "0" + "visgroupshown" "1" "visgroupautoshown" "1" } } diff --git a/packages/styles/oldAp/resources/instances/50s/items/track/platform.vmf b/packages/styles/oldAp/resources/instances/50s/items/track/platform.vmf index 9a0b7b90b8..ee94221c9f 100644 --- a/packages/styles/oldAp/resources/instances/50s/items/track/platform.vmf +++ b/packages/styles/oldAp/resources/instances/50s/items/track/platform.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8419" - "mapversion" "145" + "editorbuild" "9672" + "mapversion" "146" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "145" + "mapversion" "146" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -34,9 +34,12 @@ entity "classname" "comp_kv_setter" "angles" "0 270 0" "conv_ang" "0" + "ctrl_value" "1" "invert" "0" "kv_name" "model" "kv_value_global" "$model" + "kv_value_mode" "legacy" + "kv_value_pos" "8 0 20" "mode" "kv" "rotate" "0" "target" "mdl" @@ -55,7 +58,8 @@ entity "classname" "comp_relay" "ctrl_type" "0" "ctrl_value" "1" - "targetname" "plat" + "delay" "0.0" + "targetname" "platform" connections { "OnTurnedOn" "cube_enable_motion_triggerDisable0.01-1" @@ -296,6 +300,7 @@ entity { "id" "2" "classname" "func_movelinear" + "angles" "0 0 0" "blockdamage" "0" "disablereceiveshadows" "0" "movedir" "$travel_direction" diff --git a/packages/styles/oldAp/resources/instances/50s/items/track/platform_oscillate.vmf b/packages/styles/oldAp/resources/instances/50s/items/track/platform_oscillate.vmf index 506c977e58..8e58328fe8 100644 --- a/packages/styles/oldAp/resources/instances/50s/items/track/platform_oscillate.vmf +++ b/packages/styles/oldAp/resources/instances/50s/items/track/platform_oscillate.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8419" - "mapversion" "221" + "editorbuild" "9672" + "mapversion" "222" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "221" + "mapversion" "222" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -34,9 +34,12 @@ entity "classname" "comp_kv_setter" "angles" "0 0 0" "conv_ang" "0" + "ctrl_value" "1" "invert" "0" "kv_name" "model" "kv_value_global" "$model" + "kv_value_mode" "legacy" + "kv_value_pos" "32 -16 -16" "mode" "kv" "rotate" "0" "target" "mdl" @@ -55,7 +58,8 @@ entity "classname" "comp_relay" "ctrl_type" "0" "ctrl_value" "1" - "targetname" "plat" + "delay" "0.0" + "targetname" "platform" connections { "OnTurnedOff" "cube_enable_motion_triggerDisable0.01-1" @@ -166,6 +170,9 @@ entity "cspinup" "0" "fadeinsecs" "0" "fadeoutsecs" "0" + "haddons_enabled" "-1" + "haddons_infrange" "-1" + "haddons_mode" "-1" "health" "10" "lfomodpitch" "0" "lfomodvol" "0" @@ -376,6 +383,7 @@ entity { "id" "2" "classname" "func_movelinear" + "angles" "0 0 0" "blockdamage" "0" "disablereceiveshadows" "0" "movedir" "$travel_direction" diff --git a/packages/styles/oldAp/resources/instances/50s/sphere_coop/spawn_room.vmf b/packages/styles/oldAp/resources/instances/50s/sphere_coop/spawn_room.vmf index 9e85b19afd..d2f07bc912 100644 --- a/packages/styles/oldAp/resources/instances/50s/sphere_coop/spawn_room.vmf +++ b/packages/styles/oldAp/resources/instances/50s/sphere_coop/spawn_room.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8997" - "mapversion" "486" + "editorbuild" "9672" + "mapversion" "488" "formatversion" "100" "prefab" "0" } @@ -20,13 +20,13 @@ viewsettings "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "8" + "nGridSpacing" "32" "bShow3DGrid" "0" } world { "id" "1" - "mapversion" "486" + "mapversion" "488" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -723,7 +723,7 @@ world side { "id" "7406" - "plane" "(-568 184 -96) (-572 184 -96) (-572 184 -184)" + "plane" "(-572 184 -144) (-568 184 -144) (-568 184 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" "vaxis" "[-1 0 0 -40] 0.25" @@ -734,7 +734,7 @@ world side { "id" "7407" - "plane" "(-568 -184 -184) (-572 -184 -184) (-572 -184 -96)" + "plane" "(-568 -184 -144) (-572 -184 -144) (-572 -184 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" "vaxis" "[-1 0 0 -40] 0.25" @@ -745,7 +745,7 @@ world side { "id" "7408" - "plane" "(-568 184 -184) (-572 184 -184) (-572 -184 -184)" + "plane" "(-568 184 -144) (-572 184 -144) (-572 -184 -144)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 40] 0.25" "vaxis" "[0 -1 0 40] 0.25" @@ -767,7 +767,7 @@ world side { "id" "7410" - "plane" "(-568 184 -96) (-568 184 -184) (-568 -184 -184)" + "plane" "(-568 184 -96) (-568 184 -144) (-568 -184 -144)" "material" "TOOLS/TOOLSBLACK" "uaxis" "[0 0 1 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -778,7 +778,7 @@ world side { "id" "7411" - "plane" "(-572 -184 -96) (-572 -184 -184) (-572 184 -184)" + "plane" "(-572 -184 -96) (-572 -184 -144) (-572 184 -144)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" "vaxis" "[0 -1 0 40] 0.25" @@ -4544,7 +4544,7 @@ world side { "id" "5753" - "plane" "(-68 184 -96) (-68 184 -184) (-68 -184 -184)" + "plane" "(-68 184 -96) (-68 184 -144) (-68 -184 -144)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -4555,10 +4555,10 @@ world side { "id" "5752" - "plane" "(-68 -184 -184) (-68 184 -184) (-72 184 -184)" + "plane" "(-68 -184 -144) (-68 184 -144) (-72 184 -144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4566,7 +4566,7 @@ world side { "id" "5751" - "plane" "(-72 184 -96) (-72 184 -184) (-68 184 -184)" + "plane" "(-72 184 -96) (-72 184 -144) (-68 184 -144)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 16] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -4577,7 +4577,7 @@ world side { "id" "5750" - "plane" "(-72 -184 -96) (-72 -184 -184) (-72 184 -184)" + "plane" "(-72 -184 -96) (-72 -184 -144) (-72 184 -144)" "material" "TOOLS/TOOLSBLACK" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -4588,7 +4588,7 @@ world side { "id" "5749" - "plane" "(-68 -184 -96) (-68 -184 -184) (-72 -184 -184)" + "plane" "(-68 -184 -96) (-68 -184 -144) (-72 -184 -144)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -4601,8 +4601,8 @@ world "id" "5748" "plane" "(-72 -184 -96) (-72 184 -96) (-68 184 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4620,10 +4620,10 @@ world side { "id" "5759" - "plane" "(-72 184 -188) (-568 184 -188) (-568 -184 -188)" + "plane" "(-72 184 -152) (-568 184 -152) (-568 -184 -152)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4631,7 +4631,7 @@ world side { "id" "5758" - "plane" "(-568 184 -184) (-568 184 -188) (-72 184 -188)" + "plane" "(-568 184 -144) (-568 184 -152) (-72 184 -152)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 16] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -4642,7 +4642,7 @@ world side { "id" "5757" - "plane" "(-72 184 -184) (-72 184 -188) (-72 -184 -188)" + "plane" "(-72 184 -144) (-72 184 -152) (-72 -184 -152)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -4653,7 +4653,7 @@ world side { "id" "5756" - "plane" "(-568 -184 -188) (-568 184 -188) (-568 184 -184)" + "plane" "(-568 -184 -152) (-568 184 -152) (-568 184 -144)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -4664,10 +4664,10 @@ world side { "id" "5755" - "plane" "(-568 -184 -184) (-568 184 -184) (-72 184 -184)" - "material" "TOOLS/TOOLSBLACK" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "plane" "(-568 -184 -144) (-568 184 -144) (-72 184 -144)" + "material" "BEE2/GOO/OLDAP_FAKE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4675,7 +4675,7 @@ world side { "id" "5754" - "plane" "(-72 -184 -188) (-568 -184 -188) (-568 -184 -184)" + "plane" "(-72 -184 -144) (-72 -184 -152) (-568 -184 -152)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -4696,7 +4696,7 @@ world side { "id" "5771" - "plane" "(-568 188 -96) (-568 188 -184) (-72 188 -184)" + "plane" "(-568 188 -96) (-568 188 -144) (-72 188 -144)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 16] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -4707,7 +4707,7 @@ world side { "id" "5770" - "plane" "(-72 188 -96) (-72 188 -184) (-72 184 -184)" + "plane" "(-72 188 -96) (-72 188 -144) (-72 184 -144)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -4718,7 +4718,7 @@ world side { "id" "5769" - "plane" "(-568 184 -96) (-568 184 -184) (-568 188 -184)" + "plane" "(-568 184 -96) (-568 184 -144) (-568 188 -144)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -4729,10 +4729,10 @@ world side { "id" "5768" - "plane" "(-72 188 -184) (-568 188 -184) (-568 184 -184)" + "plane" "(-72 188 -144) (-568 188 -144) (-568 184 -144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4740,7 +4740,7 @@ world side { "id" "5767" - "plane" "(-568 184 -184) (-568 184 -96) (-72 184 -96)" + "plane" "(-72 184 -96) (-72 184 -144) (-568 184 -144)" "material" "TOOLS/TOOLSBLACK" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -4753,8 +4753,8 @@ world "id" "5766" "plane" "(-568 184 -96) (-568 188 -96) (-72 188 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4772,7 +4772,7 @@ world side { "id" "5783" - "plane" "(-568 -188 -184) (-568 -188 -96) (-72 -188 -96)" + "plane" "(-72 -188 -96) (-72 -188 -144) (-568 -188 -144)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 16] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -4783,7 +4783,7 @@ world side { "id" "5782" - "plane" "(-72 -184 -96) (-72 -184 -184) (-72 -188 -184)" + "plane" "(-72 -184 -96) (-72 -184 -144) (-72 -188 -144)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -4794,7 +4794,7 @@ world side { "id" "5781" - "plane" "(-568 -188 -96) (-568 -188 -184) (-568 -184 -184)" + "plane" "(-568 -188 -96) (-568 -188 -144) (-568 -184 -144)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -4805,10 +4805,10 @@ world side { "id" "5780" - "plane" "(-568 -184 -184) (-568 -188 -184) (-72 -188 -184)" + "plane" "(-568 -184 -144) (-568 -188 -144) (-72 -188 -144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4816,7 +4816,7 @@ world side { "id" "5779" - "plane" "(-568 -184 -96) (-568 -184 -184) (-72 -184 -184)" + "plane" "(-568 -184 -96) (-568 -184 -144) (-72 -184 -144)" "material" "TOOLS/TOOLSBLACK" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -4829,8 +4829,8 @@ world "id" "5778" "plane" "(-72 -188 -96) (-568 -188 -96) (-568 -184 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4995,82 +4995,6 @@ world } } solid - { - "id" "27264" - side - { - "id" "5825" - "plane" "(-568 -184 -160) (-568 -184 -184) (-568 184 -184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 47.996] 0.25" - "vaxis" "[0 1 0 -31.0233] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5824" - "plane" "(-72 184 -160) (-72 184 -184) (-72 -184 -184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 47.996] 0.25" - "vaxis" "[0 1 0 -31.0233] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5823" - "plane" "(-568 -184 -184) (-568 -184 -160) (-72 -184 -160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -52.9218] 0.25" - "vaxis" "[0 0 -1 -15.996] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5822" - "plane" "(-568 184 -160) (-568 184 -184) (-72 184 -184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 52.9218] 0.25" - "vaxis" "[0 0 -1 -15.996] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5821" - "plane" "(-568 184 -184) (-568 -184 -184) (-72 -184 -184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 31.0233] 0.25" - "vaxis" "[-1 0 0 -52.9218] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5820" - "plane" "(-568 -184 -160) (-568 184 -160) (-72 184 -160)" - "material" "LIQUIDS/WATER_UNDERGROUND_CAVE" - "uaxis" "[1 0 0 215.308] 4" - "vaxis" "[0 -1 0 701.939] 4" - "rotation" "0" - "lightmapscale" "32" - "smoothing_groups" "0" - } - editor - { - "color" "0 206 191" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid { "id" "27439" side @@ -5862,6 +5786,58 @@ world } } entity +{ + "id" "56329" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "250 230 170 40" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "1" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "_zero_percent_distance" "0" + "angles" "0 0 0" + "style" "0" + "origin" "-320 8 -104" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "56359" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "250 230 170 40" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "1" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "_zero_percent_distance" "0" + "angles" "0 0 0" + "style" "0" + "origin" "-224 8 -104" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity { "id" "56091" "classname" "env_soundscape_proxy" @@ -5906,6 +5882,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "-45 270 180" "pitch" "-45" "origin" "-182 124 198" @@ -5928,6 +5905,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "-45 270 180" "pitch" "-45" "origin" "-230 124 198" @@ -6498,10 +6476,11 @@ entity "_lightscaleHDR" "1" "_linear_attn" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "0" "angles" "0 0 0" "style" "0" - "origin" "-332.761 6.92977 -104" + "origin" "-416 8 -104" editor { "color" "255 255 0" @@ -6543,6 +6522,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 315 90" "pitch" "0" "origin" "-375 176 38" @@ -6563,6 +6543,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 0 0" "origin" "-373 169 86" editor @@ -6581,6 +6562,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 0 0" "origin" "-373 169 38" editor @@ -6602,6 +6584,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 315 90" "pitch" "0" "origin" "-369 176 86" @@ -6643,6 +6626,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 0 0" "origin" "-229.674 117 193.125" editor @@ -6661,6 +6645,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 0 0" "origin" "-181.674 117 193.125" editor @@ -7071,6 +7056,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "-45 0 180" "pitch" "-45" "origin" "-535 68 190" @@ -7091,6 +7077,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 0 0" "origin" "-533 20 182" editor @@ -7110,6 +7097,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 0 0" "origin" "-533 68 182" editor @@ -7132,6 +7120,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "-45 0 180" "pitch" "-45" "origin" "-529 20 190" @@ -7145,22 +7134,6 @@ entity } } entity -{ - "id" "26331" - "classname" "water_lod_control" - "angles" "0 0 0" - "cheapwaterenddistance" "2000" - "cheapwaterstartdistance" "1000" - "origin" "-374.55 39.2103 -56" - editor - { - "color" "64 64 200" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[4500 8500]" - } -} -entity { "id" "13938" "classname" "logic_relay" diff --git a/packages/styles/oldAp/resources/instances/50s/sphere_sp/enrichment_sphere.vmf b/packages/styles/oldAp/resources/instances/50s/sphere_sp/enrichment_sphere.vmf index df71f4868b..2245a7dc0c 100644 --- a/packages/styles/oldAp/resources/instances/50s/sphere_sp/enrichment_sphere.vmf +++ b/packages/styles/oldAp/resources/instances/50s/sphere_sp/enrichment_sphere.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8973" - "mapversion" "1185" + "editorbuild" "9672" + "mapversion" "1197" "formatversion" "100" "prefab" "0" } @@ -50,13 +50,13 @@ viewsettings "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "64" + "nGridSpacing" "128" "bShow3DGrid" "1" } world { "id" "1" - "mapversion" "1185" + "mapversion" "1197" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -64,6 +64,934 @@ world "maxpropscreenwidth" "-1" "skyname" "sky_black" solid + { + "id" "278504" + side + { + "id" "28309" + "plane" "(768 256 -1488) (768 128 -1488) (-384 -1024 -1488)" + "material" "NATURE/TOXICSLIME_A2_BRIDGE_INTRO" + "uaxis" "[1 0 0 776] 4.13" + "vaxis" "[0 -1 0 723] 4.25" + "rotation" "0" + "lightmapscale" "32" + "smoothing_groups" "0" + } + side + { + "id" "28308" + "plane" "(-2816 256 -2048) (-2816 -0 -2048) (-1792 -1024 -2048)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 1" + "vaxis" "[0 -1 0 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28307" + "plane" "(768 128 -2048) (-384 -1024 -2048) (-384 -1024 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 0] 1" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28306" + "plane" "(-1792 -1024 -2048) (-2816 0 -2048) (-2816 0 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 0] 1" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28305" + "plane" "(768 256 -2048) (768 128 -2048) (768 128 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 1" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28304" + "plane" "(-384 -1024 -2048) (-1792 -1024 -2048) (-1792 -1024 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 1" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28303" + "plane" "(-2816 0 -2048) (-2816 256 -2048) (-2816 256 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 1" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28302" + "plane" "(-2816 256 -2048) (768 256 -2048) (768 256 -1488)" + "material" "NATURE/TOXICSLIME_A2_BRIDGE_INTRO" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "190 115 0" + "groupid" "277441" + "visgroupid" "55" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "278510" + side + { + "id" "28325" + "plane" "(-2816 1536 -1488) (-2816 1664 -1488) (-1791.99 2688 -1488)" + "material" "NATURE/TOXICSLIME_A2_BRIDGE_INTRO" + "uaxis" "[1 0 0 776] 4.13" + "vaxis" "[0 -1 0 723] 4.25" + "rotation" "0" + "lightmapscale" "32" + "smoothing_groups" "0" + } + side + { + "id" "28324" + "plane" "(768 1664 -2048) (-256 2688 -2048) (-1792 2688 -2048)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 1" + "vaxis" "[0 -1 0 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28323" + "plane" "(-256 2688 -2048) (768 1664 -2048) (768 1664 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 0] 1" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28322" + "plane" "(-2816 1664 -2048) (-1792 2688 -2048) (-1792 2688 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 -0.707107 0 0] 1" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28321" + "plane" "(768 1664 -2048) (768 1536 -2048) (768 1536 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 1" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28320" + "plane" "(-2816 1536 -2048) (-2816 1664 -2048) (-2816 1664 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 1" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28319" + "plane" "(-1792 2688 -2048) (-256 2688 -2048) (-256 2688 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 1" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28318" + "plane" "(768 1536 -2048) (-2816 1536 -2048) (-2816 1536 -1488)" + "material" "NATURE/TOXICSLIME_A2_BRIDGE_INTRO" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "190 115 0" + "groupid" "277441" + "visgroupid" "55" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "278522" + side + { + "id" "28337" + "plane" "(-2816 256 -1488) (-2816 1536 -1488) (-384 1536 -1488)" + "material" "NATURE/TOXICSLIME_A2_BRIDGE_INTRO" + "uaxis" "[1 0 0 776] 4.13" + "vaxis" "[0 -1 0 723] 4.25" + "rotation" "0" + "lightmapscale" "32" + "smoothing_groups" "0" + } + side + { + "id" "28336" + "plane" "(-2816 1536 -2048) (-2816 256 -2048) (-384 256 -2048)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 1" + "vaxis" "[0 -1 0 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28335" + "plane" "(-2816 256 -2048) (-2816 1536 -2048) (-2816 1536 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 1" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28334" + "plane" "(-384 256 -2048) (-2816 256 -2048) (-2816 256 -1488)" + "material" "NATURE/TOXICSLIME_A2_BRIDGE_INTRO" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28333" + "plane" "(-2816 1536 -2048) (-384 1536 -2048) (-384 1536 -1488)" + "material" "NATURE/TOXICSLIME_A2_BRIDGE_INTRO" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28332" + "plane" "(-384 1536 -2048) (-384 256 -2048) (-384 256 -1488)" + "material" "NATURE/TOXICSLIME_A2_BRIDGE_INTRO" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "190 115 0" + "groupid" "277441" + "visgroupid" "55" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "278523" + side + { + "id" "28343" + "plane" "(-384 1536 -1488) (768 1536 -1488) (768 256 -1488)" + "material" "NATURE/TOXICSLIME_A2_BRIDGE_INTRO" + "uaxis" "[1 0 0 775.789] 4.12819" + "vaxis" "[0 -1 0 722.84] 4.25065" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28342" + "plane" "(-384 256 -2048) (768 256 -2048) (768 1536 -2048)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 1" + "vaxis" "[0 -1 0 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28341" + "plane" "(768 1536 -2048) (768 256 -2048) (768 256 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 1" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28340" + "plane" "(768 256 -2048) (-384 256 -2048) (-384 256 -1488)" + "material" "NATURE/TOXICSLIME_A2_BRIDGE_INTRO" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28339" + "plane" "(-384 1536 -2048) (768 1536 -2048) (768 1536 -1488)" + "material" "NATURE/TOXICSLIME_A2_BRIDGE_INTRO" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28338" + "plane" "(-384 256 -2048) (-384 1536 -2048) (-384 1536 -1488)" + "material" "NATURE/TOXICSLIME_A2_BRIDGE_INTRO" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "190 115 0" + "groupid" "277441" + "visgroupid" "55" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "277252" + side + { + "id" "28301" + "plane" "(-1792 2688 -1488) (-2816 1664 -1488) (-2816 2688 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 1" + "vaxis" "[0 -1 0 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28300" + "plane" "(-1792 2688 -2048) (-2816 2688 -2048) (-2816 1664 -2048)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 1" + "vaxis" "[0 -1 0 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28299" + "plane" "(-2816 2688 -2048) (-2816 2688 -1488) (-2816 1664 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 1" + "vaxis" "[0 0 -1 -42.5143] 0.972222" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28298" + "plane" "(-1792 2688 -2048) (-1792 2688 -1488) (-2816 2688 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 1" + "vaxis" "[0 0 -1 -42.5143] 0.972222" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28297" + "plane" "(-2816 1664 -2048) (-2816 1664 -1488) (-1792 2688 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 0] 1" + "vaxis" "[0 0 -1 -42.5143] 0.972222" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "190 115 0" + "groupid" "277441" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "277254" + side + { + "id" "28296" + "plane" "(-256 2688 -1488) (768 2688 -1488) (768 1664 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 1" + "vaxis" "[0 -1 0 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28295" + "plane" "(-256 2688 -2048) (768 1664 -2048) (768 2688 -2048)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 1" + "vaxis" "[0 -1 0 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28294" + "plane" "(768 2688 -2048) (768 1664 -2048) (768 1664 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 1" + "vaxis" "[0 0 -1 -42.5143] 0.972222" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28293" + "plane" "(-256 2688 -2048) (768 2688 -2048) (768 2688 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 1" + "vaxis" "[0 0 -1 -42.5143] 0.972222" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28292" + "plane" "(768 1664 -2048) (-256 2688 -2048) (-256 2688 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 0] 1" + "vaxis" "[0 0 -1 -42.5143] 0.972222" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "190 115 0" + "groupid" "277441" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "277256" + side + { + "id" "28291" + "plane" "(-384 -1024 -1488) (768 128 -1488) (768 -1024 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 1" + "vaxis" "[0 -1 0 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28290" + "plane" "(-384 -1024 -2048) (768 -1024 -2048) (768 128 -2048)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 1" + "vaxis" "[0 -1 0 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28289" + "plane" "(768 -1024 -2048) (768 -1024 -1488) (768 128 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 1" + "vaxis" "[0 0 -1 -42.5143] 0.972222" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28288" + "plane" "(-384 -1024 -2048) (-384 -1024 -1488) (768 -1024 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 1" + "vaxis" "[0 0 -1 -42.5143] 0.972222" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28287" + "plane" "(768 128 -2048) (768 128 -1488) (-384 -1024 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 -0.707107 0 0] 1" + "vaxis" "[0 0 -1 -42.5143] 0.972222" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "190 115 0" + "groupid" "277441" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "277258" + side + { + "id" "28286" + "plane" "(-2816 3.05176e-005 -1488) (-1792 -1024 -1488) (-2816 -1024 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 1" + "vaxis" "[0 -1 0 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28285" + "plane" "(-2816 -1024 -2048) (-1792 -1024 -2048) (-2816 3.05176e-005 -2048)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 1" + "vaxis" "[0 -1 0 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28284" + "plane" "(-2816 -1024 -1488) (-2816 -1024 -2048) (-2816 3.05176e-005 -2048)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 1" + "vaxis" "[0 0 -1 -42.5143] 0.972222" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28283" + "plane" "(-1792 -1024 -1488) (-1792 -1024 -2048) (-2816 -1024 -2048)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 1" + "vaxis" "[0 0 -1 -42.5143] 0.972222" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28282" + "plane" "(-2816 3.05176e-005 -1488) (-2816 3.05176e-005 -2048) (-1792 -1024 -2048)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 0] 1" + "vaxis" "[0 0 -1 -42.5143] 0.972222" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "190 115 0" + "groupid" "277441" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "277410" + side + { + "id" "28271" + "plane" "(1024 3072 -1488) (1024 2688 -1488) (-3200 2688 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 1" + "vaxis" "[0 -1 0 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28270" + "plane" "(1024 2688 -2048) (1024 3072 -2048) (-3200 3072 -2048)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 1" + "vaxis" "[0 -1 0 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28269" + "plane" "(-3200 2688 -1488) (-3200 2688 -2048) (-3200 3072 -2048)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 1" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28268" + "plane" "(1024 2688 -2048) (1024 2688 -1488) (1024 3072 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 1" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28267" + "plane" "(-3200 3072 -1488) (-3200 3072 -2048) (1024 3072 -2048)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 1" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28266" + "plane" "(-3200 2688 -2048) (-3200 2688 -1488) (1024 2688 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 1" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "190 115 0" + "groupid" "277441" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "277411" + side + { + "id" "28265" + "plane" "(-2816 2688 -1488) (-2816 -1280 -1488) (-3200 -1280 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 1" + "vaxis" "[0 -1 0 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28264" + "plane" "(-2816 -1280 -2048) (-2816 2688 -2048) (-3200 2688 -2048)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 1" + "vaxis" "[0 -1 0 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28263" + "plane" "(-3200 -1280 -1488) (-3200 -1280 -2048) (-3200 2688 -2048)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 1" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28262" + "plane" "(-2816 -1280 -2048) (-2816 -1280 -1488) (-2816 2688 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 1" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28261" + "plane" "(-3200 2688 -1488) (-3200 2688 -2048) (-2816 2688 -2048)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 1" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28260" + "plane" "(-3200 -1280 -2048) (-3200 -1280 -1488) (-2816 -1280 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 1" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "190 115 0" + "groupid" "277441" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "277412" + side + { + "id" "28259" + "plane" "(1024 -1024 -1488) (1024 -1280 -1488) (-2816 -1280 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 1" + "vaxis" "[0 -1 0 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28258" + "plane" "(1024 -1280 -2048) (1024 -1024 -2048) (-2816 -1024 -2048)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 1" + "vaxis" "[0 -1 0 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28257" + "plane" "(-2816 -1280 -1488) (-2816 -1280 -2048) (-2816 -1024 -2048)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 1" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28256" + "plane" "(1024 -1280 -2048) (1024 -1280 -1488) (1024 -1024 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 1" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28255" + "plane" "(-2816 -1024 -1488) (-2816 -1024 -2048) (1024 -1024 -2048)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 1" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28254" + "plane" "(-2816 -1280 -2048) (-2816 -1280 -1488) (1024 -1280 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 1" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "190 115 0" + "groupid" "277441" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "277413" + side + { + "id" "28253" + "plane" "(1024 2688 -1488) (1024 -1024 -1488) (768 -1024 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 1" + "vaxis" "[0 -1 0 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28252" + "plane" "(1024 -1024 -2048) (1024 2688 -2048) (768 2688 -2048)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 1" + "vaxis" "[0 -1 0 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28251" + "plane" "(768 -1024 -1488) (768 -1024 -2048) (768 2688 -2048)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 1" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28250" + "plane" "(1024 -1024 -2048) (1024 -1024 -1488) (1024 2688 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 1" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28249" + "plane" "(768 2688 -1488) (768 2688 -2048) (1024 2688 -2048)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 1" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28248" + "plane" "(768 -1024 -2048) (768 -1024 -1488) (1024 -1024 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 1" + "vaxis" "[0 0 -1 0] 1" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "190 115 0" + "groupid" "277441" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid { "id" "273584" side @@ -373,7 +1301,7 @@ world side { "id" "27920" - "plane" "(-1024 2040 -1536) (-1024 1920 -1536) (-1152 1920 -1032)" + "plane" "(-1152 1920 -1536) (-1152 1920 -1032) (-1152 2040 -1032)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 -6] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -384,7 +1312,7 @@ world side { "id" "27919" - "plane" "(-1280 1920 -1536) (-1280 2040 -1536) (-1280 2040 -1032)" + "plane" "(-1280 2040 -1536) (-1280 2040 -1032) (-1280 1920 -1032)" "material" "METAL/UNDERGROUND_WALL_METAL004A" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -395,7 +1323,7 @@ world side { "id" "27918" - "plane" "(-1280 2040 -1536) (-1280 1920 -1536) (-1024 1920 -1536)" + "plane" "(-1280 1920 -1536) (-1152 1920 -1536) (-1152 2040 -1536)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -406,7 +1334,7 @@ world side { "id" "27917" - "plane" "(-1152 1920 -1032) (-1024 1920 -1536) (-1280 1920 -1536)" + "plane" "(-1152 1920 -1536) (-1280 1920 -1536) (-1280 1920 -1032)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -417,7 +1345,7 @@ world side { "id" "27916" - "plane" "(-1280 1920 -1032) (-1280 2040 -1032) (-1152 2040 -1032)" + "plane" "(-1280 2040 -1032) (-1152 2040 -1032) (-1152 1920 -1032)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -428,7 +1356,7 @@ world side { "id" "27915" - "plane" "(-1024 2040 -1536) (-1152 2040 -1032) (-1280 2040 -1032)" + "plane" "(-1152 2040 -1032) (-1280 2040 -1032) (-1280 2040 -1536)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -449,7 +1377,7 @@ world side { "id" "27926" - "plane" "(-1152 2048 -1032) (-1024 2048 -1536) (-1024 2040 -1536)" + "plane" "(-1152 2048 -1032) (-1152 2048 -1536) (-1152 2040 -1536)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 -6] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -460,7 +1388,7 @@ world side { "id" "27925" - "plane" "(-1280 2040 -1536) (-1280 2048 -1536) (-1280 2048 -1032)" + "plane" "(-1280 2048 -1536) (-1280 2048 -1032) (-1280 2040 -1032)" "material" "METAL/UNDERGROUND_WALL_METAL004A" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -471,7 +1399,7 @@ world side { "id" "27924" - "plane" "(-1024 2048 -1536) (-1152 2048 -1032) (-1280 2048 -1032)" + "plane" "(-1152 2048 -1032) (-1280 2048 -1032) (-1280 2048 -1536)" "material" "METAL/UNDERGROUND_WALL_METAL004A" "uaxis" "[1 0 0 256] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -482,7 +1410,7 @@ world side { "id" "27923" - "plane" "(-1280 2048 -1536) (-1280 2040 -1536) (-1024 2040 -1536)" + "plane" "(-1280 2040 -1536) (-1152 2040 -1536) (-1152 2048 -1536)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -493,7 +1421,7 @@ world side { "id" "27922" - "plane" "(-1280 2040 -1032) (-1280 2048 -1032) (-1152 2048 -1032)" + "plane" "(-1280 2048 -1032) (-1152 2048 -1032) (-1152 2040 -1032)" "material" "METAL/UNDERGROUND_WALL_METAL004A" "uaxis" "[1 0 0 256] 0.25" "vaxis" "[0 1 0 0] 0.25" @@ -504,7 +1432,7 @@ world side { "id" "27921" - "plane" "(-1152 2040 -1032) (-1024 2040 -1536) (-1280 2040 -1536)" + "plane" "(-1152 2040 -1536) (-1280 2040 -1536) (-1280 2040 -1032)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -818,7 +1746,7 @@ world side { "id" "27740" - "plane" "(-1280 640 -1024) (-1664 640 -1536) (-1664 768 -1536)" + "plane" "(-1664 640 -1536) (-1664 768 -1536) (-1664 768 -1024)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -829,7 +1757,7 @@ world side { "id" "27739" - "plane" "(-1152 640 -1536) (-1664 640 -1536) (-1280 640 -1024)" + "plane" "(-1664 640 -1536) (-1664 640 -1024) (-1152 640 -1024)" "material" "METAL/UNDERGROUND_WALL_METAL004A" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -840,7 +1768,7 @@ world side { "id" "27738" - "plane" "(-1152 768 -1536) (-1664 768 -1536) (-1664 640 -1536)" + "plane" "(-1664 768 -1536) (-1664 640 -1536) (-1152 640 -1536)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -851,7 +1779,7 @@ world side { "id" "27737" - "plane" "(-1152 640 -1024) (-1280 640 -1024) (-1280 768 -1024)" + "plane" "(-1664 640 -1024) (-1664 768 -1024) (-1152 768 -1024)" "material" "WOOD/UNDERGROUND_PLYWOOD_01A_BOTTOM" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -862,7 +1790,7 @@ world side { "id" "27736" - "plane" "(-1280 768 -1024) (-1664 768 -1536) (-1152 768 -1536)" + "plane" "(-1664 768 -1536) (-1152 768 -1536) (-1152 768 -1024)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -873,7 +1801,7 @@ world side { "id" "27735" - "plane" "(-1152 768 -1536) (-1152 640 -1536) (-1152 640 -1024)" + "plane" "(-1152 640 -1536) (-1152 640 -1024) (-1152 768 -1024)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -965,83 +1893,6 @@ world } } solid - { - "id" "265001" - side - { - "id" "27549" - "plane" "(-3120 -1200 -1487.27) (-3120 3008 -1487.27) (1024 3008 -1487.27)" - "material" "NATURE/TOXICSLIME_A2_BRIDGE_INTRO" - "uaxis" "[1 0 0 771] 4.05" - "vaxis" "[0 -1 0 732] 4.11" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "27548" - "plane" "(1024 3008 -2256) (-3120 3008 -2256) (-3120 -1200 -2256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "27547" - "plane" "(-3120 3008 -2256) (1024 3008 -2256) (1024 3008 -1487.27)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "27546" - "plane" "(-3120 -1200 -2256) (-3120 3008 -2256) (-3120 3008 -1487.27)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "27545" - "plane" "(1024 3008 -2256) (1024 -1200 -2256) (1024 -1200 -1487.27)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "27544" - "plane" "(1024 -1200 -2256) (-3120 -1200 -2256) (-3120 -1200 -1487.27)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 145 146" - "visgroupid" "55" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid { "id" "265308" side @@ -1255,7 +2106,7 @@ world side { "id" "27140" - "plane" "(-1280 768 -1024) (-1280 640 -1024) (-1280 640 -896)" + "plane" "(-1280 640 -896) (-1280 768 -896) (-1280 768 -1024)" "material" "METAL/UNDERGROUND_WALL_METAL004A" "uaxis" "[0 1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1266,7 +2117,7 @@ world side { "id" "27139" - "plane" "(-1664 640 -896) (-1664 640 -1536) (-1664 768 -1536)" + "plane" "(-1664 768 -1024) (-1664 768 -896) (-1664 640 -896)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1277,7 +2128,7 @@ world side { "id" "27138" - "plane" "(-1280 640 -896) (-1280 640 -1024) (-1664 640 -1536)" + "plane" "(-1664 640 -1024) (-1664 640 -896) (-1280 640 -896)" "material" "METAL/UNDERGROUND_WALL_METAL004A" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1288,7 +2139,7 @@ world side { "id" "27137" - "plane" "(-1664 640 -896) (-1664 768 -896) (-1280 768 -896)" + "plane" "(-1280 768 -896) (-1280 640 -896) (-1664 640 -896)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -1299,7 +2150,7 @@ world side { "id" "27136" - "plane" "(-1664 768 -1536) (-1664 640 -1536) (-1280 640 -1024)" + "plane" "(-1280 640 -1024) (-1280 768 -1024) (-1664 768 -1024)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-0.948683 0 -0.316228 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -1310,7 +2161,7 @@ world side { "id" "27135" - "plane" "(-1664 768 -896) (-1664 768 -1536) (-1280 768 -1024)" + "plane" "(-1280 768 -1024) (-1280 768 -896) (-1664 768 -896)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1548,7 +2399,7 @@ world side { "id" "27263" - "plane" "(-1024 1856 -1536) (-1024 768 -1536) (-1152 768 -1024)" + "plane" "(-1152 768 -1024) (-1152 1856 -1024) (-1152 1856 -1536)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 -6] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1559,7 +2410,7 @@ world side { "id" "27262" - "plane" "(-1664 768 -1536) (-1664 1856 -1536) (-1280 1856 -1024)" + "plane" "(-1664 1856 -1024) (-1664 768 -1024) (-1664 768 -1536)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1570,7 +2421,7 @@ world side { "id" "27261" - "plane" "(-1664 1856 -1536) (-1664 768 -1536) (-1024 768 -1536)" + "plane" "(-1152 768 -1536) (-1152 1856 -1536) (-1664 1856 -1536)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -1581,7 +2432,7 @@ world side { "id" "27260" - "plane" "(-1280 768 -1024) (-1280 1856 -1024) (-1152 1856 -1024)" + "plane" "(-1152 1856 -1024) (-1152 768 -1024) (-1664 768 -1024)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 58] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -1592,7 +2443,7 @@ world side { "id" "27259" - "plane" "(-1152 768 -1024) (-1024 768 -1536) (-1664 768 -1536)" + "plane" "(-1664 768 -1536) (-1664 768 -1024) (-1152 768 -1024)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1603,7 +2454,7 @@ world side { "id" "27258" - "plane" "(-1024 1856 -1536) (-1152 1856 -1024) (-1280 1856 -1024)" + "plane" "(-1664 1856 -1024) (-1664 1856 -1536) (-1152 1856 -1536)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1624,7 +2475,7 @@ world side { "id" "27902" - "plane" "(-1024 1920 -1536) (-1024 1856 -1536) (-1152 1856 -1024)" + "plane" "(-1152 1856 -1024) (-1152 1920 -1024) (-1152 1920 -1536)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 -6] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1635,7 +2486,7 @@ world side { "id" "27901" - "plane" "(-1664 1856 -1536) (-1664 1920 -1536) (-1280 1920 -1024)" + "plane" "(-1280 1920 -1024) (-1280 1856 -1024) (-1280 1856 -1536)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1646,7 +2497,7 @@ world side { "id" "27900" - "plane" "(-1664 1920 -1536) (-1664 1856 -1536) (-1024 1856 -1536)" + "plane" "(-1152 1856 -1536) (-1152 1920 -1536) (-1280 1920 -1536)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -1657,7 +2508,7 @@ world side { "id" "27899" - "plane" "(-1280 1856 -1024) (-1280 1920 -1024) (-1152 1920 -1024)" + "plane" "(-1152 1920 -1024) (-1152 1856 -1024) (-1280 1856 -1024)" "material" "WOOD/UNDERGROUND_PLYWOOD_01A_BOTTOM" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -1668,7 +2519,7 @@ world side { "id" "27898" - "plane" "(-1024 1920 -1536) (-1152 1920 -1024) (-1280 1920 -1024)" + "plane" "(-1280 1920 -1024) (-1280 1920 -1536) (-1152 1920 -1536)" "material" "METAL/UNDERGROUND_WALL_METAL004A" "uaxis" "[1 0 0 256] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1679,7 +2530,7 @@ world side { "id" "27897" - "plane" "(-1152 1856 -1024) (-1024 1856 -1536) (-1664 1856 -1536)" + "plane" "(-1280 1856 -1536) (-1280 1856 -1024) (-1152 1856 -1024)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1700,7 +2551,7 @@ world side { "id" "27275" - "plane" "(-1280 1856 -1024) (-1280 768 -1024) (-1280 768 -896)" + "plane" "(-1280 768 -896) (-1280 1856 -896) (-1280 1856 -1024)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 -6] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1711,7 +2562,7 @@ world side { "id" "27274" - "plane" "(-1664 768 -1536) (-1664 1856 -1536) (-1664 1856 -896)" + "plane" "(-1664 1856 -896) (-1664 768 -896) (-1664 768 -1024)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1722,7 +2573,7 @@ world side { "id" "27273" - "plane" "(-1664 768 -896) (-1664 1856 -896) (-1280 1856 -896)" + "plane" "(-1280 1856 -896) (-1280 768 -896) (-1664 768 -896)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -1733,7 +2584,7 @@ world side { "id" "27272" - "plane" "(-1664 1856 -1536) (-1664 768 -1536) (-1280 768 -1024)" + "plane" "(-1280 768 -1024) (-1280 1856 -1024) (-1664 1856 -1024)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-0.948683 0 -0.316228 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -1744,7 +2595,7 @@ world side { "id" "27271" - "plane" "(-1280 768 -896) (-1280 768 -1024) (-1664 768 -1536)" + "plane" "(-1664 768 -1024) (-1664 768 -896) (-1280 768 -896)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1755,7 +2606,7 @@ world side { "id" "27270" - "plane" "(-1664 1856 -896) (-1664 1856 -1536) (-1280 1856 -1024)" + "plane" "(-1280 1856 -1024) (-1280 1856 -896) (-1664 1856 -896)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1776,7 +2627,7 @@ world side { "id" "27281" - "plane" "(-1280 1920 -896) (-1280 1920 -1024) (-1280 1856 -1024)" + "plane" "(-1280 1920 -1536) (-1280 1856 -1536) (-1280 1856 -896)" "material" "METAL/UNDERGROUND_WALL_METAL004A" "uaxis" "[0 1 0 -256] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1787,7 +2638,7 @@ world side { "id" "27280" - "plane" "(-1664 1856 -1536) (-1664 1920 -1536) (-1664 1920 -896)" + "plane" "(-1664 1920 -1536) (-1664 1920 -896) (-1664 1856 -896)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1798,7 +2649,7 @@ world side { "id" "27279" - "plane" "(-1664 1920 -896) (-1664 1920 -1536) (-1280 1920 -1024)" + "plane" "(-1664 1920 -1536) (-1280 1920 -1536) (-1280 1920 -896)" "material" "METAL/UNDERGROUND_WALL_METAL004A" "uaxis" "[1 0 0 256] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1809,7 +2660,7 @@ world side { "id" "27278" - "plane" "(-1664 1856 -896) (-1664 1920 -896) (-1280 1920 -896)" + "plane" "(-1664 1920 -896) (-1280 1920 -896) (-1280 1856 -896)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -1820,7 +2671,7 @@ world side { "id" "27277" - "plane" "(-1664 1920 -1536) (-1664 1856 -1536) (-1280 1856 -1024)" + "plane" "(-1664 1856 -1536) (-1280 1856 -1536) (-1280 1920 -1536)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-0.948683 0 -0.316228 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -1831,7 +2682,7 @@ world side { "id" "27276" - "plane" "(-1280 1856 -896) (-1280 1856 -1024) (-1664 1856 -1536)" + "plane" "(-1280 1856 -1536) (-1664 1856 -1536) (-1664 1856 -896)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1852,7 +2703,7 @@ world side { "id" "27287" - "plane" "(-1152 1856 -896) (-1152 768 -896) (-1024 768 -256)" + "plane" "(-1152 768 -896) (-1152 768 -256) (-1152 1856 -256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 -6] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1863,7 +2714,7 @@ world side { "id" "27286" - "plane" "(-1664 1856 -896) (-1664 768 -896) (-1152 768 -896)" + "plane" "(-1664 768 -896) (-1152 768 -896) (-1152 1856 -896)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 58] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -1874,7 +2725,7 @@ world side { "id" "27285" - "plane" "(-1024 1856 -256) (-1024 768 -256) (-1664 768 -256)" + "plane" "(-1152 768 -256) (-1664 768 -256) (-1664 1856 -256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -1885,7 +2736,7 @@ world side { "id" "27284" - "plane" "(-1024 768 -256) (-1152 768 -896) (-1664 768 -896)" + "plane" "(-1152 768 -896) (-1664 768 -896) (-1664 768 -256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1896,7 +2747,7 @@ world side { "id" "27283" - "plane" "(-1664 768 -896) (-1664 1856 -896) (-1664 1856 -256)" + "plane" "(-1664 1856 -896) (-1664 1856 -256) (-1664 768 -256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1907,7 +2758,7 @@ world side { "id" "27282" - "plane" "(-1664 1856 -896) (-1152 1856 -896) (-1024 1856 -256)" + "plane" "(-1152 1856 -896) (-1152 1856 -256) (-1664 1856 -256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1928,7 +2779,7 @@ world side { "id" "27986" - "plane" "(-1024 1856 -1536) (-1024 768 -1536) (-1024 768 -256)" + "plane" "(-1024 768 -1536) (-1024 768 -256) (-1024 1856 -256)" "material" "METAL/UNDERGROUND_WALL_METAL004A" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1939,7 +2790,7 @@ world side { "id" "27985" - "plane" "(-1152 768 -1024) (-1152 1856 -1024) (-1152 1856 -896)" + "plane" "(-1152 1856 -1536) (-1152 1856 -256) (-1152 768 -256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 -6] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1950,7 +2801,7 @@ world side { "id" "27984" - "plane" "(-1024 768 -1536) (-1024 1856 -1536) (-1152 1856 -1024)" + "plane" "(-1024 1856 -1536) (-1152 1856 -1536) (-1152 768 -1536)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -1961,7 +2812,7 @@ world side { "id" "27983" - "plane" "(-1152 768 -896) (-1152 1856 -896) (-1024 1856 -256)" + "plane" "(-1152 1856 -256) (-1024 1856 -256) (-1024 768 -256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -1972,7 +2823,7 @@ world side { "id" "27982" - "plane" "(-1024 768 -256) (-1024 768 -1536) (-1152 768 -1024)" + "plane" "(-1024 768 -1536) (-1152 768 -1536) (-1152 768 -256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 58] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1983,7 +2834,7 @@ world side { "id" "27981" - "plane" "(-1152 1856 -896) (-1152 1856 -1024) (-1024 1856 -1536)" + "plane" "(-1152 1856 -1536) (-1024 1856 -1536) (-1024 1856 -256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2547,7 +3398,7 @@ world side { "id" "27428" - "plane" "(-1152 1856 -1032) (-1152 2048 -1032) (-1152 2048 -896)" + "plane" "(-1152 1856 -1536) (-1152 2048 -1536) (-1152 2048 -896)" "material" "METAL/UNDERGROUND_WALL_METAL004A" "uaxis" "[0 1 0 -256] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2558,7 +3409,7 @@ world side { "id" "27427" - "plane" "(-1152 2048 -1032) (-1024 2048 -1536) (-1024 2048 -896)" + "plane" "(-1152 2048 -1536) (-1024 2048 -1536) (-1024 2048 -896)" "material" "METAL/UNDERGROUND_WALL_METAL004A" "uaxis" "[1 0 0 256] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2569,7 +3420,7 @@ world side { "id" "27426" - "plane" "(-1024 2048 -1536) (-1152 2048 -1032) (-1152 1856 -1032)" + "plane" "(-1024 2048 -1536) (-1152 2048 -1536) (-1152 1856 -1536)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -2580,7 +3431,7 @@ world side { "id" "27425" - "plane" "(-1024 1856 -1536) (-1152 1856 -1032) (-1152 1856 -896)" + "plane" "(-1024 1856 -1536) (-1152 1856 -1536) (-1152 1856 -896)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2916,10 +3767,10 @@ world side { "id" "26090" - "plane" "(-3120 -1200 1984) (-3120 3008 1984) (1024 3008 1984)" + "plane" "(1024 3072 1728) (1024 -1280 1728) (-3200 -1280 1728)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 2" + "vaxis" "[0 -1 0 0] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2927,10 +3778,10 @@ world side { "id" "26089" - "plane" "(-3120 3008 1872) (-3120 3008 1984) (-3120 -1200 1984)" + "plane" "(-3200 -1280 1728) (-3200 -1280 1616) (-3200 3072 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -55.936] 0.25" + "uaxis" "[0 1 0 0] 2" + "vaxis" "[0 0 -1 0] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2938,10 +3789,10 @@ world side { "id" "26088" - "plane" "(1024 -1200 1872) (1024 -1200 1984) (1024 3008 1984)" + "plane" "(1024 3072 1728) (1024 3072 1616) (1024 -1280 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -55.936] 0.25" + "uaxis" "[0 1 0 0] 2" + "vaxis" "[0 0 -1 0] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2949,10 +3800,10 @@ world side { "id" "26087" - "plane" "(1024 3008 1872) (1024 3008 1984) (-3120 3008 1984)" + "plane" "(-3200 3072 1728) (-3200 3072 1616) (1024 3072 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -55.936] 0.25" + "uaxis" "[1 0 0 0] 2" + "vaxis" "[0 0 -1 0] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2960,10 +3811,10 @@ world side { "id" "26086" - "plane" "(-3120 -1200 1872) (-3120 -1200 1984) (1024 -1200 1984)" + "plane" "(1024 -1280 1728) (1024 -1280 1616) (-3200 -1280 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -55.936] 0.25" + "uaxis" "[1 0 0 0] 2" + "vaxis" "[0 0 -1 0] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2971,10 +3822,10 @@ world side { "id" "26085" - "plane" "(-3120 3008 1872) (-3120 -1200 1872) (1024 -1200 1872)" + "plane" "(1024 -1280 1616) (1024 3072 1616) (-3200 3072 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 2" + "vaxis" "[0 -1 0 0] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2994,10 +3845,10 @@ world side { "id" "26096" - "plane" "(-3120 3008 -2381.98) (-3120 -1200 -2381.98) (1024 -1200 -2381.98)" + "plane" "(1024 -1280 -2173.98) (1024 3072 -2173.98) (-3200 3072 -2173.98)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 2" + "vaxis" "[0 -1 0 0] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3005,10 +3856,10 @@ world side { "id" "26095" - "plane" "(-3120 -1200 -2256) (-3120 -1200 -2381.98) (-3120 3008 -2381.98)" + "plane" "(-3200 3072 -2173.98) (-3200 3072 -2048) (-3200 -1280 -2048)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 8.064] 0.25" + "uaxis" "[0 1 0 0] 2" + "vaxis" "[0 0 -1 0] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3016,10 +3867,10 @@ world side { "id" "26094" - "plane" "(1024 3008 -2256) (1024 3008 -2381.98) (1024 -1200 -2381.98)" + "plane" "(1024 -1280 -2173.98) (1024 -1280 -2048) (1024 3072 -2048)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 8.064] 0.25" + "uaxis" "[0 1 0 0] 2" + "vaxis" "[0 0 -1 0] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3027,10 +3878,10 @@ world side { "id" "26093" - "plane" "(-3120 3008 -2256) (-3120 3008 -2381.98) (1024 3008 -2381.98)" + "plane" "(1024 3072 -2173.98) (1024 3072 -2048) (-3200 3072 -2048)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 8.064] 0.25" + "uaxis" "[1 0 0 0] 2" + "vaxis" "[0 0 -1 0] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3038,10 +3889,10 @@ world side { "id" "26092" - "plane" "(1024 -1200 -2256) (1024 -1200 -2381.98) (-3120 -1200 -2381.98)" + "plane" "(-3200 -1280 -2173.98) (-3200 -1280 -2048) (1024 -1280 -2048)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 8.064] 0.25" + "uaxis" "[1 0 0 0] 2" + "vaxis" "[0 0 -1 0] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3049,10 +3900,10 @@ world side { "id" "26091" - "plane" "(-3120 -1200 -2256) (-3120 3008 -2256) (1024 3008 -2256)" + "plane" "(1024 3072 -2048) (1024 -1280 -2048) (-3200 -1280 -2048)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 2" + "vaxis" "[0 -1 0 0] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3072,10 +3923,10 @@ world side { "id" "26102" - "plane" "(-3248 -1200 1872) (-3248 -1200 -2256) (-3248 3008 -2256)" + "plane" "(-3328 3072 -2048) (-3328 3072 1616) (-3328 -1280 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -55.936] 0.25" + "uaxis" "[0 1 0 0] 2" + "vaxis" "[0 0 -1 0] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3083,10 +3934,10 @@ world side { "id" "26101" - "plane" "(-3248 3008 1872) (-3248 3008 -2256) (-3120 3008 -2256)" + "plane" "(-3200 3072 -2048) (-3200 3072 1616) (-3328 3072 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -55.936] 0.25" + "uaxis" "[1 0 0 0] 2" + "vaxis" "[0 0 -1 0] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3094,10 +3945,10 @@ world side { "id" "26100" - "plane" "(-3120 -1200 -2256) (-3248 -1200 -2256) (-3248 -1200 1872)" + "plane" "(-3328 -1280 1616) (-3200 -1280 1616) (-3200 -1280 -2048)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -55.936] 0.25" + "uaxis" "[1 0 0 0] 2" + "vaxis" "[0 0 -1 0] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3105,10 +3956,10 @@ world side { "id" "26099" - "plane" "(-3120 -1200 1872) (-3248 -1200 1872) (-3248 3008 1872)" + "plane" "(-3328 3072 1616) (-3200 3072 1616) (-3200 -1280 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 2" + "vaxis" "[0 -1 0 0] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3116,10 +3967,10 @@ world side { "id" "26098" - "plane" "(-3120 3008 -2256) (-3248 3008 -2256) (-3248 -1200 -2256)" + "plane" "(-3328 -1280 -2048) (-3200 -1280 -2048) (-3200 3072 -2048)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 2" + "vaxis" "[0 -1 0 0] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3127,10 +3978,10 @@ world side { "id" "26097" - "plane" "(-3120 3008 1872) (-3120 3008 -2256) (-3120 -1200 -2256)" + "plane" "(-3200 -1280 -2048) (-3200 -1280 1616) (-3200 3072 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -55.936] 0.25" + "uaxis" "[0 1 0 0] 2" + "vaxis" "[0 0 -1 0] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3150,10 +4001,10 @@ world side { "id" "26108" - "plane" "(1152 3008 1872) (1152 3008 -2256) (1152 -1200 -2256)" + "plane" "(1152 -1280 -2048) (1152 -1280 1616) (1152 3072 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -55.936] 0.25" + "uaxis" "[0 1 0 0] 2" + "vaxis" "[0 0 -1 0] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3161,10 +4012,10 @@ world side { "id" "26107" - "plane" "(1024 3008 -2256) (1152 3008 -2256) (1152 3008 1872)" + "plane" "(1152 3072 1616) (1024 3072 1616) (1024 3072 -2048)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -55.936] 0.25" + "uaxis" "[1 0 0 0] 2" + "vaxis" "[0 0 -1 0] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3172,10 +4023,10 @@ world side { "id" "26106" - "plane" "(1152 -1200 1872) (1152 -1200 -2256) (1024 -1200 -2256)" + "plane" "(1024 -1280 -2048) (1024 -1280 1616) (1152 -1280 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -55.936] 0.25" + "uaxis" "[1 0 0 0] 2" + "vaxis" "[0 0 -1 0] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3183,10 +4034,10 @@ world side { "id" "26105" - "plane" "(1024 3008 1872) (1152 3008 1872) (1152 -1200 1872)" + "plane" "(1152 -1280 1616) (1024 -1280 1616) (1024 3072 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 2" + "vaxis" "[0 -1 0 0] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3194,10 +4045,10 @@ world side { "id" "26104" - "plane" "(1024 -1200 -2256) (1152 -1200 -2256) (1152 3008 -2256)" + "plane" "(1152 3072 -2048) (1024 3072 -2048) (1024 -1280 -2048)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 2" + "vaxis" "[0 -1 0 0] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3205,10 +4056,10 @@ world side { "id" "26103" - "plane" "(1024 -1200 1872) (1024 -1200 -2256) (1024 3008 -2256)" + "plane" "(1024 3072 -2048) (1024 3072 1616) (1024 -1280 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -55.936] 0.25" + "uaxis" "[0 1 0 0] 2" + "vaxis" "[0 0 -1 0] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3228,10 +4079,10 @@ world side { "id" "26114" - "plane" "(-3120 3136 -2256) (1024 3136 -2256) (1024 3136 1872)" + "plane" "(1024 3200 1616) (-3200 3200 1616) (-3200 3200 -2048)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -55.936] 0.25" + "uaxis" "[1 0 0 0] 2" + "vaxis" "[0 0 -1 0] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3239,10 +4090,10 @@ world side { "id" "26113" - "plane" "(-3120 3008 1872) (-3120 3136 1872) (1024 3136 1872)" + "plane" "(1024 3200 1616) (1024 3072 1616) (-3200 3072 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 2" + "vaxis" "[0 -1 0 0] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3250,10 +4101,10 @@ world side { "id" "26112" - "plane" "(1024 3136 -2256) (-3120 3136 -2256) (-3120 3008 -2256)" + "plane" "(-3200 3072 -2048) (1024 3072 -2048) (1024 3200 -2048)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 2" + "vaxis" "[0 -1 0 0] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3261,10 +4112,10 @@ world side { "id" "26111" - "plane" "(-3120 3008 -2256) (-3120 3136 -2256) (-3120 3136 1872)" + "plane" "(-3200 3200 1616) (-3200 3072 1616) (-3200 3072 -2048)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -55.936] 0.25" + "uaxis" "[0 1 0 0] 2" + "vaxis" "[0 0 -1 0] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3272,10 +4123,10 @@ world side { "id" "26110" - "plane" "(1024 3136 1872) (1024 3136 -2256) (1024 3008 -2256)" + "plane" "(1024 3072 -2048) (1024 3072 1616) (1024 3200 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -55.936] 0.25" + "uaxis" "[0 1 0 0] 2" + "vaxis" "[0 0 -1 0] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3283,10 +4134,10 @@ world side { "id" "26109" - "plane" "(1024 3008 -2256) (-3120 3008 -2256) (-3120 3008 1872)" + "plane" "(-3200 3072 1616) (1024 3072 1616) (1024 3072 -2048)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -55.936] 0.25" + "uaxis" "[1 0 0 0] 2" + "vaxis" "[0 0 -1 0] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3306,10 +4157,10 @@ world side { "id" "26120" - "plane" "(1024 -1328 -2256) (-3120 -1328 -2256) (-3120 -1328 1872)" + "plane" "(-3200 -1408 1616) (1024 -1408 1616) (1024 -1408 -2048)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -55.936] 0.25" + "uaxis" "[1 0 0 0] 2" + "vaxis" "[0 0 -1 0] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3317,10 +4168,10 @@ world side { "id" "26119" - "plane" "(1024 -1328 1872) (-3120 -1328 1872) (-3120 -1200 1872)" + "plane" "(-3200 -1280 1616) (1024 -1280 1616) (1024 -1408 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 2" + "vaxis" "[0 -1 0 0] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3328,10 +4179,10 @@ world side { "id" "26118" - "plane" "(-3120 -1200 -2256) (-3120 -1328 -2256) (1024 -1328 -2256)" + "plane" "(1024 -1408 -2048) (1024 -1280 -2048) (-3200 -1280 -2048)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 2" + "vaxis" "[0 -1 0 0] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3339,10 +4190,10 @@ world side { "id" "26117" - "plane" "(-3120 -1328 1872) (-3120 -1328 -2256) (-3120 -1200 -2256)" + "plane" "(-3200 -1280 -2048) (-3200 -1280 1616) (-3200 -1408 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -55.936] 0.25" + "uaxis" "[0 1 0 0] 2" + "vaxis" "[0 0 -1 0] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3350,10 +4201,10 @@ world side { "id" "26116" - "plane" "(1024 -1200 -2256) (1024 -1328 -2256) (1024 -1328 1872)" + "plane" "(1024 -1408 1616) (1024 -1280 1616) (1024 -1280 -2048)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -55.936] 0.25" + "uaxis" "[0 1 0 0] 2" + "vaxis" "[0 0 -1 0] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3361,10 +4212,10 @@ world side { "id" "26115" - "plane" "(-3120 -1200 -2256) (1024 -1200 -2256) (1024 -1200 1872)" + "plane" "(1024 -1280 1616) (-3200 -1280 1616) (-3200 -1280 -2048)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -55.936] 0.25" + "uaxis" "[1 0 0 0] 2" + "vaxis" "[0 0 -1 0] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3379,6 +4230,16 @@ world } } group + { + "id" "277441" + editor + { + "color" "190 115 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group { "id" "257988" editor @@ -3813,7 +4674,7 @@ entity "TextureScale" "1" "Type" "0" "Width" "2" - "origin" "-316 2072 1296" + "origin" "-316 2072 1040" editor { "color" "220 30 220" @@ -3870,7 +4731,7 @@ entity side { "id" "27908" - "plane" "(-1152 2048 -1024) (-1152 2048 -1032) (-1152 2040 -1032)" + "plane" "(-1152 2048 -1032) (-1152 2040 -1032) (-1152 2040 -1024)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 -6] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -3881,7 +4742,7 @@ entity side { "id" "27907" - "plane" "(-1192 2048 -1032) (-1152 2048 -1032) (-1152 2048 -1024)" + "plane" "(-1152 2048 -1032) (-1152 2048 -1024) (-1192 2048 -1024)" "material" "WOOD/UNDERGROUND_PLYWOOD_01A_BOTTOM" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 1 0] 0.25" @@ -3892,7 +4753,7 @@ entity side { "id" "27906" - "plane" "(-1192 2048 -1024) (-1152 2048 -1024) (-1152 2040 -1024)" + "plane" "(-1152 2048 -1024) (-1152 2040 -1024) (-1192 2040 -1024)" "material" "WOOD/UNDERGROUND_PLYWOOD_01A_BOTTOM" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -3903,7 +4764,7 @@ entity side { "id" "27905" - "plane" "(-1192 2040 -1032) (-1152 2040 -1032) (-1152 2048 -1032)" + "plane" "(-1152 2040 -1032) (-1152 2048 -1032) (-1192 2048 -1032)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -3914,7 +4775,7 @@ entity side { "id" "27904" - "plane" "(-1152 2040 -1024) (-1152 2040 -1032) (-1192 2040 -1032)" + "plane" "(-1152 2040 -1032) (-1192 2040 -1032) (-1192 2040 -1024)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -3925,7 +4786,7 @@ entity side { "id" "27903" - "plane" "(-1192 2040 -1032) (-1192 2048 -1032) (-1192 2048 -1024)" + "plane" "(-1192 2048 -1032) (-1192 2048 -1024) (-1192 2040 -1024)" "material" "WOOD/UNDERGROUND_PLYWOOD_01A_BOTTOM" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 1 0] 0.25" @@ -3946,7 +4807,7 @@ entity side { "id" "27914" - "plane" "(-1152 2040 -1032) (-1152 1920 -1032) (-1152 1920 -1024)" + "plane" "(-1152 1920 -1032) (-1152 1920 -1024) (-1152 2040 -1024)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 -6] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -3957,7 +4818,7 @@ entity side { "id" "27913" - "plane" "(-1280 2040 -1024) (-1280 1920 -1024) (-1280 1920 -1032)" + "plane" "(-1280 1920 -1024) (-1280 1920 -1032) (-1280 2040 -1032)" "material" "WOOD/UNDERGROUND_PLYWOOD_01A_BOTTOM" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 1 0] 0.25" @@ -3968,7 +4829,7 @@ entity side { "id" "27912" - "plane" "(-1280 1920 -1024) (-1280 2040 -1024) (-1152 2040 -1024)" + "plane" "(-1280 2040 -1024) (-1152 2040 -1024) (-1152 1920 -1024)" "material" "WOOD/UNDERGROUND_PLYWOOD_01A_BOTTOM" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -3979,7 +4840,7 @@ entity side { "id" "27911" - "plane" "(-1152 1920 -1024) (-1152 1920 -1032) (-1280 1920 -1032)" + "plane" "(-1152 1920 -1032) (-1280 1920 -1032) (-1280 1920 -1024)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -3990,7 +4851,7 @@ entity side { "id" "27910" - "plane" "(-1280 2040 -1032) (-1280 1920 -1032) (-1152 1920 -1032)" + "plane" "(-1280 1920 -1032) (-1152 1920 -1032) (-1152 2040 -1032)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -4001,7 +4862,7 @@ entity side { "id" "27909" - "plane" "(-1280 2040 -1024) (-1280 2040 -1032) (-1152 2040 -1032)" + "plane" "(-1280 2040 -1032) (-1152 2040 -1032) (-1152 2040 -1024)" "material" "WOOD/UNDERGROUND_PLYWOOD_01A_BOTTOM" "uaxis" "[1 0 0 992] 0.25" "vaxis" "[0 0 1 0] 0.25" @@ -4141,6 +5002,7 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "0" "angles" "0 0 0" "spawnflags" "0" @@ -4331,6 +5193,7 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "0" "angles" "0 0 0" "spawnflags" "0" @@ -5164,7 +6027,7 @@ entity "screenspacefade" "0" "skin" "0" "solid" "6" - "origin" "-1048 858 -189.984" + "origin" "-1048 858 -445.984" editor { "color" "0 105 114" @@ -5196,7 +6059,7 @@ entity "screenspacefade" "0" "skin" "0" "solid" "6" - "origin" "-1048 858 -189.984" + "origin" "-1048 858 -445.984" editor { "color" "0 105 114" @@ -5228,7 +6091,7 @@ entity "screenspacefade" "0" "skin" "0" "solid" "6" - "origin" "-1048 858 -189.984" + "origin" "-1048 858 -445.984" editor { "color" "0 105 114" @@ -5260,7 +6123,7 @@ entity "screenspacefade" "0" "skin" "0" "solid" "6" - "origin" "-1048 858 -189.984" + "origin" "-1048 858 -445.984" editor { "color" "0 105 114" @@ -5292,7 +6155,7 @@ entity "screenspacefade" "0" "skin" "0" "solid" "6" - "origin" "-1048 858 -189.984" + "origin" "-1048 858 -445.984" editor { "color" "0 105 114" @@ -11614,6 +12477,7 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "0" "angles" "-88 105 -180" "pitch" "-88" @@ -11642,6 +12506,7 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "0" "angles" "0 0 0" "spawnflags" "0" @@ -11952,6 +12817,7 @@ entity "_lightHDR" "-1 -1 -1 -1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 0 0" "spawnflags" "0" "origin" "-1564.2 445 -378.7" @@ -12116,14 +12982,14 @@ entity { "id" "204243" "classname" "trigger_hurt" - "damage" "1000" - "damagecap" "1000" + "damage" "10000" + "damagecap" "10000" "damagemodel" "0" "damagetype" "262144" "nodmgforce" "0" - "origin" "-1047.89 -148 -1551.27" + "origin" "-1024 -96 -1760" "solid" "6" - "spawnflags" "4097" + "spawnflags" "1" "StartDisabled" "0" solid { @@ -12131,10 +12997,10 @@ entity side { "id" "25964" - "plane" "(1024 -1200 -1525.27) (-3120 -1200 -1525.27) (-3120 3008 -1525.27)" + "plane" "(768 -1024 -1504) (-2816 -1024 -1504) (-2816 2688 -1504)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 1" + "vaxis" "[0 -1 0 0] 1" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -12142,10 +13008,10 @@ entity side { "id" "25963" - "plane" "(1024 3008 -1679.27) (-3120 3008 -1679.27) (-3120 -1200 -1679.27)" + "plane" "(768 2688 -2048) (-2816 2688 -2048) (-2816 -1024 -2048)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 1" + "vaxis" "[0 -1 0 0] 1" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -12153,10 +13019,10 @@ entity side { "id" "25962" - "plane" "(-3120 3008 -1679.27) (1024 3008 -1679.27) (1024 3008 -1525.27)" + "plane" "(-2816 2688 -2048) (768 2688 -2048) (768 2688 -1504)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 52] 0.25" + "uaxis" "[-1 0 0 0] 1" + "vaxis" "[0 0 -1 -47.8865] 1.04071" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -12164,10 +13030,10 @@ entity side { "id" "25961" - "plane" "(1024 -1200 -1679.27) (-3120 -1200 -1679.27) (-3120 -1200 -1525.27)" + "plane" "(768 -1024 -2048) (-2816 -1024 -2048) (-2816 -1024 -1504)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 52] 0.25" + "uaxis" "[1 0 0 0] 1" + "vaxis" "[0 0 -1 -47.8865] 1.04071" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -12175,10 +13041,10 @@ entity side { "id" "25960" - "plane" "(-3120 -1200 -1679.27) (-3120 3008 -1679.27) (-3120 3008 -1525.27)" + "plane" "(-2816 -1024 -2048) (-2816 2688 -2048) (-2816 2688 -1504)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 52] 0.25" + "uaxis" "[0 -1 0 0] 1" + "vaxis" "[0 0 -1 -47.8865] 1.04071" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -12186,10 +13052,10 @@ entity side { "id" "25959" - "plane" "(1024 3008 -1679.27) (1024 -1200 -1679.27) (1024 -1200 -1525.27)" + "plane" "(768 2688 -2048) (768 -1024 -2048) (768 -1024 -1504)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 52] 0.25" + "uaxis" "[0 1 0 0] 1" + "vaxis" "[0 0 -1 -47.8865] 1.04071" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -12214,7 +13080,7 @@ entity { "id" "204249" "classname" "trigger_multiple" - "origin" "-1047.88 -148 -1551.27" + "origin" "-1023.9 -96 -945.25" "solid" "6" "spawnflags" "4104" "StartDisabled" "0" @@ -12223,6 +13089,7 @@ entity { "OnStartTouch" "!activatorSilentDissolve0-1" "OnStartTouch" "!activatorKill0.1-1" + "OnStartTouch" "!activatorCallScriptFunctionFellInGoo0.01-1" } solid { @@ -12230,10 +13097,10 @@ entity side { "id" "25970" - "plane" "(1024 -1200 -1627.27) (-3120 -1200 -1627.27) (-3120 3008 -1627.27)" + "plane" "(768 -1024 -1600) (-2816 -1024 -1600) (-2816 2688 -1600)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 1" + "vaxis" "[0 -1 0 0] 1" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -12241,10 +13108,10 @@ entity side { "id" "25969" - "plane" "(1024 3008 -1679.27) (-3120 3008 -1679.27) (-3120 -1200 -1679.27)" + "plane" "(768 2688 -2048) (-2816 2688 -2048) (-2816 -1024 -2048)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 1" + "vaxis" "[0 -1 0 0] 1" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -12252,10 +13119,10 @@ entity side { "id" "25968" - "plane" "(-3120 3008 -1679.27) (1024 3008 -1679.27) (1024 3008 -1627.27)" + "plane" "(-2816 2688 -2048) (768 2688 -2048) (768 2688 -1600)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 40] 0.25" + "uaxis" "[-1 0 0 0] 1" + "vaxis" "[0 0 -1 60.6606] 1.06481" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -12263,10 +13130,10 @@ entity side { "id" "25967" - "plane" "(1024 -1200 -1679.27) (-3120 -1200 -1679.27) (-3120 -1200 -1627.27)" + "plane" "(768 -1024 -2048) (-2816 -1024 -2048) (-2816 -1024 -1600)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 40] 0.25" + "uaxis" "[1 0 0 0] 1" + "vaxis" "[0 0 -1 60.6606] 1.06481" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -12274,10 +13141,10 @@ entity side { "id" "25966" - "plane" "(-3120 -1200 -1679.27) (-3120 3008 -1679.27) (-3120 3008 -1627.27)" + "plane" "(-2816 -1024 -2048) (-2816 2688 -2048) (-2816 2688 -1600)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 40] 0.25" + "uaxis" "[0 -1 0 0] 1" + "vaxis" "[0 0 -1 60.6606] 1.06481" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -12285,10 +13152,10 @@ entity side { "id" "25965" - "plane" "(1024 3008 -1679.27) (1024 -1200 -1679.27) (1024 -1200 -1627.27)" + "plane" "(768 2688 -2048) (768 -1024 -2048) (768 -1024 -1600)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 40] 0.25" + "uaxis" "[0 1 0 0] 1" + "vaxis" "[0 0 -1 60.6606] 1.06481" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -13291,6 +14158,7 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "0" "angles" "-88 270 -180" "pitch" "-88" @@ -13673,6 +14541,7 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "0" "angles" "-78 90 -180" "pitch" "-78" @@ -13971,6 +14840,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "-12.9425 333.886 -1.95382" "pitch" "-12.9425" "origin" "359.152 987.107 160.262" @@ -15238,6 +16108,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "-12.9425 153.886 -1.95382" "pitch" "-12.9425" "origin" "276.519 1174.34 -421.093" @@ -15290,6 +16161,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "-12.9425 168.5 0" "pitch" "-12.9425" "origin" "161.74 792.1 -491.233" @@ -16177,6 +17049,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "-12.9425 153.886 -1.95382" "pitch" "-12.9425" "origin" "320.694 1158.7 -786.967" @@ -16830,6 +17703,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "-12.9425 153.886 -1.95382" "pitch" "-12.9425" "origin" "386.181 1145.38 -1294.59" @@ -17277,6 +18151,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 0 0" "origin" "132.008 993.54 -1502.82" editor @@ -17448,6 +18323,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "-12.9425 153.886 -1.95382" "pitch" "-12.9425" "origin" "225.907 799.47 -1386.87" @@ -18144,6 +19020,7 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "0" "angles" "0 0 0" "spawnflags" "0" @@ -18912,6 +19789,9 @@ entity "id" "129236" "classname" "ambient_generic" "angles" "0 0 0" + "haddons_enabled" "-1" + "haddons_infrange" "-1" + "haddons_mode" "-1" "health" "10" "message" "cavejohnson.DLC2_multiverse_transition" "pitch" "100" @@ -18960,6 +19840,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 0 0" "origin" "96 1152 160" editor @@ -19020,6 +19901,7 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "0" "angles" "0 0 0" "spawnflags" "0" @@ -19038,8 +19920,8 @@ cameras "activecamera" "0" camera { - "position" "[-583.235 2646.41 -642.368]" - "look" "[-619.596 2597.8 -659.775]" + "position" "[-749.89 130.502 -803.773]" + "look" "[-758.009 191.343 -818.623]" } camera { diff --git a/packages/styles/oldAp/resources/instances/50s/sphere_sp/sphere/pipes_lower_2.vmf b/packages/styles/oldAp/resources/instances/50s/sphere_sp/sphere/pipes_lower_2.vmf index 2070e72180..d8f4d08a5b 100644 --- a/packages/styles/oldAp/resources/instances/50s/sphere_sp/sphere/pipes_lower_2.vmf +++ b/packages/styles/oldAp/resources/instances/50s/sphere_sp/sphere/pipes_lower_2.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8973" - "mapversion" "1" + "editorbuild" "9672" + "mapversion" "3" "formatversion" "100" "prefab" "0" } @@ -20,13 +20,45 @@ viewsettings world { "id" "1" - "mapversion" "1" + "mapversion" "3" "classname" "worldspawn" - "skyname" "sky_black_nofog" - "maxpropscreenwidth" "-1" - "detailvbsp" "detail.vbsp" "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" +} +entity +{ + "id" "90" + "classname" "prop_static" + "angles" "0 180 -90" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "1" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_underground/tube_paint_128_flex.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "rendermode" "0" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "-576 2176 -960" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[7500 -1768]" + } } entity { @@ -83,7 +115,7 @@ entity "screenspacefade" "0" "skin" "0" "solid" "6" - "origin" "-512 2176 -960" + "origin" "-384 2176 -960" editor { "color" "255 255 0" @@ -96,7 +128,7 @@ entity { "id" "10" "classname" "prop_static" - "angles" "0 180 180" + "angles" "0 180 -180" "disableselfshadowing" "0" "disablevertexlighting" "0" "drawinfastreflection" "1" @@ -115,7 +147,7 @@ entity "screenspacefade" "0" "skin" "0" "solid" "6" - "origin" "-384 2176 -960" + "origin" "-256 2176 -960" editor { "color" "255 255 0" @@ -147,7 +179,7 @@ entity "screenspacefade" "0" "skin" "0" "solid" "6" - "origin" "-256 2240 -960" + "origin" "-128 2240 -960" editor { "color" "255 255 0" diff --git a/packages/styles/oldAp/resources/instances/50s/sphere_sp/sphere/pipes_upper_2.vmf b/packages/styles/oldAp/resources/instances/50s/sphere_sp/sphere/pipes_upper_2.vmf index 397b8a427a..0c3aa24e0f 100644 --- a/packages/styles/oldAp/resources/instances/50s/sphere_sp/sphere/pipes_upper_2.vmf +++ b/packages/styles/oldAp/resources/instances/50s/sphere_sp/sphere/pipes_upper_2.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8973" - "mapversion" "10" + "editorbuild" "9672" + "mapversion" "11" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "10" + "mapversion" "11" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -75,14 +75,14 @@ entity "maxgpulevel" "0" "mincpulevel" "0" "mingpulevel" "0" - "model" "models/props_underground/tube_paint_512a.mdl" + "model" "models/props_underground/tube_paint_256a.mdl" "renderamt" "255" "rendercolor" "$color" "rendermode" "0" "screenspacefade" "0" "skin" "0" "solid" "6" - "origin" "-643 702 1681" + "origin" "-643 702 1553" editor { "color" "255 255 0" diff --git a/packages/styles/oldAp/resources/instances/50s/sphere_sp/sphere/pipes_upper_3.vmf b/packages/styles/oldAp/resources/instances/50s/sphere_sp/sphere/pipes_upper_3.vmf index c7982d5bef..236670ea52 100644 --- a/packages/styles/oldAp/resources/instances/50s/sphere_sp/sphere/pipes_upper_3.vmf +++ b/packages/styles/oldAp/resources/instances/50s/sphere_sp/sphere/pipes_upper_3.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8973" - "mapversion" "1" + "editorbuild" "9672" + "mapversion" "2" "formatversion" "100" "prefab" "0" } @@ -20,13 +20,13 @@ viewsettings world { "id" "1" - "mapversion" "1" + "mapversion" "2" "classname" "worldspawn" - "skyname" "sky_black_nofog" - "maxpropscreenwidth" "-1" - "detailvbsp" "detail.vbsp" "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" } entity { @@ -44,14 +44,14 @@ entity "maxgpulevel" "0" "mincpulevel" "0" "mingpulevel" "0" - "model" "models/props_underground/tube_paint_512a.mdl" + "model" "models/props_underground/tube_paint_128a.mdl" "renderamt" "255" "rendercolor" "$color" "rendermode" "0" "screenspacefade" "0" "skin" "0" "solid" "6" - "origin" "-1728 384 1600" + "origin" "-1728 384 896" editor { "color" "255 255 0" @@ -83,7 +83,7 @@ entity "screenspacefade" "0" "skin" "0" "solid" "6" - "origin" "-1728 384 1088" + "origin" "-1728 384 1216" editor { "color" "255 255 0" diff --git a/packages/styles/oldAp/resources/instances/50s/sphere_sp/sphere/pipes_upper_4.vmf b/packages/styles/oldAp/resources/instances/50s/sphere_sp/sphere/pipes_upper_4.vmf index 93191040cf..aa303dc2a6 100644 --- a/packages/styles/oldAp/resources/instances/50s/sphere_sp/sphere/pipes_upper_4.vmf +++ b/packages/styles/oldAp/resources/instances/50s/sphere_sp/sphere/pipes_upper_4.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8973" - "mapversion" "1" + "editorbuild" "9672" + "mapversion" "2" "formatversion" "100" "prefab" "0" } @@ -20,13 +20,13 @@ viewsettings world { "id" "1" - "mapversion" "1" + "mapversion" "2" "classname" "worldspawn" - "skyname" "sky_black_nofog" - "maxpropscreenwidth" "-1" - "detailvbsp" "detail.vbsp" "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" } entity { @@ -252,38 +252,6 @@ entity "logicalpos" "[7500 -1768]" } } -entity -{ - "id" "62" - "classname" "prop_static" - "angles" "90 0 0" - "disableselfshadowing" "0" - "disablevertexlighting" "0" - "drawinfastreflection" "1" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxcpulevel" "0" - "maxgpulevel" "0" - "mincpulevel" "0" - "mingpulevel" "0" - "model" "models/props_underground/tube_paint_128a.mdl" - "renderamt" "255" - "rendercolor" "$color" - "rendermode" "0" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "-960 1024 1792" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[7500 -1768]" - } -} cameras { "activecamera" "-1" diff --git a/packages/styles/oldAp/resources/instances/60s/sphere_coop/spawn_room.vmf b/packages/styles/oldAp/resources/instances/60s/sphere_coop/spawn_room.vmf index afb2a1f703..21d7e89744 100644 --- a/packages/styles/oldAp/resources/instances/60s/sphere_coop/spawn_room.vmf +++ b/packages/styles/oldAp/resources/instances/60s/sphere_coop/spawn_room.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8997" - "mapversion" "441" + "editorbuild" "9672" + "mapversion" "442" "formatversion" "100" "prefab" "0" } @@ -26,7 +26,7 @@ viewsettings world { "id" "1" - "mapversion" "441" + "mapversion" "442" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -34,6 +34,386 @@ world "maxpropscreenwidth" "-1" "skyname" "sky_day01_01" solid + { + "id" "51512" + side + { + "id" "7688" + "plane" "(-568 188 -96) (-568 188 -144) (-72 188 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7687" + "plane" "(-72 188 -96) (-72 188 -144) (-72 184 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7686" + "plane" "(-568 184 -96) (-568 184 -144) (-568 188 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7685" + "plane" "(-72 188 -144) (-568 188 -144) (-568 184 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7684" + "plane" "(-72 184 -96) (-72 184 -144) (-568 184 -144)" + "material" "TOOLS/TOOLSBLACK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7683" + "plane" "(-568 184 -96) (-568 188 -96) (-72 188 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 144 185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "51513" + side + { + "id" "7694" + "plane" "(-68 184 -96) (-68 184 -144) (-68 -184 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7693" + "plane" "(-68 -184 -144) (-68 184 -144) (-72 184 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7692" + "plane" "(-72 184 -96) (-72 184 -144) (-68 184 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7691" + "plane" "(-72 -184 -96) (-72 -184 -144) (-72 184 -144)" + "material" "TOOLS/TOOLSBLACK" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7690" + "plane" "(-68 -184 -96) (-68 -184 -144) (-72 -184 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7689" + "plane" "(-72 -184 -96) (-72 184 -96) (-68 184 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 174 143" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "51514" + side + { + "id" "7700" + "plane" "(-72 -188 -96) (-72 -188 -144) (-568 -188 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7699" + "plane" "(-72 -184 -96) (-72 -184 -144) (-72 -188 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7698" + "plane" "(-568 -188 -96) (-568 -188 -144) (-568 -184 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7697" + "plane" "(-568 -184 -144) (-568 -188 -144) (-72 -188 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7696" + "plane" "(-568 -184 -96) (-568 -184 -144) (-72 -184 -144)" + "material" "TOOLS/TOOLSBLACK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7695" + "plane" "(-72 -188 -96) (-568 -188 -96) (-568 -184 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 100 141" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "51515" + side + { + "id" "7706" + "plane" "(-572 184 -144) (-568 184 -144) (-568 184 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7705" + "plane" "(-568 -184 -144) (-572 -184 -144) (-572 -184 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7704" + "plane" "(-568 184 -144) (-572 184 -144) (-572 -184 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 40] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7703" + "plane" "(-568 -184 -96) (-572 -184 -96) (-572 184 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 40] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7702" + "plane" "(-568 184 -96) (-568 184 -144) (-568 -184 -144)" + "material" "TOOLS/TOOLSBLACK" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7701" + "plane" "(-572 -184 -96) (-572 -184 -144) (-572 184 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 254 207" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "51516" + side + { + "id" "7712" + "plane" "(-72 184 -152) (-568 184 -152) (-568 -184 -152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7711" + "plane" "(-568 184 -144) (-568 184 -152) (-72 184 -152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7710" + "plane" "(-72 184 -144) (-72 184 -152) (-72 -184 -152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7709" + "plane" "(-568 -184 -152) (-568 184 -152) (-568 184 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7708" + "plane" "(-568 -184 -144) (-568 184 -144) (-72 184 -144)" + "material" "BEE2/GOO/OLDAP_FAKE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7707" + "plane" "(-72 -184 -144) (-72 -184 -152) (-568 -184 -152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 112 237" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid { "id" "49094" side @@ -581,225 +961,8 @@ world } side { - "id" "5718" - "plane" "(-64 64 192) (-68 64 196) (-68 64 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5717" - "plane" "(-68 -64 192) (-68 -64 196) (-64 -64 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 250 239" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "27249" - side - { - "id" "5736" - "plane" "(-64 64 192) (-68 68 192) (-68 68 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5735" - "plane" "(-68 64 -64) (-68 68 -64) (-68 68 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5734" - "plane" "(-64 64 -64) (-68 68 -64) (-68 64 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5733" - "plane" "(-68 64 192) (-68 68 192) (-64 64 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5732" - "plane" "(-68 64 -64) (-68 64 192) (-64 64 192)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[1 0 0 317] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 192 225" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "27251" - side - { - "id" "5747" - "plane" "(-68 72 62) (-68 72 -64) (-68 26 -64)" - "material" "CONCRETE/CONCRETE_BTS_FLOOR001A" - "uaxis" "[0 -1 0 -256] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5746" - "plane" "(-72 72 62) (-72 72 -64) (-68 72 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5745" - "plane" "(-72 72 -64) (-72 72 62) (-72 26 62)" - "material" "CONCRETE/CONCRETE_BTS_FLOOR001A" - "uaxis" "[0 -1 0 -256] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5744" - "plane" "(-72 26 62) (-72 72 62) (-68 72 62)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5743" - "plane" "(-72 26 -64) (-72 26 62) (-68 26 62)" - "material" "CONCRETE/CONCRETE_BTS_FLOOR001A" - "uaxis" "[1 0 0 256] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5742" - "plane" "(-68 26 -64) (-68 72 -64) (-72 72 -64)" - "material" "CONCRETE/CONCRETE_BTS_FLOOR001A" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 172 101" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "27252" - side - { - "id" "5753" - "plane" "(-68 188 -96) (-68 188 -188) (-68 -184 -188)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5752" - "plane" "(-68 -184 -188) (-68 188 -188) (-72 188 -188)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 -16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5751" - "plane" "(-72 188 -96) (-72 188 -188) (-68 188 -188)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5750" - "plane" "(-72 -184 -96) (-72 -184 -188) (-72 188 -188)" - "material" "TOOLS/TOOLSBLACK" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5749" - "plane" "(-68 -184 -96) (-68 -184 -188) (-72 -184 -188)" + "id" "5718" + "plane" "(-64 64 192) (-68 64 196) (-68 64 192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -809,42 +972,31 @@ world } side { - "id" "5748" - "plane" "(-72 -184 -96) (-72 188 -96) (-68 188 -96)" + "id" "5717" + "plane" "(-68 -64 192) (-68 -64 196) (-64 -64 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 174 143" + "color" "0 250 239" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "27253" - side - { - "id" "5759" - "plane" "(-72 188 -188) (-568 188 -188) (-568 -188 -188)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 -16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "27249" side { - "id" "5758" - "plane" "(-568 188 -184) (-568 188 -188) (-72 188 -188)" + "id" "5736" + "plane" "(-64 64 192) (-68 68 192) (-68 68 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -852,8 +1004,8 @@ world } side { - "id" "5757" - "plane" "(-72 188 -184) (-72 188 -188) (-72 -188 -188)" + "id" "5735" + "plane" "(-68 64 -64) (-68 68 -64) (-68 68 192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -863,20 +1015,20 @@ world } side { - "id" "5756" - "plane" "(-568 -188 -188) (-568 188 -188) (-568 188 -184)" + "id" "5734" + "plane" "(-64 64 -64) (-68 68 -64) (-68 64 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5755" - "plane" "(-568 -188 -184) (-568 188 -184) (-72 188 -184)" - "material" "TOOLS/TOOLSBLACK" + "id" "5733" + "plane" "(-68 64 192) (-68 68 192) (-64 64 192)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" @@ -885,42 +1037,42 @@ world } side { - "id" "5754" - "plane" "(-72 -188 -188) (-568 -188 -188) (-568 -188 -184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "5732" + "plane" "(-68 64 -64) (-68 64 192) (-64 64 192)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 317] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 112 237" + "color" "0 192 225" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "27255" + "id" "27251" side { - "id" "5771" - "plane" "(-568 188 -96) (-568 188 -184) (-72 188 -184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "5747" + "plane" "(-68 72 62) (-68 72 -64) (-68 26 -64)" + "material" "CONCRETE/CONCRETE_BTS_FLOOR001A" + "uaxis" "[0 -1 0 -256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5770" - "plane" "(-72 188 -96) (-72 188 -184) (-72 184 -184)" + "id" "5746" + "plane" "(-72 72 62) (-72 72 -64) (-68 72 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -928,19 +1080,19 @@ world } side { - "id" "5769" - "plane" "(-568 184 -96) (-568 184 -184) (-568 188 -184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "5745" + "plane" "(-72 72 -64) (-72 72 62) (-72 26 62)" + "material" "CONCRETE/CONCRETE_BTS_FLOOR001A" + "uaxis" "[0 -1 0 -256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5768" - "plane" "(-72 188 -184) (-568 188 -184) (-568 184 -184)" + "id" "5744" + "plane" "(-72 26 62) (-72 72 62) (-68 72 62)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -950,20 +1102,20 @@ world } side { - "id" "5767" - "plane" "(-568 184 -184) (-568 184 -96) (-72 184 -96)" - "material" "TOOLS/TOOLSBLACK" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "5743" + "plane" "(-72 26 -64) (-72 26 62) (-68 26 62)" + "material" "CONCRETE/CONCRETE_BTS_FLOOR001A" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5766" - "plane" "(-568 184 -96) (-568 188 -96) (-72 188 -96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "5742" + "plane" "(-68 26 -64) (-68 72 -64) (-72 72 -64)" + "material" "CONCRETE/CONCRETE_BTS_FLOOR001A" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" @@ -972,7 +1124,7 @@ world } editor { - "color" "0 144 185" + "color" "0 172 101" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -1054,82 +1206,6 @@ world } } solid - { - "id" "27257" - side - { - "id" "5783" - "plane" "(-568 -188 -184) (-568 -188 -96) (-72 -188 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5782" - "plane" "(-72 -184 -96) (-72 -184 -184) (-72 -188 -184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5781" - "plane" "(-568 -188 -96) (-568 -188 -184) (-568 -184 -184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5780" - "plane" "(-568 -184 -184) (-568 -188 -184) (-72 -188 -184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5779" - "plane" "(-568 -184 -96) (-568 -184 -184) (-72 -184 -184)" - "material" "TOOLS/TOOLSBLACK" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5778" - "plane" "(-72 -188 -96) (-568 -188 -96) (-568 -184 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 100 141" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid { "id" "27258" side @@ -1206,82 +1282,6 @@ world } } solid - { - "id" "27262" - side - { - "id" "5813" - "plane" "(-572 -188 -96) (-572 -188 -188) (-572 188 -188)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5812" - "plane" "(-572 188 -188) (-572 -188 -188) (-568 -188 -188)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 -16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5811" - "plane" "(-568 -188 -188) (-572 -188 -188) (-572 -188 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5810" - "plane" "(-568 188 -96) (-568 188 -188) (-568 -188 -188)" - "material" "TOOLS/TOOLSBLACK" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5809" - "plane" "(-572 188 -96) (-572 188 -188) (-568 188 -188)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5808" - "plane" "(-568 -188 -96) (-572 -188 -96) (-572 188 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 198 175" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid { "id" "27263" side @@ -1358,82 +1358,6 @@ world } } solid - { - "id" "27264" - side - { - "id" "5825" - "plane" "(-568 -184 -160) (-568 -184 -184) (-568 184 -184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 47.996] 0.25" - "vaxis" "[0 1 0 -31.0233] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5824" - "plane" "(-72 184 -160) (-72 184 -184) (-72 -184 -184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 47.996] 0.25" - "vaxis" "[0 1 0 -31.0233] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5823" - "plane" "(-568 -184 -184) (-568 -184 -160) (-72 -184 -160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -52.9218] 0.25" - "vaxis" "[0 0 -1 -15.996] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5822" - "plane" "(-568 184 -160) (-568 184 -184) (-72 184 -184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 52.9218] 0.25" - "vaxis" "[0 0 -1 -15.996] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5821" - "plane" "(-568 184 -184) (-568 -184 -184) (-72 -184 -184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 31.0233] 0.25" - "vaxis" "[-1 0 0 -52.9218] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5820" - "plane" "(-568 -184 -160) (-568 184 -160) (-72 184 -160)" - "material" "LIQUIDS/WATER_UNDERGROUND_CAVE" - "uaxis" "[1 0 0 215.308] 4" - "vaxis" "[0 -1 0 701.939] 4" - "rotation" "0" - "lightmapscale" "32" - "smoothing_groups" "0" - } - editor - { - "color" "0 206 191" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid { "id" "27439" side @@ -3455,6 +3379,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "-45 270 180" "pitch" "-45" "origin" "-182 120 202" @@ -3477,6 +3402,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "-45 270 180" "pitch" "-45" "origin" "-230 120 202" @@ -3999,6 +3925,7 @@ entity "_lightscaleHDR" "1" "_linear_attn" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "0" "angles" "0 0 0" "style" "0" @@ -4044,6 +3971,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 315 90" "pitch" "0" "origin" "-375 176 120" @@ -4064,6 +3992,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 0 0" "origin" "-373 169 168" editor @@ -4082,6 +4011,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 0 0" "origin" "-373 169 120" editor @@ -4103,6 +4033,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 315 90" "pitch" "0" "origin" "-369 176 168" @@ -4144,6 +4075,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 0 0" "origin" "-229.674 117 193.125" editor @@ -4162,6 +4094,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 0 0" "origin" "-181.674 117 193.125" editor @@ -4181,6 +4114,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "300" "angles" "0 0 0" "origin" "-392 -88 152" @@ -4387,6 +4321,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "300" "angles" "0 0 0" "origin" "-200 -88 152" @@ -4898,6 +4833,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "-45 0 180" "pitch" "-45" "origin" "-535 68 202" @@ -4917,6 +4853,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 0 0" "origin" "-533 20 194" editor @@ -4935,6 +4872,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 0 0" "origin" "-533 68 194" editor @@ -4956,6 +4894,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "-45 0 180" "pitch" "-45" "origin" "-529 20 202" diff --git a/packages/styles/oldAp/resources/instances/70s/items/stairs.vmf b/packages/styles/oldAp/resources/instances/70s/items/stairs.vmf index 358725ea61..6eafffd738 100644 --- a/packages/styles/oldAp/resources/instances/70s/items/stairs.vmf +++ b/packages/styles/oldAp/resources/instances/70s/items/stairs.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8419" - "mapversion" "92" + "editorbuild" "9672" + "mapversion" "93" "formatversion" "100" "prefab" "0" } @@ -26,7 +26,7 @@ viewsettings world { "id" "1" - "mapversion" "92" + "mapversion" "93" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -546,26 +546,7 @@ world } entity { - "id" "3345" - "classname" "logic_auto" - "angles" "0 0 0" - "spawnflags" "1" - connections - { - "OnMapSpawn" "stairSetAnimationopen01" - } - "origin" "64 32 -48" - editor - { - "color" "0 100 250" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "3107" + "id" "3408" "classname" "prop_dynamic" "angles" "0 270 0" "body" "0" @@ -612,6 +593,8 @@ entity "OnUser1" "stairSetPlaybackRate-10.05-1" "OnUser2" "stairSetPlaybackRate10.05-1" "OnUser2" "motor_rotOpen0-1" + "OnUser2" "noportalActivate0.05-1" + "OnUser1" "noportalDeactivate0.05-1" } "origin" "64 0 -64" editor @@ -623,6 +606,307 @@ entity } } entity +{ + "id" "3413" + "classname" "func_noportal_volume" + "origin" "64 0 -64" + "parent_attachment_point" "stair_5" + "parentname" "stair" + "spawnflags" "1" + "targetname" "noportal" + solid + { + "id" "3414" + side + { + "id" "784" + "plane" "(40 56 -60) (88 56 -60) (88 -56 -60)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.05" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "783" + "plane" "(40 -56 -68) (88 -56 -68) (88 56 -68)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.05" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "782" + "plane" "(40 56 -60) (40 -56 -60) (40 -56 -68)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -27.0793] 0.0175439" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "781" + "plane" "(88 56 -68) (88 -56 -68) (88 -56 -60)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -27.0793] 0.0175439" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "780" + "plane" "(88 56 -60) (40 56 -60) (40 56 -68)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.05" + "vaxis" "[0 0 -1 -27.0793] 0.0175439" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "779" + "plane" "(88 -56 -68) (40 -56 -68) (40 -56 -60)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.05" + "vaxis" "[0 0 -1 -27.0793] 0.0175439" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "comments" "Prevent portals being placed while extended. Since the steps are planar portals can stretch across. We need multiple because it uses the AABB, this covers all portal placements." + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "3416" + "classname" "func_noportal_volume" + "origin" "160 0 -64" + "parent_attachment_point" "stair_7" + "parentname" "stair" + "spawnflags" "1" + "targetname" "noportal" + solid + { + "id" "3417" + side + { + "id" "790" + "plane" "(136 56 -60) (184 56 -60) (184 -56 -60)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.05" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "789" + "plane" "(136 -56 -68) (184 -56 -68) (184 56 -68)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.05" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "788" + "plane" "(136 56 -60) (136 -56 -60) (136 -56 -68)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -27.0793] 0.0175439" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "787" + "plane" "(184 56 -68) (184 -56 -68) (184 -56 -60)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -27.0793] 0.0175439" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "786" + "plane" "(184 56 -60) (136 56 -60) (136 56 -68)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.05" + "vaxis" "[0 0 -1 -27.0793] 0.0175439" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "785" + "plane" "(184 -56 -68) (136 -56 -68) (136 -56 -60)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.05" + "vaxis" "[0 0 -1 -27.0793] 0.0175439" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "comments" "Prevent portals being placed while extended. Since the steps are planar portals can stretch across. We need multiple because it uses the AABB, this covers all portal placements." + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "3419" + "classname" "func_noportal_volume" + "origin" "-32 0 -64" + "parent_attachment_point" "stair_2" + "parentname" "stair" + "spawnflags" "1" + "targetname" "noportal" + solid + { + "id" "3420" + side + { + "id" "796" + "plane" "(-56 56 -60) (-8 56 -60) (-8 -56 -60)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.05" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "795" + "plane" "(-56 -56 -68) (-8 -56 -68) (-8 56 -68)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.05" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "794" + "plane" "(-56 56 -60) (-56 -56 -60) (-56 -56 -68)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -27.0793] 0.0175439" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "793" + "plane" "(-8 56 -68) (-8 -56 -68) (-8 -56 -60)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -27.0793] 0.0175439" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "792" + "plane" "(-8 56 -60) (-56 56 -60) (-56 56 -68)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.05" + "vaxis" "[0 0 -1 -27.0793] 0.0175439" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "791" + "plane" "(-8 -56 -68) (-56 -56 -68) (-56 -56 -60)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.05" + "vaxis" "[0 0 -1 -27.0793] 0.0175439" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "comments" "Prevent portals being placed while extended. Since the steps are planar portals can stretch across. We need multiple because it uses the AABB, this covers all portal placements." + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "3345" + "classname" "logic_auto" + "angles" "0 0 0" + "spawnflags" "1" + connections + { + "OnMapSpawn" "stairSetAnimationopen01" + } + "origin" "64 32 -48" + editor + { + "color" "0 100 250" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity { "id" "816" "classname" "func_instance_parms" diff --git a/packages/styles/oldAp/resources/instances/70s/sphere_coop/spawn_room.vmf b/packages/styles/oldAp/resources/instances/70s/sphere_coop/spawn_room.vmf index e2e6832484..e159cadc0c 100644 --- a/packages/styles/oldAp/resources/instances/70s/sphere_coop/spawn_room.vmf +++ b/packages/styles/oldAp/resources/instances/70s/sphere_coop/spawn_room.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8997" - "mapversion" "550" + "editorbuild" "9672" + "mapversion" "552" "formatversion" "100" "prefab" "0" } @@ -38,7 +38,7 @@ viewsettings world { "id" "1" - "mapversion" "550" + "mapversion" "552" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -47,24 +47,24 @@ world "skyname" "sky_day01_01" solid { - "id" "72242" + "id" "72649" side { - "id" "8034" - "plane" "(-552 184 -64) (-552 168 -64) (-424 168 -64)" + "id" "8178" + "plane" "(-568 188 -96) (-568 188 -144) (-72 188 -144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "8033" - "plane" "(-552 168 320) (-552 168 -64) (-552 184 -64)" + "id" "8177" + "plane" "(-72 188 -96) (-72 188 -144) (-72 184 -144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -72,10 +72,10 @@ world } side { - "id" "8032" - "plane" "(-424 184 -64) (-424 168 -64) (-424 168 320)" + "id" "8176" + "plane" "(-568 184 -96) (-568 184 -144) (-568 188 -144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32.01] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -83,75 +83,75 @@ world } side { - "id" "8031" - "plane" "(-424 168 -64) (-552 168 -64) (-552 168 320)" - "material" "METAL/UNDERGROUND_WALL_METAL004B_BOTTOM" - "uaxis" "[1 0 0 160] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" + "id" "8175" + "plane" "(-72 188 -144) (-568 188 -144) (-568 184 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" - "lightmapscale" "8" + "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "8030" - "plane" "(-552 168 320) (-552 184 320) (-424 184 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "id" "8174" + "plane" "(-72 184 -96) (-72 184 -144) (-568 184 -144)" + "material" "TOOLS/TOOLSBLACK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "8029" - "plane" "(-552 184 320) (-552 184 -64) (-424 184 -64)" + "id" "8173" + "plane" "(-568 184 -96) (-568 188 -96) (-72 188 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 224 117" + "color" "0 144 185" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "64811" + "id" "72650" side { - "id" "7627" - "plane" "(-360 -120 444) (-424 -120 444) (-424 -56 444)" + "id" "8184" + "plane" "(-68 184 -96) (-68 184 -144) (-68 -184 -144)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7626" - "plane" "(-424 -120 440) (-424 -120 444) (-360 -120 444)" + "id" "8183" + "plane" "(-68 -184 -144) (-68 184 -144) (-72 184 -144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7625" - "plane" "(-360 -56 440) (-360 -120 440) (-360 -120 444)" + "id" "8182" + "plane" "(-72 184 -96) (-72 184 -144) (-68 184 -144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -159,9 +159,9 @@ world } side { - "id" "7624" - "plane" "(-424 -56 444) (-424 -120 444) (-424 -120 440)" - "material" "TOOLS/TOOLSNODRAW" + "id" "8181" + "plane" "(-72 -184 -96) (-72 -184 -144) (-72 184 -144)" + "material" "TOOLS/TOOLSBLACK" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -170,64 +170,64 @@ world } side { - "id" "7623" - "plane" "(-424 -56 440) (-424 -120 440) (-360 -120 440)" - "material" "TOOLS/TOOLSBLACK" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "8180" + "plane" "(-68 -184 -96) (-68 -184 -144) (-72 -184 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7622" - "plane" "(-360 -56 444) (-424 -56 444) (-424 -56 440)" + "id" "8179" + "plane" "(-72 -184 -96) (-72 184 -96) (-68 184 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 184 237" + "color" "0 174 143" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "64895" + "id" "72651" side { - "id" "7639" - "plane" "(-360 -120 280) (-232 -120 280) (-232 -56 280)" - "material" "WOOD/UNDERGROUND_PLYWOOD_01A_BOTTOM" - "uaxis" "[0 -1 0 -640] 0.25" - "vaxis" "[-1 0 0 -256] 0.25" + "id" "8190" + "plane" "(-72 -188 -64) (-72 -188 -144) (-568 -188 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7638" - "plane" "(-232 -56 320) (-232 -56 280) (-232 -120 280)" - "material" "METAL/UNDERGROUND_WALL_METAL001A" - "uaxis" "[0 -1 0 -128] 0.25" - "vaxis" "[0 0 -1 256] 0.25" + "id" "8189" + "plane" "(-72 -184 -64) (-72 -184 -144) (-72 -188 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7637" - "plane" "(-232 -120 280) (-360 -120 280) (-360 -120 320)" + "id" "8188" + "plane" "(-568 -188 -64) (-568 -188 -144) (-568 -184 -144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -235,216 +235,216 @@ world } side { - "id" "7636" - "plane" "(-360 -56 320) (-360 -56 280) (-232 -56 280)" + "id" "8187" + "plane" "(-568 -184 -144) (-568 -188 -144) (-72 -188 -144)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7635" - "plane" "(-360 -120 320) (-360 -120 280) (-360 -56 280)" - "material" "METAL/UNDERGROUND_WALL_METAL001A" - "uaxis" "[0 -1 0 -128] 0.25" - "vaxis" "[0 0 -1 256] 0.25" + "id" "8186" + "plane" "(-568 -184 -64) (-568 -184 -144) (-72 -184 -144)" + "material" "TOOLS/TOOLSBLACK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7634" - "plane" "(-360 -56 320) (-232 -56 320) (-232 -120 320)" + "id" "8185" + "plane" "(-72 -188 -64) (-568 -188 -64) (-568 -184 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 152 209" + "color" "0 100 141" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "64898" + "id" "72652" side { - "id" "7657" - "plane" "(-424 -120 440) (-432 -120 440) (-432 -56 440)" + "id" "8196" + "plane" "(-572 184 -144) (-568 184 -144) (-568 184 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 -40] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7656" - "plane" "(-432 -56 320) (-432 -56 440) (-432 -120 440)" + "id" "8195" + "plane" "(-568 -184 -144) (-572 -184 -144) (-572 -184 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 -40] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7655" - "plane" "(-432 -120 320) (-432 -120 440) (-424 -120 440)" + "id" "8194" + "plane" "(-568 184 -144) (-572 184 -144) (-572 -184 -144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 40] 0.25" + "vaxis" "[0 -1 0 40] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7654" - "plane" "(-424 -56 440) (-432 -56 440) (-432 -56 320)" + "id" "8193" + "plane" "(-568 -184 -96) (-572 -184 -96) (-572 184 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 40] 0.25" + "vaxis" "[0 -1 0 40] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7653" - "plane" "(-424 -120 320) (-424 -120 440) (-424 -56 440)" - "material" "METAL/UNDERGROUND_WALL_METAL001A" - "uaxis" "[0 -1 0 -128] 0.25" - "vaxis" "[0 0 -1 256] 0.25" + "id" "8192" + "plane" "(-568 184 -96) (-568 184 -144) (-568 -184 -144)" + "material" "TOOLS/TOOLSBLACK" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7652" - "plane" "(-424 -56 320) (-432 -56 320) (-432 -120 320)" + "id" "8191" + "plane" "(-572 -184 -96) (-572 -184 -144) (-572 184 -144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 40] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 200 149" + "color" "0 254 207" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "64901" + "id" "72653" side { - "id" "7675" - "plane" "(-488 8.00004 280) (-104 8.00001 280) (-104 8.00001 320)" - "material" "METAL/UNDERGROUND_WALL_METAL004B" - "uaxis" "[1 0 0 96] 0.25" - "vaxis" "[0 0 -1 128] 0.25" + "id" "8202" + "plane" "(-72 184 -152) (-568 184 -152) (-568 -184 -152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7674" - "plane" "(-488 8.00004 280) (-488 -56 280) (-104 -56 280)" - "material" "WOOD/UNDERGROUND_PLYWOOD_01A_BOTTOM" - "uaxis" "[0 -1 0 -640] 0.25" - "vaxis" "[-1 0 0 -256] 0.25" + "id" "8201" + "plane" "(-568 184 -144) (-568 184 -152) (-72 184 -152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7673" - "plane" "(-104 8.00001 280) (-104 -56 280) (-104 -56 320)" - "material" "METAL/UNDERGROUND_WALL_METAL004B" - "uaxis" "[0 -1 0 -416] 0.25" - "vaxis" "[0 0 -1 -128] 0.25" + "id" "8200" + "plane" "(-72 184 -144) (-72 184 -152) (-72 -184 -152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7672" - "plane" "(-488 8.00004 280) (-488 8.00004 320) (-488 -56 320)" - "material" "METAL/UNDERGROUND_WALL_METAL004B" - "uaxis" "[0 -1 0 -416] 0.25" - "vaxis" "[0 0 -1 -128] 0.25" + "id" "8199" + "plane" "(-568 -184 -152) (-568 184 -152) (-568 184 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7671" - "plane" "(-488 -56 280) (-488 -56 320) (-104 -56 320)" - "material" "METAL/UNDERGROUND_WALL_METAL001A" - "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 0 -1 256] 0.25" + "id" "8198" + "plane" "(-568 -184 -144) (-568 184 -144) (-72 184 -144)" + "material" "BEE2/GOO/OLDAP_FAKE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7670" - "plane" "(-104 8.00001 320) (-104 -56 320) (-488 -56 320)" + "id" "8197" + "plane" "(-72 -184 -144) (-72 -184 -152) (-568 -184 -152)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 170 179" + "color" "0 112 237" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "64902" + "id" "72242" side { - "id" "7681" - "plane" "(-168 -56 440) (-160 -56 440) (-160 -120 440)" + "id" "8034" + "plane" "(-552 184 -64) (-552 168 -64) (-424 168 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[1 0 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7680" - "plane" "(-160 -120 320) (-160 -120 440) (-160 -56 440)" + "id" "8033" + "plane" "(-552 168 320) (-552 168 -64) (-552 184 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -452,10 +452,10 @@ world } side { - "id" "7679" - "plane" "(-168 -120 320) (-168 -120 440) (-160 -120 440)" + "id" "8032" + "plane" "(-424 184 -64) (-424 168 -64) (-424 168 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 32.01] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -463,75 +463,75 @@ world } side { - "id" "7678" - "plane" "(-160 -56 440) (-168 -56 440) (-168 -56 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8031" + "plane" "(-424 168 -64) (-552 168 -64) (-552 168 320)" + "material" "METAL/UNDERGROUND_WALL_METAL004B_BOTTOM" + "uaxis" "[1 0 0 160] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "8" "smoothing_groups" "0" } side { - "id" "7677" - "plane" "(-168 -56 320) (-168 -56 440) (-168 -120 440)" - "material" "METAL/UNDERGROUND_WALL_METAL001A" - "uaxis" "[0 -1 0 -128] 0.25" - "vaxis" "[0 0 -1 256] 0.25" + "id" "8030" + "plane" "(-552 168 320) (-552 184 320) (-424 184 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[1 0 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7676" - "plane" "(-168 -120 320) (-160 -120 320) (-160 -56 320)" + "id" "8029" + "plane" "(-552 184 320) (-552 184 -64) (-424 184 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 196 245" + "color" "0 224 117" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "64903" + "id" "64811" side { - "id" "7687" - "plane" "(-104 -120 280) (-104 -56 280) (-168 -56 280)" - "material" "WOOD/UNDERGROUND_PLYWOOD_01A_BOTTOM" - "uaxis" "[0 -1 0 -640] 0.25" - "vaxis" "[-1 0 0 -256] 0.25" - "rotation" "0" + "id" "7627" + "plane" "(-360 -120 444) (-424 -120 444) (-424 -56 444)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 -16] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7686" - "plane" "(-104 -56 280) (-104 -120 280) (-104 -120 320)" - "material" "METAL/UNDERGROUND_WALL_METAL004B" - "uaxis" "[0 -1 0 -416] 0.25" - "vaxis" "[0 0 -1 -128] 0.25" + "id" "7626" + "plane" "(-424 -120 440) (-424 -120 444) (-360 -120 444)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7685" - "plane" "(-168 -120 280) (-168 -120 320) (-104 -120 320)" + "id" "7625" + "plane" "(-360 -56 440) (-360 -120 440) (-360 -120 444)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -539,10 +539,10 @@ world } side { - "id" "7684" - "plane" "(-168 -56 280) (-104 -56 280) (-104 -56 320)" + "id" "7624" + "plane" "(-424 -56 444) (-424 -120 444) (-424 -120 440)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -550,64 +550,64 @@ world } side { - "id" "7683" - "plane" "(-168 -120 280) (-168 -56 280) (-168 -56 320)" - "material" "METAL/UNDERGROUND_WALL_METAL001A" - "uaxis" "[0 -1 0 -128] 0.25" - "vaxis" "[0 0 -1 256] 0.25" + "id" "7623" + "plane" "(-424 -56 440) (-424 -120 440) (-360 -120 440)" + "material" "TOOLS/TOOLSBLACK" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7682" - "plane" "(-104 -120 320) (-168 -120 320) (-168 -56 320)" + "id" "7622" + "plane" "(-360 -56 444) (-424 -56 444) (-424 -56 440)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 196 245" + "color" "0 184 237" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "64914" + "id" "64895" side { - "id" "7693" - "plane" "(-360 -128 320) (-424 -128 320) (-424 -128 440)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7639" + "plane" "(-360 -120 280) (-232 -120 280) (-232 -56 280)" + "material" "WOOD/UNDERGROUND_PLYWOOD_01A_BOTTOM" + "uaxis" "[0 -1 0 -640] 0.25" + "vaxis" "[-1 0 0 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7692" - "plane" "(-360 -128 440) (-424 -128 440) (-424 -120 440)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "7638" + "plane" "(-232 -56 320) (-232 -56 280) (-232 -120 280)" + "material" "METAL/UNDERGROUND_WALL_METAL001A" + "uaxis" "[0 -1 0 -128] 0.25" + "vaxis" "[0 0 -1 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7691" - "plane" "(-424 -128 440) (-424 -128 320) (-424 -120 320)" + "id" "7637" + "plane" "(-232 -120 280) (-360 -120 280) (-360 -120 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -615,75 +615,75 @@ world } side { - "id" "7690" - "plane" "(-360 -120 440) (-424 -120 440) (-424 -120 320)" - "material" "METAL/UNDERGROUND_WALL_METAL001A" - "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 0 -1 256] 0.25" + "id" "7636" + "plane" "(-360 -56 320) (-360 -56 280) (-232 -56 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7689" - "plane" "(-360 -120 320) (-424 -120 320) (-424 -128 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "7635" + "plane" "(-360 -120 320) (-360 -120 280) (-360 -56 280)" + "material" "METAL/UNDERGROUND_WALL_METAL001A" + "uaxis" "[0 -1 0 -128] 0.25" + "vaxis" "[0 0 -1 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7688" - "plane" "(-360 -128 320) (-360 -128 440) (-360 -120 440)" + "id" "7634" + "plane" "(-360 -56 320) (-232 -56 320) (-232 -120 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 182 163" + "color" "0 152 209" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "64915" + "id" "64898" side { - "id" "7699" - "plane" "(-232 -128 440) (-168 -128 440) (-168 -128 320)" + "id" "7657" + "plane" "(-424 -120 440) (-432 -120 440) (-432 -56 440)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7698" - "plane" "(-168 -128 440) (-232 -128 440) (-232 -120 440)" + "id" "7656" + "plane" "(-432 -56 320) (-432 -56 440) (-432 -120 440)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7697" - "plane" "(-168 -128 320) (-168 -128 440) (-168 -120 440)" + "id" "7655" + "plane" "(-432 -120 320) (-432 -120 440) (-424 -120 440)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -691,127 +691,127 @@ world } side { - "id" "7696" - "plane" "(-168 -120 440) (-232 -120 440) (-232 -120 320)" - "material" "METAL/UNDERGROUND_WALL_METAL001A" - "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 0 -1 256] 0.25" + "id" "7654" + "plane" "(-424 -56 440) (-432 -56 440) (-432 -56 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7695" - "plane" "(-232 -128 320) (-168 -128 320) (-168 -120 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "7653" + "plane" "(-424 -120 320) (-424 -120 440) (-424 -56 440)" + "material" "METAL/UNDERGROUND_WALL_METAL001A" + "uaxis" "[0 -1 0 -128] 0.25" + "vaxis" "[0 0 -1 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7694" - "plane" "(-232 -128 440) (-232 -128 320) (-232 -120 320)" + "id" "7652" + "plane" "(-424 -56 320) (-432 -56 320) (-432 -120 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 182 163" + "color" "0 200 149" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "64924" + "id" "64901" side { - "id" "7705" - "plane" "(-240 -56 440) (-232 -56 440) (-232 -120 440)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "7675" + "plane" "(-488 8.00004 280) (-104 8.00001 280) (-104 8.00001 320)" + "material" "METAL/UNDERGROUND_WALL_METAL004B" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 0 -1 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7704" - "plane" "(-232 -120 320) (-232 -120 440) (-232 -56 440)" - "material" "METAL/UNDERGROUND_WALL_METAL001A" - "uaxis" "[0 -1 0 -128] 0.25" - "vaxis" "[0 0 -1 256] 0.25" + "id" "7674" + "plane" "(-488 8.00004 280) (-488 -56 280) (-104 -56 280)" + "material" "WOOD/UNDERGROUND_PLYWOOD_01A_BOTTOM" + "uaxis" "[0 -1 0 -640] 0.25" + "vaxis" "[-1 0 0 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7703" - "plane" "(-240 -120 440) (-232 -120 440) (-232 -120 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7673" + "plane" "(-104 8.00001 280) (-104 -56 280) (-104 -56 320)" + "material" "METAL/UNDERGROUND_WALL_METAL004B" + "uaxis" "[0 -1 0 -416] 0.25" + "vaxis" "[0 0 -1 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7702" - "plane" "(-232 -56 440) (-240 -56 440) (-240 -56 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7672" + "plane" "(-488 8.00004 280) (-488 8.00004 320) (-488 -56 320)" + "material" "METAL/UNDERGROUND_WALL_METAL004B" + "uaxis" "[0 -1 0 -416] 0.25" + "vaxis" "[0 0 -1 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7701" - "plane" "(-240 -120 320) (-232 -120 320) (-232 -56 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "7671" + "plane" "(-488 -56 280) (-488 -56 320) (-104 -56 320)" + "material" "METAL/UNDERGROUND_WALL_METAL001A" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 0 -1 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7700" - "plane" "(-240 -56 320) (-240 -56 440) (-240 -120 440)" + "id" "7670" + "plane" "(-104 8.00001 320) (-104 -56 320) (-488 -56 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 152 209" + "color" "0 170 179" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "64925" + "id" "64902" side { - "id" "7711" - "plane" "(-352 -120 440) (-360 -120 440) (-360 -56 440)" + "id" "7681" + "plane" "(-168 -56 440) (-160 -56 440) (-160 -120 440)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -821,8 +821,19 @@ world } side { - "id" "7710" - "plane" "(-352 -120 320) (-360 -120 320) (-360 -120 440)" + "id" "7680" + "plane" "(-160 -120 320) (-160 -120 440) (-160 -56 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7679" + "plane" "(-168 -120 320) (-168 -120 440) (-160 -120 440)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -832,8 +843,8 @@ world } side { - "id" "7709" - "plane" "(-352 -56 440) (-360 -56 440) (-360 -56 320)" + "id" "7678" + "plane" "(-160 -56 440) (-168 -56 440) (-168 -56 320)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -843,8 +854,8 @@ world } side { - "id" "7708" - "plane" "(-360 -56 320) (-360 -56 440) (-360 -120 440)" + "id" "7677" + "plane" "(-168 -56 320) (-168 -56 440) (-168 -120 440)" "material" "METAL/UNDERGROUND_WALL_METAL001A" "uaxis" "[0 -1 0 -128] 0.25" "vaxis" "[0 0 -1 256] 0.25" @@ -854,8 +865,8 @@ world } side { - "id" "7707" - "plane" "(-352 -56 320) (-360 -56 320) (-360 -120 320)" + "id" "7676" + "plane" "(-168 -120 320) (-160 -120 320) (-160 -56 320)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -863,55 +874,44 @@ world "lightmapscale" "16" "smoothing_groups" "0" } - side - { - "id" "7706" - "plane" "(-352 -120 320) (-352 -120 440) (-352 -56 440)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } editor { - "color" "0 152 209" + "color" "0 196 245" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "64947" + "id" "64903" side { - "id" "7735" - "plane" "(-360 -48 440) (-424 -48 440) (-424 -48 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7687" + "plane" "(-104 -120 280) (-104 -56 280) (-168 -56 280)" + "material" "WOOD/UNDERGROUND_PLYWOOD_01A_BOTTOM" + "uaxis" "[0 -1 0 -640] 0.25" + "vaxis" "[-1 0 0 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7734" - "plane" "(-360 -56 440) (-424 -56 440) (-424 -48 440)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "7686" + "plane" "(-104 -56 280) (-104 -120 280) (-104 -120 320)" + "material" "METAL/UNDERGROUND_WALL_METAL004B" + "uaxis" "[0 -1 0 -416] 0.25" + "vaxis" "[0 0 -1 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7733" - "plane" "(-424 -48 320) (-424 -48 440) (-424 -56 440)" + "id" "7685" + "plane" "(-168 -120 280) (-168 -120 320) (-104 -120 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -919,51 +919,51 @@ world } side { - "id" "7732" - "plane" "(-360 -56 320) (-424 -56 320) (-424 -56 440)" - "material" "METAL/UNDERGROUND_WALL_METAL001A" - "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 0 -1 256] 0.25" + "id" "7684" + "plane" "(-168 -56 280) (-104 -56 280) (-104 -56 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7731" - "plane" "(-360 -48 320) (-424 -48 320) (-424 -56 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "7683" + "plane" "(-168 -120 280) (-168 -56 280) (-168 -56 320)" + "material" "METAL/UNDERGROUND_WALL_METAL001A" + "uaxis" "[0 -1 0 -128] 0.25" + "vaxis" "[0 0 -1 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7730" - "plane" "(-360 -48 440) (-360 -48 320) (-360 -56 320)" + "id" "7682" + "plane" "(-104 -120 320) (-168 -120 320) (-168 -56 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 170 179" + "color" "0 196 245" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "64948" + "id" "64914" side { - "id" "7741" - "plane" "(-168 -48 440) (-232 -48 440) (-232 -48 320)" + "id" "7693" + "plane" "(-360 -128 320) (-424 -128 320) (-424 -128 440)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -973,8 +973,8 @@ world } side { - "id" "7740" - "plane" "(-232 -48 440) (-168 -48 440) (-168 -56 440)" + "id" "7692" + "plane" "(-360 -128 440) (-424 -128 440) (-424 -120 440)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -984,8 +984,8 @@ world } side { - "id" "7739" - "plane" "(-168 -48 440) (-168 -48 320) (-168 -56 320)" + "id" "7691" + "plane" "(-424 -128 440) (-424 -128 320) (-424 -120 320)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -995,8 +995,8 @@ world } side { - "id" "7738" - "plane" "(-232 -56 440) (-168 -56 440) (-168 -56 320)" + "id" "7690" + "plane" "(-360 -120 440) (-424 -120 440) (-424 -120 320)" "material" "METAL/UNDERGROUND_WALL_METAL001A" "uaxis" "[1 0 0 128] 0.25" "vaxis" "[0 0 -1 256] 0.25" @@ -1006,8 +1006,8 @@ world } side { - "id" "7737" - "plane" "(-168 -48 320) (-232 -48 320) (-232 -56 320)" + "id" "7689" + "plane" "(-360 -120 320) (-424 -120 320) (-424 -128 320)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -1017,8 +1017,8 @@ world } side { - "id" "7736" - "plane" "(-232 -48 320) (-232 -48 440) (-232 -56 440)" + "id" "7688" + "plane" "(-360 -128 320) (-360 -128 440) (-360 -120 440)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" "vaxis" "[0 1 0 0] 0.25" @@ -1028,172 +1028,172 @@ world } editor { - "color" "0 170 179" + "color" "0 182 163" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "65005" + "id" "64915" side { - "id" "7748" - "plane" "(-572 184 -184) (-572 -184 -184) (-568 -184 -184)" + "id" "7699" + "plane" "(-232 -128 440) (-168 -128 440) (-168 -128 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7749" - "plane" "(-572 -184 -96) (-572 184 -96) (-568 184 -96)" + "id" "7698" + "plane" "(-168 -128 440) (-232 -128 440) (-232 -120 440)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7750" - "plane" "(-572 -184 -184) (-572 184 -184) (-572 184 -96)" + "id" "7697" + "plane" "(-168 -128 320) (-168 -128 440) (-168 -120 440)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 -40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7751" - "plane" "(-568 184 -184) (-568 -184 -184) (-568 -184 -96)" - "material" "TOOLS/TOOLSBLACK" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "id" "7696" + "plane" "(-168 -120 440) (-232 -120 440) (-232 -120 320)" + "material" "METAL/UNDERGROUND_WALL_METAL001A" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 0 -1 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7752" - "plane" "(-568 -184 -184) (-572 -184 -184) (-572 -184 -96)" + "id" "7695" + "plane" "(-232 -128 320) (-168 -128 320) (-168 -120 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 1 -40] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7753" - "plane" "(-568 184 -96) (-572 184 -96) (-572 184 -184)" + "id" "7694" + "plane" "(-232 -128 440) (-232 -128 320) (-232 -120 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 1 -40] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 246 119" + "color" "0 182 163" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "65016" + "id" "64924" side { - "id" "7754" - "plane" "(-72 184 -92) (-104 184 -92) (-104 184 -96)" + "id" "7705" + "plane" "(-240 -56 440) (-232 -56 440) (-232 -120 440)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7755" - "plane" "(-72 -184 -96) (-104 -184 -96) (-104 -184 -92)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" + "id" "7704" + "plane" "(-232 -120 320) (-232 -120 440) (-232 -56 440)" + "material" "METAL/UNDERGROUND_WALL_METAL001A" + "uaxis" "[0 -1 0 -128] 0.25" + "vaxis" "[0 0 -1 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7756" - "plane" "(-72 184 -96) (-104 184 -96) (-104 -184 -96)" + "id" "7703" + "plane" "(-240 -120 440) (-232 -120 440) (-232 -120 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7757" - "plane" "(-72 -184 -92) (-104 -184 -92) (-104 184 -92)" + "id" "7702" + "plane" "(-232 -56 440) (-240 -56 440) (-240 -56 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7758" - "plane" "(-72 184 -92) (-72 184 -96) (-72 -184 -96)" + "id" "7701" + "plane" "(-240 -120 320) (-232 -120 320) (-232 -56 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7759" - "plane" "(-104 -184 -92) (-104 -184 -96) (-104 184 -96)" + "id" "7700" + "plane" "(-240 -56 320) (-240 -56 440) (-240 -120 440)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 124 137" + "color" "0 152 209" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "65039" + "id" "64925" side { - "id" "7760" - "plane" "(-552 184 -88) (-568 184 -88) (-568 184 -96)" + "id" "7711" + "plane" "(-352 -120 440) (-360 -120 440) (-360 -56 440)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1201,75 +1201,75 @@ world } side { - "id" "7761" - "plane" "(-552 -184 -96) (-568 -184 -96) (-568 -184 -88)" + "id" "7710" + "plane" "(-352 -120 320) (-360 -120 320) (-360 -120 440)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7762" - "plane" "(-552 184 -96) (-568 184 -96) (-568 -184 -96)" + "id" "7709" + "plane" "(-352 -56 440) (-360 -56 440) (-360 -56 320)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7763" - "plane" "(-552 -184 -88) (-568 -184 -88) (-568 184 -88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "7708" + "plane" "(-360 -56 320) (-360 -56 440) (-360 -120 440)" + "material" "METAL/UNDERGROUND_WALL_METAL001A" + "uaxis" "[0 -1 0 -128] 0.25" + "vaxis" "[0 0 -1 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7764" - "plane" "(-552 184 -88) (-552 184 -96) (-552 -184 -96)" + "id" "7707" + "plane" "(-352 -56 320) (-360 -56 320) (-360 -120 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7765" - "plane" "(-568 -184 -88) (-568 -184 -96) (-568 184 -96)" + "id" "7706" + "plane" "(-352 -120 320) (-352 -120 440) (-352 -56 440)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 242 135" + "color" "0 152 209" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "65064" + "id" "64947" side { - "id" "7783" - "plane" "(-328 -188 -64) (-456 -188 -64) (-456 -188 280)" + "id" "7735" + "plane" "(-360 -48 440) (-424 -48 440) (-424 -48 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1277,52 +1277,52 @@ world } side { - "id" "7782" - "plane" "(-328 -184 280) (-456 -184 280) (-456 -184 -64)" - "material" "METAL/UNDERGROUND_WALL_METAL004A" - "uaxis" "[-1 0 0 -288] 0.25" - "vaxis" "[0 0 -1 256] 0.25" + "id" "7734" + "plane" "(-360 -56 440) (-424 -56 440) (-424 -48 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7781" - "plane" "(-328 -184 -64) (-456 -184 -64) (-456 -188 -64)" + "id" "7733" + "plane" "(-424 -48 320) (-424 -48 440) (-424 -56 440)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7780" - "plane" "(-328 -188 280) (-456 -188 280) (-456 -184 280)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "7732" + "plane" "(-360 -56 320) (-424 -56 320) (-424 -56 440)" + "material" "METAL/UNDERGROUND_WALL_METAL001A" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 0 -1 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7779" - "plane" "(-456 -188 280) (-456 -188 -64) (-456 -184 -64)" + "id" "7731" + "plane" "(-360 -48 320) (-424 -48 320) (-424 -56 320)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7778" - "plane" "(-328 -184 280) (-328 -184 -64) (-328 -188 -64)" + "id" "7730" + "plane" "(-360 -48 440) (-360 -48 320) (-360 -56 320)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" "vaxis" "[0 1 0 0] 0.25" @@ -1332,20 +1332,20 @@ world } editor { - "color" "0 178 239" + "color" "0 170 179" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "65066" + "id" "64948" side { - "id" "7795" - "plane" "(-264 -188 -64) (-328 -188 -64) (-328 -188 280)" + "id" "7741" + "plane" "(-168 -48 440) (-232 -48 440) (-232 -48 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1353,52 +1353,52 @@ world } side { - "id" "7794" - "plane" "(-264 -184 280) (-328 -184 280) (-328 -184 -64)" + "id" "7740" + "plane" "(-232 -48 440) (-168 -48 440) (-168 -56 440)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7793" - "plane" "(-264 -184 -64) (-328 -184 -64) (-328 -188 -64)" + "id" "7739" + "plane" "(-168 -48 440) (-168 -48 320) (-168 -56 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7792" - "plane" "(-264 -188 280) (-328 -188 280) (-328 -184 280)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "7738" + "plane" "(-232 -56 440) (-168 -56 440) (-168 -56 320)" + "material" "METAL/UNDERGROUND_WALL_METAL001A" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 0 -1 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7791" - "plane" "(-328 -188 280) (-328 -188 -64) (-328 -184 -64)" + "id" "7737" + "plane" "(-168 -48 320) (-232 -48 320) (-232 -56 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7790" - "plane" "(-264 -184 280) (-264 -184 -64) (-264 -188 -64)" + "id" "7736" + "plane" "(-232 -48 320) (-232 -48 440) (-232 -56 440)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" "vaxis" "[0 1 0 0] 0.25" @@ -1408,170 +1408,170 @@ world } editor { - "color" "0 178 239" + "color" "0 170 179" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "65072" + "id" "65016" side { - "id" "7801" - "plane" "(-568 184 -64) (-568 -87.9999 -64) (-552 -88 -64)" + "id" "7754" + "plane" "(-72 184 -92) (-104 184 -92) (-104 184 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7800" - "plane" "(-568 -87.9999 -64) (-568 184 -64) (-568 184 320)" + "id" "7755" + "plane" "(-72 -184 -96) (-104 -184 -96) (-104 -184 -92)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7799" - "plane" "(-552 184 -64) (-552 -88 -64) (-552 -88 320)" - "material" "METAL/UNDERGROUND_WALL_METAL004B_BOTTOM" - "uaxis" "[0 -1 0 -160] 0.25" - "vaxis" "[0 0 -1 256] 0.25" + "id" "7756" + "plane" "(-72 184 -96) (-104 184 -96) (-104 -184 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7798" - "plane" "(-568 -87.9999 320) (-568 184 320) (-552 184 320)" + "id" "7757" + "plane" "(-72 -184 -92) (-104 -184 -92) (-104 184 -92)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7797" - "plane" "(-568 184 320) (-568 184 -64) (-552 184 -64)" + "id" "7758" + "plane" "(-72 184 -92) (-72 184 -96) (-72 -184 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7796" - "plane" "(-552 -88 -64) (-568 -87.9999 -64) (-568 -87.9999 320)" + "id" "7759" + "plane" "(-104 -184 -92) (-104 -184 -96) (-104 184 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 230 151" + "color" "0 124 137" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "65105" + "id" "65039" side { - "id" "7825" - "plane" "(-392 188 320) (-552 188 320) (-552 188 -64)" + "id" "7760" + "plane" "(-552 184 -88) (-568 184 -88) (-568 184 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7824" - "plane" "(-552 188 -64) (-552 188 320) (-552 184 320)" + "id" "7761" + "plane" "(-552 -184 -96) (-568 -184 -96) (-568 -184 -88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7823" - "plane" "(-392 184 320) (-552 184 320) (-552 188 320)" + "id" "7762" + "plane" "(-552 184 -96) (-568 184 -96) (-568 -184 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7822" - "plane" "(-392 184 -64) (-552 184 -64) (-552 184 320)" + "id" "7763" + "plane" "(-552 -184 -88) (-568 -184 -88) (-568 184 -88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7821" - "plane" "(-392 188 -64) (-552 188 -64) (-552 184 -64)" + "id" "7764" + "plane" "(-552 184 -88) (-552 184 -96) (-552 -184 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7820" - "plane" "(-392 188 320) (-392 188 -64) (-392 184 -64)" + "id" "7765" + "plane" "(-568 -184 -88) (-568 -184 -96) (-568 184 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 180 241" + "color" "0 242 135" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "65106" + "id" "65064" side { - "id" "7831" - "plane" "(-264 188 -64) (-104 188 -64) (-104 188 320)" + "id" "7783" + "plane" "(-328 -188 -64) (-456 -188 -64) (-456 -188 280)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 16] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1581,19 +1581,19 @@ world } side { - "id" "7830" - "plane" "(-104 188 320) (-104 188 -64) (-104 184 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7782" + "plane" "(-328 -184 280) (-456 -184 280) (-456 -184 -64)" + "material" "METAL/UNDERGROUND_WALL_METAL004A" + "uaxis" "[-1 0 0 -288] 0.25" + "vaxis" "[0 0 -1 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7829" - "plane" "(-264 188 320) (-104 188 320) (-104 184 320)" + "id" "7781" + "plane" "(-328 -184 -64) (-456 -184 -64) (-456 -188 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -1603,30 +1603,30 @@ world } side { - "id" "7828" - "plane" "(-264 184 320) (-104 184 320) (-104 184 -64)" + "id" "7780" + "plane" "(-328 -188 280) (-456 -188 280) (-456 -184 280)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7827" - "plane" "(-104 188 -64) (-264 188 -64) (-264 184 -64)" + "id" "7779" + "plane" "(-456 -188 280) (-456 -188 -64) (-456 -184 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7826" - "plane" "(-264 188 -64) (-264 188 320) (-264 184 320)" + "id" "7778" + "plane" "(-328 -184 280) (-328 -184 -64) (-328 -188 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" "vaxis" "[0 1 0 0] 0.25" @@ -1636,18 +1636,18 @@ world } editor { - "color" "0 180 241" + "color" "0 178 239" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "65107" + "id" "65066" side { - "id" "7837" - "plane" "(-264 188 320) (-392 188 320) (-392 188 -64)" + "id" "7795" + "plane" "(-264 -188 -64) (-328 -188 -64) (-328 -188 280)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 16] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1657,30 +1657,30 @@ world } side { - "id" "7836" - "plane" "(-264 184 320) (-392 184 320) (-392 188 320)" + "id" "7794" + "plane" "(-264 -184 280) (-328 -184 280) (-328 -184 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7835" - "plane" "(-264 184 -64) (-392 184 -64) (-392 184 320)" - "material" "WOOD/UNDERGROUND_WOODTRIM001A" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" + "id" "7793" + "plane" "(-264 -184 -64) (-328 -184 -64) (-328 -188 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7834" - "plane" "(-264 188 -64) (-392 188 -64) (-392 184 -64)" + "id" "7792" + "plane" "(-264 -188 280) (-328 -188 280) (-328 -184 280)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -1690,8 +1690,8 @@ world } side { - "id" "7833" - "plane" "(-392 188 -64) (-392 188 320) (-392 184 320)" + "id" "7791" + "plane" "(-328 -188 280) (-328 -188 -64) (-328 -184 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" "vaxis" "[0 1 0 0] 0.25" @@ -1701,8 +1701,8 @@ world } side { - "id" "7832" - "plane" "(-264 188 320) (-264 188 -64) (-264 184 -64)" + "id" "7790" + "plane" "(-264 -184 280) (-264 -184 -64) (-264 -188 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" "vaxis" "[0 1 0 0] 0.25" @@ -1712,129 +1712,129 @@ world } editor { - "color" "0 180 241" + "color" "0 178 239" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "65111" + "id" "65072" side { - "id" "7838" - "plane" "(-104 184 -64) (-104 136 -64) (-96 136 -64)" + "id" "7801" + "plane" "(-568 184 -64) (-568 -87.9999 -64) (-552 -88 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7839" - "plane" "(-104 136 320) (-104 184 320) (-96 184 320)" + "id" "7800" + "plane" "(-568 -87.9999 -64) (-568 184 -64) (-568 184 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7840" - "plane" "(-104 136 -64) (-104 184 -64) (-104 184 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 -48] 0.25" + "id" "7799" + "plane" "(-552 184 -64) (-552 -88 -64) (-552 -88 320)" + "material" "METAL/UNDERGROUND_WALL_METAL004B_BOTTOM" + "uaxis" "[0 -1 0 -160] 0.25" + "vaxis" "[0 0 -1 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7841" - "plane" "(-96 184 -64) (-96 136 -64) (-96 136 320)" + "id" "7798" + "plane" "(-568 -87.9999 320) (-568 184 320) (-552 184 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 -48] 0.25" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7842" - "plane" "(-96 136 -64) (-104 136 -64) (-104 136 320)" + "id" "7797" + "plane" "(-568 184 320) (-568 184 -64) (-552 184 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 0 1 -48] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7843" - "plane" "(-96 184 320) (-104 184 320) (-104 184 -64)" + "id" "7796" + "plane" "(-552 -88 -64) (-568 -87.9999 -64) (-568 -87.9999 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 0 1 -48] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 234 147" + "color" "0 230 151" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "67395" + "id" "65105" side { - "id" "7861" - "plane" "(-552 184 320) (-552 -88 320) (-488 -88 320)" - "material" "CONCRETE/UNDERGROUND_CONCRETE_CEILING002" - "uaxis" "[0 -1 0 -768] 0.25" - "vaxis" "[1 0 0 384] 0.25" + "id" "7825" + "plane" "(-392 188 320) (-552 188 320) (-552 188 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7860" - "plane" "(-552 -88 328) (-552 184 328) (-488 8.00004 328)" + "id" "7824" + "plane" "(-552 188 -64) (-552 188 320) (-552 184 320)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7859" - "plane" "(-552 -88 320) (-552 184 320) (-552 184 328)" - "material" "METAL/UNDERGROUND_WALL_METAL004B_BOTTOM" - "uaxis" "[0 -1 0 -384] 0.25" - "vaxis" "[0 0 -1 256] 0.25" + "id" "7823" + "plane" "(-392 184 320) (-552 184 320) (-552 188 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7858" - "plane" "(-552 184 320) (-488 8.00004 320) (-488 8.00004 328)" + "id" "7822" + "plane" "(-392 184 -64) (-552 184 -64) (-552 184 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1842,64 +1842,53 @@ world } side { - "id" "7857" - "plane" "(-488 8.00004 320) (-488 -88 320) (-488 -88 328)" + "id" "7821" + "plane" "(-392 188 -64) (-552 188 -64) (-552 184 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7856" - "plane" "(-488 -88 320) (-552 -88 320) (-552 -88 328)" - "material" "CONCRETE/UNDERGROUND_CONCRETE_CEILING002" - "uaxis" "[0 0 1 256] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "7820" + "plane" "(-392 188 320) (-392 188 -64) (-392 184 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 166 127" + "color" "0 180 241" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "67403" - side - { - "id" "7879" - "plane" "(-488 -152 280) (-456 -152 280) (-424 -120 280)" - "material" "WOOD/UNDERGROUND_PLYWOOD_01A_BOTTOM" - "uaxis" "[0 -1 0 -640] 0.25" - "vaxis" "[-1 0 0 -256] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "65106" side { - "id" "7878" - "plane" "(-488 -56 280) (-488 -56 320) (-488 -152 320)" - "material" "METAL/UNDERGROUND_WALL_METAL004B" - "uaxis" "[0 -1 0 -416] 0.25" - "vaxis" "[0 0 -1 -128] 0.25" + "id" "7831" + "plane" "(-264 188 -64) (-104 188 -64) (-104 188 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7877" - "plane" "(-456 -152 280) (-456 -152 320) (-424 -120 320)" + "id" "7830" + "plane" "(-104 188 320) (-104 188 -64) (-104 184 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1907,30 +1896,30 @@ world } side { - "id" "7876" - "plane" "(-488 -56 280) (-424 -56 280) (-424 -56 320)" + "id" "7829" + "plane" "(-264 188 320) (-104 188 320) (-104 184 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7875" - "plane" "(-424 -56 280) (-424 -120 280) (-424 -120 320)" - "material" "METAL/UNDERGROUND_WALL_METAL001A" - "uaxis" "[0 -1 0 -128] 0.25" - "vaxis" "[0 0 -1 256] 0.25" + "id" "7828" + "plane" "(-264 184 320) (-104 184 320) (-104 184 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7874" - "plane" "(-488 -56 320) (-424 -56 320) (-424 -120 320)" + "id" "7827" + "plane" "(-104 188 -64) (-264 188 -64) (-264 184 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -1940,31 +1929,31 @@ world } side { - "id" "7873" - "plane" "(-488 -152 280) (-488 -152 320) (-456 -152 320)" + "id" "7826" + "plane" "(-264 188 -64) (-264 188 320) (-264 184 320)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 200 149" + "color" "0 180 241" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "67409" + "id" "65107" side { - "id" "7891" - "plane" "(-456 -184 280) (-456 -184 320) (-104 -184 320)" + "id" "7837" + "plane" "(-264 188 320) (-392 188 320) (-392 188 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1972,63 +1961,52 @@ world } side { - "id" "7890" - "plane" "(-104 -184 280) (-104 -120 280) (-424 -120 280)" - "material" "WOOD/UNDERGROUND_PLYWOOD_01A_BOTTOM" - "uaxis" "[0 -1 0 -640] 0.25" - "vaxis" "[-1 0 0 -256] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7889" - "plane" "(-104 -120 280) (-104 -184 280) (-104 -184 320)" + "id" "7836" + "plane" "(-264 184 320) (-392 184 320) (-392 188 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7888" - "plane" "(-424 -120 280) (-424 -120 320) (-456 -152 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7835" + "plane" "(-264 184 -64) (-392 184 -64) (-392 184 320)" + "material" "WOOD/UNDERGROUND_WOODTRIM001A" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7887" - "plane" "(-424 -120 280) (-104 -120 280) (-104 -120 320)" - "material" "METAL/UNDERGROUND_WALL_METAL001A" - "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 0 -1 256] 0.25" + "id" "7834" + "plane" "(-264 188 -64) (-392 188 -64) (-392 184 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7886" - "plane" "(-456 -184 320) (-456 -152 320) (-424 -120 320)" + "id" "7833" + "plane" "(-392 188 -64) (-392 188 320) (-392 184 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7885" - "plane" "(-456 -184 280) (-456 -152 280) (-456 -152 320)" + "id" "7832" + "plane" "(-264 188 320) (-264 188 -64) (-264 184 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" "vaxis" "[0 1 0 0] 0.25" @@ -2038,140 +2016,140 @@ world } editor { - "color" "0 182 163" + "color" "0 180 241" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "67416" + "id" "65111" side { - "id" "7908" - "plane" "(-456 -184 280) (-488 -184 280) (-488 -184 288)" + "id" "7838" + "plane" "(-104 184 -64) (-104 136 -64) (-96 136 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7907" - "plane" "(-488 -152 280) (-488 -184 280) (-456 -184 280)" + "id" "7839" + "plane" "(-104 136 320) (-104 184 320) (-96 184 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7906" - "plane" "(-488 -184 288) (-488 -184 280) (-488 -152 280)" + "id" "7840" + "plane" "(-104 136 -64) (-104 184 -64) (-104 184 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7905" - "plane" "(-456 -184 288) (-488 -184 288) (-488 -152 288)" + "id" "7841" + "plane" "(-96 184 -64) (-96 136 -64) (-96 136 320)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 1 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7904" - "plane" "(-456 -152 280) (-456 -184 280) (-456 -184 288)" + "id" "7842" + "plane" "(-96 136 -64) (-104 136 -64) (-104 136 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 1 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7903" - "plane" "(-456 -152 288) (-488 -152 288) (-488 -152 280)" + "id" "7843" + "plane" "(-96 184 320) (-104 184 320) (-104 184 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 1 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 182 163" + "color" "0 234 147" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "67446" + "id" "67395" side { - "id" "8010" - "plane" "(-552 -96 320) (-552 -88 320) (-488 -88 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "id" "7861" + "plane" "(-552 184 320) (-552 -88 320) (-488 -88 320)" + "material" "CONCRETE/UNDERGROUND_CONCRETE_CEILING002" + "uaxis" "[0 -1 0 -768] 0.25" + "vaxis" "[1 0 0 384] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "8009" - "plane" "(-552 -88 280) (-552 -88 320) (-552 -96 320)" + "id" "7860" + "plane" "(-552 -88 328) (-552 184 328) (-488 8.00004 328)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32.01] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "8008" - "plane" "(-488 -96 280) (-488 -96 320) (-488 -88 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "7859" + "plane" "(-552 -88 320) (-552 184 320) (-552 184 328)" + "material" "METAL/UNDERGROUND_WALL_METAL004B_BOTTOM" + "uaxis" "[0 -1 0 -384] 0.25" + "vaxis" "[0 0 -1 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "8007" - "plane" "(-488 -88 320) (-552 -88 320) (-552 -88 280)" - "material" "METAL/UNDERGROUND_WALL_METAL004A" - "uaxis" "[1 0 0 160] 0.25" - "vaxis" "[0 0 -1 256] 0.25" + "id" "7858" + "plane" "(-552 184 320) (-488 8.00004 320) (-488 8.00004 328)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "8006" - "plane" "(-552 -96 280) (-552 -96 320) (-488 -96 320)" + "id" "7857" + "plane" "(-488 8.00004 320) (-488 -88 320) (-488 -88 328)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2179,10 +2157,10 @@ world } side { - "id" "8005" - "plane" "(-552 -88 280) (-552 -96 280) (-488 -96 280)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "7856" + "plane" "(-488 -88 320) (-552 -88 320) (-552 -88 328)" + "material" "CONCRETE/UNDERGROUND_CONCRETE_CEILING002" + "uaxis" "[0 0 1 256] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2190,31 +2168,42 @@ world } editor { - "color" "0 129 126" + "color" "0 166 127" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "67447" + "id" "67403" side { - "id" "8016" - "plane" "(-552 -88 -64) (-552 -152 -64) (-488 -152 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" + "id" "7879" + "plane" "(-488 -152 280) (-456 -152 280) (-424 -120 280)" + "material" "WOOD/UNDERGROUND_PLYWOOD_01A_BOTTOM" + "uaxis" "[0 -1 0 -640] 0.25" + "vaxis" "[-1 0 0 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "8015" - "plane" "(-552 -152 280) (-552 -152 -64) (-552 -88 -64)" + "id" "7878" + "plane" "(-488 -56 280) (-488 -56 320) (-488 -152 320)" + "material" "METAL/UNDERGROUND_WALL_METAL004B" + "uaxis" "[0 -1 0 -416] 0.25" + "vaxis" "[0 0 -1 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7877" + "plane" "(-456 -152 280) (-456 -152 320) (-424 -120 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32.01] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2222,21 +2211,21 @@ world } side { - "id" "8014" - "plane" "(-488 -88 280) (-488 -88 -64) (-488 -152 -64)" - "material" "METAL/UNDERGROUND_WALL_METAL004A" - "uaxis" "[0 -1 0 -96] 0.25" - "vaxis" "[0 0 -1 256] 0.25" + "id" "7876" + "plane" "(-488 -56 280) (-424 -56 280) (-424 -56 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "8013" - "plane" "(-552 -88 280) (-552 -88 -64) (-488 -88 -64)" - "material" "METAL/UNDERGROUND_WALL_METAL004A" - "uaxis" "[1 0 0 160] 0.25" + "id" "7875" + "plane" "(-424 -56 280) (-424 -120 280) (-424 -120 320)" + "material" "METAL/UNDERGROUND_WALL_METAL001A" + "uaxis" "[0 -1 0 -128] 0.25" "vaxis" "[0 0 -1 256] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2244,21 +2233,21 @@ world } side { - "id" "8012" - "plane" "(-488 -152 -64) (-552 -152 -64) (-552 -152 280)" + "id" "7874" + "plane" "(-488 -56 320) (-424 -56 320) (-424 -120 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "8011" - "plane" "(-552 -152 280) (-552 -88 280) (-488 -88 280)" + "id" "7873" + "plane" "(-488 -152 280) (-488 -152 320) (-456 -152 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 0 1 0] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2266,96 +2255,107 @@ world } editor { - "color" "0 207 180" + "color" "0 200 149" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "67454" + "id" "67409" side { - "id" "7933" - "plane" "(-552 -88 -96) (-552 -184 -96) (-488 -184 -96)" + "id" "7891" + "plane" "(-456 -184 280) (-456 -184 320) (-104 -184 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7934" - "plane" "(-552 -184 -88) (-552 -88 -88) (-488 -88 -88)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "7890" + "plane" "(-104 -184 280) (-104 -120 280) (-424 -120 280)" + "material" "WOOD/UNDERGROUND_PLYWOOD_01A_BOTTOM" + "uaxis" "[0 -1 0 -640] 0.25" + "vaxis" "[-1 0 0 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7935" - "plane" "(-552 -184 -96) (-552 -88 -96) (-552 -88 -88)" + "id" "7889" + "plane" "(-104 -120 280) (-104 -184 280) (-104 -184 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 -48] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7936" - "plane" "(-488 -88 -96) (-488 -184 -96) (-488 -184 -88)" + "id" "7888" + "plane" "(-424 -120 280) (-424 -120 320) (-456 -152 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 -48] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7937" - "plane" "(-488 -184 -96) (-552 -184 -96) (-552 -184 -88)" + "id" "7887" + "plane" "(-424 -120 280) (-104 -120 280) (-104 -120 320)" + "material" "METAL/UNDERGROUND_WALL_METAL001A" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7886" + "plane" "(-456 -184 320) (-456 -152 320) (-424 -120 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 0 1 -48] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7938" - "plane" "(-488 -88 -88) (-552 -88 -88) (-552 -88 -96)" + "id" "7885" + "plane" "(-456 -184 280) (-456 -152 280) (-456 -152 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 0 1 -48] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 212 189" + "color" "0 182 163" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "27245" + "id" "67416" side { - "id" "5716" - "plane" "(-64 -64 -64) (-68 -68 -64) (-68 -68 192)" + "id" "7908" + "plane" "(-456 -184 280) (-488 -184 280) (-488 -184 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2363,10 +2363,21 @@ world } side { - "id" "5715" - "plane" "(-68 -68 192) (-68 -68 -64) (-68 -64 -64)" + "id" "7907" + "plane" "(-488 -152 280) (-488 -184 280) (-456 -184 280)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7906" + "plane" "(-488 -184 288) (-488 -184 280) (-488 -152 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2374,8 +2385,8 @@ world } side { - "id" "5714" - "plane" "(-68 -64 -64) (-68 -68 -64) (-64 -64 -64)" + "id" "7905" + "plane" "(-456 -184 288) (-488 -184 288) (-488 -152 288)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -2385,53 +2396,53 @@ world } side { - "id" "5713" - "plane" "(-64 -64 192) (-68 -68 192) (-68 -64 192)" + "id" "7904" + "plane" "(-456 -152 280) (-456 -184 280) (-456 -184 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5712" - "plane" "(-68 -64 192) (-68 -64 -64) (-64 -64 -64)" - "material" "WOOD/UNDERGROUND_PLYWOOD_01A_BOTTOM" - "uaxis" "[1 0 0 256] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" + "id" "7903" + "plane" "(-456 -152 288) (-488 -152 288) (-488 -152 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 100 173" + "color" "0 182 163" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "27246" + "id" "67446" side { - "id" "5721" - "plane" "(-68 -64 196) (-68 64 196) (-64 64 192)" + "id" "8010" + "plane" "(-552 -96 320) (-552 -88 320) (-488 -88 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5720" - "plane" "(-68 -64 192) (-68 64 192) (-68 64 196)" + "id" "8009" + "plane" "(-552 -88 280) (-552 -88 320) (-552 -96 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 32.01] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2439,21 +2450,32 @@ world } side { - "id" "5719" - "plane" "(-68 64 192) (-68 -64 192) (-64 -64 192)" - "material" "METAL/UNDERGROUND_WALL_METAL004A_TOP" - "uaxis" "[0 -1 0 -256] 0.25" - "vaxis" "[-1 0 0 -256] 0.25" + "id" "8008" + "plane" "(-488 -96 280) (-488 -96 320) (-488 -88 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5718" - "plane" "(-64 64 192) (-68 64 196) (-68 64 192)" + "id" "8007" + "plane" "(-488 -88 320) (-552 -88 320) (-552 -88 280)" + "material" "METAL/UNDERGROUND_WALL_METAL004A" + "uaxis" "[1 0 0 160] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8006" + "plane" "(-552 -96 280) (-552 -96 320) (-488 -96 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2461,31 +2483,42 @@ world } side { - "id" "5717" - "plane" "(-68 -64 192) (-68 -64 196) (-64 -64 192)" + "id" "8005" + "plane" "(-552 -88 280) (-552 -96 280) (-488 -96 280)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 250 239" + "color" "0 129 126" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "27251" + "id" "67447" side { - "id" "5747" - "plane" "(-64 64 192) (-72 72 192) (-72 72 -64)" + "id" "8016" + "plane" "(-552 -88 -64) (-552 -152 -64) (-488 -152 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8015" + "plane" "(-552 -152 280) (-552 -152 -64) (-552 -88 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32.01] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2493,41 +2526,41 @@ world } side { - "id" "5745" - "plane" "(-72 72 -64) (-72 72 192) (-72 64 192)" - "material" "WOOD/UNDERGROUND_PLYWOOD_01A_BOTTOM" - "uaxis" "[0 -1 0 -800] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" + "id" "8014" + "plane" "(-488 -88 280) (-488 -88 -64) (-488 -152 -64)" + "material" "METAL/UNDERGROUND_WALL_METAL004A" + "uaxis" "[0 -1 0 -96] 0.25" + "vaxis" "[0 0 -1 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5744" - "plane" "(-72 64 192) (-72 72 192) (-64 64 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "8013" + "plane" "(-552 -88 280) (-552 -88 -64) (-488 -88 -64)" + "material" "METAL/UNDERGROUND_WALL_METAL004A" + "uaxis" "[1 0 0 160] 0.25" + "vaxis" "[0 0 -1 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5743" - "plane" "(-72 64 -64) (-72 64 192) (-64 64 192)" - "material" "WOOD/UNDERGROUND_PLYWOOD_01A_BOTTOM" - "uaxis" "[1 0 0 256] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" + "id" "8012" + "plane" "(-488 -152 -64) (-552 -152 -64) (-552 -152 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5742" - "plane" "(-64 64 -64) (-72 72 -64) (-72 64 -64)" + "id" "8011" + "plane" "(-552 -152 280) (-552 -88 280) (-488 -88 280)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -2537,107 +2570,96 @@ world } editor { - "color" "0 172 101" + "color" "0 207 180" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "27252" + "id" "67454" side { - "id" "5753" - "plane" "(-68 184 -96) (-68 184 -184) (-68 -184 -184)" + "id" "7933" + "plane" "(-552 -88 -96) (-552 -184 -96) (-488 -184 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5752" - "plane" "(-68 -184 -184) (-68 184 -184) (-72 184 -184)" + "id" "7934" + "plane" "(-552 -184 -88) (-552 -88 -88) (-488 -88 -88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 -16] 0.25" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5751" - "plane" "(-72 184 -96) (-72 184 -184) (-68 184 -184)" + "id" "7935" + "plane" "(-552 -184 -96) (-552 -88 -96) (-552 -88 -88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5750" - "plane" "(-72 -184 -96) (-72 -184 -184) (-72 184 -184)" - "material" "TOOLS/TOOLSBLACK" + "id" "7936" + "plane" "(-488 -88 -96) (-488 -184 -96) (-488 -184 -88)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 1 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5749" - "plane" "(-68 -184 -96) (-68 -184 -184) (-72 -184 -184)" + "id" "7937" + "plane" "(-488 -184 -96) (-552 -184 -96) (-552 -184 -88)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 1 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5748" - "plane" "(-72 -184 -96) (-72 184 -96) (-68 184 -96)" + "id" "7938" + "plane" "(-488 -88 -88) (-552 -88 -88) (-552 -88 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 1 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 174 143" + "color" "0 212 189" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "27253" - side - { - "id" "5759" - "plane" "(-72 184 -188) (-568 184 -188) (-568 -184 -188)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 -16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "27245" side { - "id" "5758" - "plane" "(-568 184 -184) (-568 184 -188) (-72 184 -188)" + "id" "5716" + "plane" "(-64 -64 -64) (-68 -68 -64) (-68 -68 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2645,8 +2667,8 @@ world } side { - "id" "5757" - "plane" "(-72 184 -184) (-72 184 -188) (-72 -184 -188)" + "id" "5715" + "plane" "(-68 -68 192) (-68 -68 -64) (-68 -64 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2656,20 +2678,20 @@ world } side { - "id" "5756" - "plane" "(-568 -184 -188) (-568 184 -188) (-568 184 -184)" + "id" "5714" + "plane" "(-68 -64 -64) (-68 -68 -64) (-64 -64 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5755" - "plane" "(-568 -184 -184) (-568 184 -184) (-72 184 -184)" - "material" "TOOLS/TOOLSBLACK" + "id" "5713" + "plane" "(-64 -64 192) (-68 -68 192) (-68 -64 192)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" @@ -2678,51 +2700,40 @@ world } side { - "id" "5754" - "plane" "(-72 -184 -188) (-568 -184 -188) (-568 -184 -184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "5712" + "plane" "(-68 -64 192) (-68 -64 -64) (-64 -64 -64)" + "material" "WOOD/UNDERGROUND_PLYWOOD_01A_BOTTOM" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 112 237" + "color" "0 100 173" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "27255" - side - { - "id" "5771" - "plane" "(-568 188 -96) (-568 188 -184) (-72 188 -184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "27246" side { - "id" "5770" - "plane" "(-72 188 -96) (-72 188 -184) (-72 184 -184)" + "id" "5721" + "plane" "(-68 -64 196) (-68 64 196) (-64 64 192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5769" - "plane" "(-568 184 -96) (-568 184 -184) (-568 188 -184)" + "id" "5720" + "plane" "(-68 -64 192) (-68 64 192) (-68 64 196)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2732,20 +2743,20 @@ world } side { - "id" "5768" - "plane" "(-72 188 -184) (-568 188 -184) (-568 184 -184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "5719" + "plane" "(-68 64 192) (-68 -64 192) (-64 -64 192)" + "material" "METAL/UNDERGROUND_WALL_METAL004A_TOP" + "uaxis" "[0 -1 0 -256] 0.25" + "vaxis" "[-1 0 0 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5767" - "plane" "(-568 184 -184) (-568 184 -96) (-72 184 -96)" - "material" "TOOLS/TOOLSBLACK" + "id" "5718" + "plane" "(-64 64 192) (-68 64 196) (-68 64 192)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -2754,40 +2765,29 @@ world } side { - "id" "5766" - "plane" "(-568 184 -96) (-568 188 -96) (-72 188 -96)" + "id" "5717" + "plane" "(-68 -64 192) (-68 -64 196) (-64 -64 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 144 185" + "color" "0 250 239" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "27257" - side - { - "id" "5783" - "plane" "(-568 -188 -184) (-568 -188 -96) (-72 -188 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "27251" side { - "id" "5782" - "plane" "(-72 -184 -96) (-72 -184 -184) (-72 -188 -184)" + "id" "5747" + "plane" "(-64 64 192) (-72 72 192) (-72 72 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2797,19 +2797,19 @@ world } side { - "id" "5781" - "plane" "(-568 -188 -96) (-568 -188 -184) (-568 -184 -184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "5745" + "plane" "(-72 72 -64) (-72 72 192) (-72 64 192)" + "material" "WOOD/UNDERGROUND_PLYWOOD_01A_BOTTOM" + "uaxis" "[0 -1 0 -800] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5780" - "plane" "(-568 -184 -184) (-568 -188 -184) (-72 -188 -184)" + "id" "5744" + "plane" "(-72 64 192) (-72 72 192) (-64 64 192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -2819,19 +2819,19 @@ world } side { - "id" "5779" - "plane" "(-568 -184 -96) (-568 -184 -184) (-72 -184 -184)" - "material" "TOOLS/TOOLSBLACK" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "5743" + "plane" "(-72 64 -64) (-72 64 192) (-64 64 192)" + "material" "WOOD/UNDERGROUND_PLYWOOD_01A_BOTTOM" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5778" - "plane" "(-72 -188 -96) (-568 -188 -96) (-568 -184 -96)" + "id" "5742" + "plane" "(-64 64 -64) (-72 72 -64) (-72 64 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -2841,7 +2841,7 @@ world } editor { - "color" "0 100 141" + "color" "0 172 101" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -3075,82 +3075,6 @@ world } } solid - { - "id" "27264" - side - { - "id" "5825" - "plane" "(-568 -184 -160) (-568 -184 -184) (-568 184 -184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -16.004] 0.25" - "vaxis" "[0 1 0 -31.0233] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5824" - "plane" "(-72 184 -160) (-72 184 -184) (-72 -184 -184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 -16.004] 0.25" - "vaxis" "[0 1 0 -31.0233] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5823" - "plane" "(-568 -184 -184) (-568 -184 -160) (-72 -184 -160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -52.9218] 0.25" - "vaxis" "[0 0 -1 48.004] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5822" - "plane" "(-568 184 -160) (-568 184 -184) (-72 184 -184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 52.9218] 0.25" - "vaxis" "[0 0 -1 48.004] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5821" - "plane" "(-568 184 -184) (-568 -184 -184) (-72 -184 -184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 31.0233] 0.25" - "vaxis" "[-1 0 0 -52.9218] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5820" - "plane" "(-568 -184 -160) (-568 184 -160) (-72 184 -160)" - "material" "LIQUIDS/WATER_UNDERGROUND_CAVE" - "uaxis" "[1 0 0 215.308] 4" - "vaxis" "[0 -1 0 701.939] 4" - "rotation" "0" - "lightmapscale" "32" - "smoothing_groups" "0" - } - editor - { - "color" "0 206 191" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid { "id" "27439" side @@ -4771,6 +4695,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 315 90" "pitch" "0" "origin" "-375 176 38" @@ -4791,6 +4716,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 0 0" "origin" "-365 169 86" editor @@ -4809,6 +4735,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 0 0" "origin" "-365 169 38" editor @@ -4830,6 +4757,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 315 90" "pitch" "0" "origin" "-369 176 86" @@ -4874,6 +4802,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "-57 270 90" "pitch" "-57" "origin" "-229.674 122 184" @@ -4896,6 +4825,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "-57 270 90" "pitch" "-57" "origin" "-181.674 122 184" @@ -5292,6 +5222,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "-45 0 -180" "pitch" "-45" "origin" "-535 68 190" @@ -5312,6 +5243,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 0 0" "origin" "-525 20 182" editor @@ -5331,6 +5263,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 0 0" "origin" "-525 68 182" editor @@ -5353,6 +5286,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "-45 0 -180" "pitch" "-45" "origin" "-529 20 190" diff --git a/packages/styles/oldAp/resources/instances/80s/items/stairs.vmf b/packages/styles/oldAp/resources/instances/80s/items/stairs.vmf index fb49fbf8fa..195d5705c9 100644 --- a/packages/styles/oldAp/resources/instances/80s/items/stairs.vmf +++ b/packages/styles/oldAp/resources/instances/80s/items/stairs.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8419" - "mapversion" "91" + "editorbuild" "9672" + "mapversion" "92" "formatversion" "100" "prefab" "0" } @@ -26,7 +26,7 @@ viewsettings world { "id" "1" - "mapversion" "91" + "mapversion" "92" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -546,26 +546,195 @@ world } entity { - "id" "3345" - "classname" "logic_auto" - "angles" "0 0 0" + "id" "3413" + "classname" "func_noportal_volume" + "origin" "64 0 -64" + "parent_attachment_point" "stair_5" + "parentname" "stair" "spawnflags" "1" - connections + "targetname" "noportal" + solid { - "OnMapSpawn" "stairSetAnimationopen01" + "id" "3414" + side + { + "id" "784" + "plane" "(40 56 -60) (88 56 -60) (88 -56 -60)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.05" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "783" + "plane" "(40 -56 -68) (88 -56 -68) (88 56 -68)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.05" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "782" + "plane" "(40 56 -60) (40 -56 -60) (40 -56 -68)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -27.0793] 0.0175439" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "781" + "plane" "(88 56 -68) (88 -56 -68) (88 -56 -60)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -27.0793] 0.0175439" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "780" + "plane" "(88 56 -60) (40 56 -60) (40 56 -68)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.05" + "vaxis" "[0 0 -1 -27.0793] 0.0175439" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "779" + "plane" "(88 -56 -68) (40 -56 -68) (40 -56 -60)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.05" + "vaxis" "[0 0 -1 -27.0793] 0.0175439" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } - "origin" "64 32 -48" editor { - "color" "0 100 250" + "color" "220 30 220" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "comments" "Prevent portals being placed while extended. Since the steps are planar portals can stretch across. We need multiple because it uses the AABB, this covers all portal placements." + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "3416" + "classname" "func_noportal_volume" + "origin" "160 0 -64" + "parent_attachment_point" "stair_7" + "parentname" "stair" + "spawnflags" "1" + "targetname" "noportal" + solid + { + "id" "3417" + side + { + "id" "790" + "plane" "(136 56 -60) (184 56 -60) (184 -56 -60)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.05" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "789" + "plane" "(136 -56 -68) (184 -56 -68) (184 56 -68)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.05" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "788" + "plane" "(136 56 -60) (136 -56 -60) (136 -56 -68)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -27.0793] 0.0175439" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "787" + "plane" "(184 56 -68) (184 -56 -68) (184 -56 -60)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -27.0793] 0.0175439" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "786" + "plane" "(184 56 -60) (136 56 -60) (136 56 -68)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.05" + "vaxis" "[0 0 -1 -27.0793] 0.0175439" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "785" + "plane" "(184 -56 -68) (136 -56 -68) (136 -56 -60)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.05" + "vaxis" "[0 0 -1 -27.0793] 0.0175439" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "comments" "Prevent portals being placed while extended. Since the steps are planar portals can stretch across. We need multiple because it uses the AABB, this covers all portal placements." + "logicalpos" "[0 500]" } } entity { - "id" "3107" + "id" "3419" "classname" "prop_dynamic" "angles" "0 270 0" "body" "0" @@ -612,6 +781,8 @@ entity "OnUser1" "stairSetPlaybackRate-10.05-1" "OnUser2" "stairSetPlaybackRate10.05-1" "OnUser2" "motor_rotOpen0-1" + "OnUser2" "noportalActivate0.05-1" + "OnUser1" "noportalDeactivate0.05-1" } "origin" "64 0 -64" editor @@ -623,6 +794,119 @@ entity } } entity +{ + "id" "3424" + "classname" "func_noportal_volume" + "origin" "-32 0 -64" + "parent_attachment_point" "stair_2" + "parentname" "stair" + "spawnflags" "1" + "targetname" "noportal" + solid + { + "id" "3425" + side + { + "id" "796" + "plane" "(-56 56 -60) (-8 56 -60) (-8 -56 -60)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.05" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "795" + "plane" "(-56 -56 -68) (-8 -56 -68) (-8 56 -68)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.05" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "794" + "plane" "(-56 56 -60) (-56 -56 -60) (-56 -56 -68)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -27.0793] 0.0175439" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "793" + "plane" "(-8 56 -68) (-8 -56 -68) (-8 -56 -60)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -27.0793] 0.0175439" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "792" + "plane" "(-8 56 -60) (-56 56 -60) (-56 56 -68)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.05" + "vaxis" "[0 0 -1 -27.0793] 0.0175439" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "791" + "plane" "(-8 -56 -68) (-56 -56 -68) (-56 -56 -60)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.05" + "vaxis" "[0 0 -1 -27.0793] 0.0175439" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "comments" "Prevent portals being placed while extended. Since the steps are planar portals can stretch across. We need multiple because it uses the AABB, this covers all portal placements." + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "3345" + "classname" "logic_auto" + "angles" "0 0 0" + "spawnflags" "1" + connections + { + "OnMapSpawn" "stairSetAnimationopen01" + } + "origin" "64 32 -48" + editor + { + "color" "0 100 250" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity { "id" "816" "classname" "func_instance_parms" diff --git a/packages/styles/oldAp/resources/instances/80s/sphere_coop/spawn_room.vmf b/packages/styles/oldAp/resources/instances/80s/sphere_coop/spawn_room.vmf index b9a067ea11..7e121d3933 100644 --- a/packages/styles/oldAp/resources/instances/80s/sphere_coop/spawn_room.vmf +++ b/packages/styles/oldAp/resources/instances/80s/sphere_coop/spawn_room.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8997" - "mapversion" "502" + "editorbuild" "9672" + "mapversion" "503" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "502" + "mapversion" "503" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -29,13 +29,13 @@ world "skyname" "sky_day01_01" solid { - "id" "67987" + "id" "68482" side { - "id" "8155" - "plane" "(-256 -188 -64) (-488 -188 -64) (-488 -188 64)" + "id" "8257" + "plane" "(-568 188 -96) (-568 188 -144) (-72 188 -144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -43,30 +43,30 @@ world } side { - "id" "8154" - "plane" "(-488 -184 -64) (-256 -184 -64) (-256 -184 64)" - "material" "METAL/UNDERGROUND_WALL_METAL001A" - "uaxis" "[-1 0 0 -416] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" + "id" "8256" + "plane" "(-72 188 -96) (-72 188 -144) (-72 184 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "8153" - "plane" "(-256 -184 -64) (-488 -184 -64) (-488 -188 -64)" + "id" "8255" + "plane" "(-568 184 -96) (-568 184 -144) (-568 188 -144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "8152" - "plane" "(-256 -188 64) (-488 -188 64) (-488 -184 64)" + "id" "8254" + "plane" "(-72 188 -144) (-568 188 -144) (-568 184 -144)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -76,10 +76,10 @@ world } side { - "id" "8151" - "plane" "(-488 -188 64) (-488 -188 -64) (-488 -184 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "8253" + "plane" "(-72 184 -96) (-72 184 -144) (-568 184 -144)" + "material" "TOOLS/TOOLSBLACK" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -87,53 +87,53 @@ world } side { - "id" "8150" - "plane" "(-256 -184 64) (-256 -184 -64) (-256 -188 -64)" + "id" "8252" + "plane" "(-568 184 -96) (-568 188 -96) (-72 188 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 178 239" + "color" "0 144 185" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "68072" + "id" "68483" side { - "id" "8168" - "plane" "(-552 188 -64) (-552 184 -64) (-392 184 -64)" + "id" "8263" + "plane" "(-68 184 -96) (-68 184 -144) (-68 -184 -144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "8169" - "plane" "(-552 184 320) (-552 188 320) (-392 188 320)" + "id" "8262" + "plane" "(-68 -184 -144) (-68 184 -144) (-72 184 -144)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "8170" - "plane" "(-552 184 -64) (-552 188 -64) (-552 188 320)" + "id" "8261" + "plane" "(-72 184 -96) (-72 184 -144) (-68 184 -144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -141,10 +141,10 @@ world } side { - "id" "8171" - "plane" "(-392 188 -64) (-392 184 -64) (-392 184 320)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "8260" + "plane" "(-72 -184 -96) (-72 -184 -144) (-72 184 -144)" + "material" "TOOLS/TOOLSBLACK" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -152,8 +152,8 @@ world } side { - "id" "8172" - "plane" "(-392 184 -64) (-552 184 -64) (-552 184 320)" + "id" "8259" + "plane" "(-68 -184 -96) (-68 -184 -144) (-72 -184 -144)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -163,31 +163,31 @@ world } side { - "id" "8173" - "plane" "(-552 188 -64) (-392 188 -64) (-392 188 320)" + "id" "8258" + "plane" "(-72 -184 -96) (-72 184 -96) (-68 184 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 111 176" + "color" "0 174 143" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "68087" + "id" "68484" side { - "id" "8198" - "plane" "(-264 188 -64) (-72 188 -64) (-72 188 320)" + "id" "8269" + "plane" "(-72 -188 -64) (-72 -188 -144) (-568 -188 -144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 16] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -195,10 +195,10 @@ world } side { - "id" "8199" - "plane" "(-72 184 -64) (-264 184 -64) (-264 184 320)" + "id" "8268" + "plane" "(-72 -184 -64) (-72 -184 -144) (-72 -188 -144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -206,19 +206,19 @@ world } side { - "id" "8200" - "plane" "(-72 188 -64) (-264 188 -64) (-264 184 -64)" + "id" "8267" + "plane" "(-568 -188 -64) (-568 -188 -144) (-568 -184 -144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "8201" - "plane" "(-72 184 320) (-264 184 320) (-264 188 320)" + "id" "8266" + "plane" "(-568 -184 -144) (-568 -188 -144) (-72 -188 -144)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -228,10 +228,10 @@ world } side { - "id" "8202" - "plane" "(-72 188 320) (-72 188 -64) (-72 184 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "8265" + "plane" "(-568 -184 -64) (-568 -184 -144) (-72 -184 -144)" + "material" "TOOLS/TOOLSBLACK" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -239,75 +239,75 @@ world } side { - "id" "8203" - "plane" "(-264 184 320) (-264 184 -64) (-264 188 -64)" + "id" "8264" + "plane" "(-72 -188 -64) (-568 -188 -64) (-568 -184 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 129 230" + "color" "0 100 141" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "64361" + "id" "68485" side { - "id" "7633" - "plane" "(-360 -120 -64) (-360 -120 -96) (-424 -120 -96)" - "material" "CONCRETE/UNDERGROUND_CONCRETE_TILE001B" - "uaxis" "[-1 0 0 -416] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" + "id" "8275" + "plane" "(-572 184 -144) (-568 184 -144) (-568 184 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 -40] 0.25" "rotation" "0" - "lightmapscale" "48" + "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7632" - "plane" "(-424 -56 -64) (-424 -56 -96) (-360 -56 -96)" - "material" "CONCRETE/UNDERGROUND_CONCRETE_TILE001B" - "uaxis" "[1 0 0 416] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" + "id" "8274" + "plane" "(-568 -184 -144) (-572 -184 -144) (-572 -184 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 -40] 0.25" "rotation" "0" - "lightmapscale" "48" + "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7631" - "plane" "(-360 -56 -64) (-360 -56 -96) (-360 -120 -96)" - "material" "CONCRETE/UNDERGROUND_CONCRETE_TILE001B" - "uaxis" "[0 -1 0 480] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" + "id" "8273" + "plane" "(-568 184 -144) (-572 184 -144) (-572 -184 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 40] 0.25" + "vaxis" "[0 -1 0 40] 0.25" "rotation" "0" - "lightmapscale" "48" + "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7630" - "plane" "(-424 -120 -64) (-424 -120 -96) (-424 -56 -96)" - "material" "CONCRETE/UNDERGROUND_CONCRETE_TILE001B" - "uaxis" "[0 1 0 -480] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" + "id" "8272" + "plane" "(-568 -184 -96) (-572 -184 -96) (-572 184 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 40] 0.25" + "vaxis" "[0 -1 0 40] 0.25" "rotation" "0" - "lightmapscale" "48" + "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7629" - "plane" "(-360 -56 -96) (-424 -56 -96) (-424 -120 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "8271" + "plane" "(-568 184 -96) (-568 184 -144) (-568 -184 -144)" + "material" "TOOLS/TOOLSBLACK" + "uaxis" "[0 0 1 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -315,75 +315,75 @@ world } side { - "id" "7628" - "plane" "(-360 -120 -64) (-424 -120 -64) (-424 -56 -64)" - "material" "METAL/BLACK_FLOOR_METAL_001C_TEAMFLOOR" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[-1 0 0 -288] 0.25" + "id" "8270" + "plane" "(-572 -184 -96) (-572 -184 -144) (-572 184 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 40] 0.25" "rotation" "0" - "lightmapscale" "4" + "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 143 228" + "color" "0 254 207" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "64366" + "id" "68486" side { - "id" "7645" - "plane" "(-168 -120 -64) (-168 -120 -96) (-232 -120 -96)" - "material" "CONCRETE/UNDERGROUND_CONCRETE_TILE001B" - "uaxis" "[-1 0 0 -416] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" + "id" "8281" + "plane" "(-72 184 -152) (-568 184 -152) (-568 -184 -152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" "rotation" "0" - "lightmapscale" "48" + "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7644" - "plane" "(-232 -56 -64) (-232 -56 -96) (-168 -56 -96)" - "material" "CONCRETE/UNDERGROUND_CONCRETE_TILE001B" - "uaxis" "[1 0 0 416] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" + "id" "8280" + "plane" "(-568 184 -144) (-568 184 -152) (-72 184 -152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "48" + "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7643" - "plane" "(-168 -56 -64) (-168 -56 -96) (-168 -120 -96)" - "material" "CONCRETE/UNDERGROUND_CONCRETE_TILE001B" - "uaxis" "[0 -1 0 480] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" + "id" "8279" + "plane" "(-72 184 -144) (-72 184 -152) (-72 -184 -152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "48" + "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7642" - "plane" "(-232 -120 -64) (-232 -120 -96) (-232 -56 -96)" - "material" "CONCRETE/UNDERGROUND_CONCRETE_TILE001B" - "uaxis" "[0 1 0 -480] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" + "id" "8278" + "plane" "(-568 -184 -152) (-568 184 -152) (-568 184 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "48" + "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7641" - "plane" "(-168 -56 -96) (-232 -56 -96) (-232 -120 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "8277" + "plane" "(-568 -184 -144) (-568 184 -144) (-72 184 -144)" + "material" "BEE2/GOO/OLDAP_FAKE" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -391,289 +391,409 @@ world } side { - "id" "7640" - "plane" "(-168 -120 -64) (-232 -120 -64) (-232 -56 -64)" - "material" "METAL/BLACK_FLOOR_METAL_001C_TEAMFLOOR" - "uaxis" "[0 1 0 -288] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "8276" + "plane" "(-72 -184 -144) (-72 -184 -152) (-568 -184 -152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "4" + "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 221 238" + "color" "0 112 237" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "27243" + "id" "67987" side { - "id" "5706" - "plane" "(-68 64 -68) (-68 -64 -68) (-64 -64 -64)" - "material" "METAL/UNDERGROUND_BLACK_TILE001C" - "uaxis" "[0 -1 0 -768] 0.25" - "vaxis" "[-1 0 0 -256] 0.25" + "id" "8155" + "plane" "(-256 -188 -64) (-488 -188 -64) (-488 -188 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5705" - "plane" "(-68 -64 -68) (-68 64 -68) (-68 64 -64)" - "material" "METAL/UNDERGROUND_BLACK_TILE001C" - "uaxis" "[0 -1 0 -768] 0.25" - "vaxis" "[0 0 -1 256] 0.25" + "id" "8154" + "plane" "(-488 -184 -64) (-256 -184 -64) (-256 -184 64)" + "material" "METAL/UNDERGROUND_WALL_METAL001A" + "uaxis" "[-1 0 0 -416] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5704" - "plane" "(-68 -64 -64) (-68 64 -64) (-64 64 -64)" - "material" "CONCRETE/UNDERGROUND_CONCRETE_TILE001B" - "uaxis" "[0 -1 0 -768] 0.25" - "vaxis" "[-1 0 0 -256] 0.25" + "id" "8153" + "plane" "(-256 -184 -64) (-488 -184 -64) (-488 -188 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5703" - "plane" "(-68 64 -64) (-68 64 -68) (-64 64 -64)" - "material" "METAL/UNDERGROUND_BLACK_TILE001C" - "uaxis" "[1 0 0 256] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" + "id" "8152" + "plane" "(-256 -188 64) (-488 -188 64) (-488 -184 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5702" - "plane" "(-64 -64 -64) (-68 -64 -68) (-68 -64 -64)" - "material" "METAL/UNDERGROUND_BLACK_TILE001C" - "uaxis" "[1 0 0 256] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" + "id" "8151" + "plane" "(-488 -188 64) (-488 -188 -64) (-488 -184 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - editor + side { - "color" "0 176 101" + "id" "8150" + "plane" "(-256 -184 64) (-256 -184 -64) (-256 -188 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 178 239" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "27244" + "id" "68072" side { - "id" "5711" - "plane" "(-68 -64 -68) (-68 -68 -68) (-64 -64 -64)" - "material" "METAL/UNDERGROUND_BLACK_TILE001C" - "uaxis" "[0 -1 0 -768] 0.25" - "vaxis" "[-1 0 0 -256] 0.25" + "id" "8168" + "plane" "(-552 188 -64) (-552 184 -64) (-392 184 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5710" - "plane" "(-64 -64 -64) (-68 -68 -68) (-68 -68 -64)" - "material" "METAL/UNDERGROUND_BLACK_TILE001C" - "uaxis" "[1 0 0 256] 0.25" - "vaxis" "[0 0 -1 256] 0.25" + "id" "8169" + "plane" "(-552 184 320) (-552 188 320) (-392 188 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5709" - "plane" "(-68 -68 -64) (-68 -68 -68) (-68 -64 -68)" - "material" "METAL/UNDERGROUND_BLACK_TILE001C" - "uaxis" "[0 -1 0 -768] 0.25" - "vaxis" "[0 0 -1 256] 0.25" + "id" "8170" + "plane" "(-552 184 -64) (-552 188 -64) (-552 188 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5708" - "plane" "(-64 -64 -64) (-68 -68 -64) (-68 -64 -64)" - "material" "METAL/UNDERGROUND_BLACK_TILE001C" - "uaxis" "[0 -1 0 -768] 0.25" - "vaxis" "[-1 0 0 -256] 0.25" + "id" "8171" + "plane" "(-392 188 -64) (-392 184 -64) (-392 184 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5707" - "plane" "(-68 -64 -64) (-68 -64 -68) (-64 -64 -64)" - "material" "METAL/UNDERGROUND_BLACK_TILE001C" - "uaxis" "[1 0 0 256] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" + "id" "8172" + "plane" "(-392 184 -64) (-552 184 -64) (-552 184 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8173" + "plane" "(-552 188 -64) (-392 188 -64) (-392 188 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 218 247" + "color" "0 111 176" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "27245" + "id" "68087" side { - "id" "5716" - "plane" "(-64 -64 -64) (-68 -68 -64) (-68 -68 192)" - "material" "METAL/UNDERGROUND_BLACK_TILE001C" - "uaxis" "[1 0 0 256] 0.25" - "vaxis" "[0 0 -1 256] 0.25" + "id" "8198" + "plane" "(-264 188 -64) (-72 188 -64) (-72 188 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5715" - "plane" "(-68 -68 192) (-68 -68 -64) (-68 -64 -64)" - "material" "METAL/UNDERGROUND_BLACK_TILE001C" - "uaxis" "[0 -1 0 -768] 0.25" - "vaxis" "[0 0 -1 256] 0.25" + "id" "8199" + "plane" "(-72 184 -64) (-264 184 -64) (-264 184 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5714" - "plane" "(-68 -64 -64) (-68 -68 -64) (-64 -64 -64)" - "material" "METAL/UNDERGROUND_BLACK_TILE001C" - "uaxis" "[0 -1 0 -768] 0.25" - "vaxis" "[-1 0 0 -256] 0.25" + "id" "8200" + "plane" "(-72 188 -64) (-264 188 -64) (-264 184 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5713" - "plane" "(-64 -64 192) (-68 -68 192) (-68 -64 192)" - "material" "METAL/UNDERGROUND_BLACK_TILE001C" - "uaxis" "[0 -1 0 -768] 0.25" - "vaxis" "[-1 0 0 -256] 0.25" + "id" "8201" + "plane" "(-72 184 320) (-264 184 320) (-264 188 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5712" - "plane" "(-68 -64 192) (-68 -64 -64) (-64 -64 -64)" - "material" "METAL/UNDERGROUND_BLACK_TILE001C" - "uaxis" "[1 0 0 256] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" + "id" "8202" + "plane" "(-72 188 320) (-72 188 -64) (-72 184 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8203" + "plane" "(-264 184 320) (-264 184 -64) (-264 188 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 100 173" + "color" "0 129 230" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "27246" + "id" "64361" side { - "id" "5721" - "plane" "(-64 64 192) (-64 -64 192) (-68 -64 196)" - "material" "METAL/UNDERGROUND_BLACK_TILE001C" - "uaxis" "[0 -1 0 -768] 0.25" - "vaxis" "[-1 0 0 -256] 0.25" + "id" "7633" + "plane" "(-360 -120 -64) (-360 -120 -96) (-424 -120 -96)" + "material" "CONCRETE/UNDERGROUND_CONCRETE_TILE001B" + "uaxis" "[-1 0 0 -416] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "48" "smoothing_groups" "0" } side { - "id" "5720" - "plane" "(-68 -64 192) (-68 64 192) (-68 64 196)" - "material" "METAL/UNDERGROUND_BLACK_TILE001C" - "uaxis" "[0 -1 0 -768] 0.25" - "vaxis" "[0 0 -1 256] 0.25" + "id" "7632" + "plane" "(-424 -56 -64) (-424 -56 -96) (-360 -56 -96)" + "material" "CONCRETE/UNDERGROUND_CONCRETE_TILE001B" + "uaxis" "[1 0 0 416] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "48" "smoothing_groups" "0" } side { - "id" "5719" - "plane" "(-68 64 192) (-68 -64 192) (-64 -64 192)" - "material" "METAL/UNDERGROUND_WALL_METAL004A_TOP" - "uaxis" "[0 -1 0 -256] 0.25" - "vaxis" "[-1 0 0 -256] 0.25" + "id" "7631" + "plane" "(-360 -56 -64) (-360 -56 -96) (-360 -120 -96)" + "material" "CONCRETE/UNDERGROUND_CONCRETE_TILE001B" + "uaxis" "[0 -1 0 480] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "48" "smoothing_groups" "0" } side { - "id" "5718" - "plane" "(-64 64 192) (-68 64 196) (-68 64 192)" - "material" "METAL/UNDERGROUND_BLACK_TILE001C" - "uaxis" "[1 0 0 256] 0.25" + "id" "7630" + "plane" "(-424 -120 -64) (-424 -120 -96) (-424 -56 -96)" + "material" "CONCRETE/UNDERGROUND_CONCRETE_TILE001B" + "uaxis" "[0 1 0 -480] 0.25" "vaxis" "[0 0 -1 -256] 0.25" "rotation" "0" + "lightmapscale" "48" + "smoothing_groups" "0" + } + side + { + "id" "7629" + "plane" "(-360 -56 -96) (-424 -56 -96) (-424 -120 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5717" - "plane" "(-68 -64 196) (-64 -64 192) (-68 -64 192)" - "material" "METAL/UNDERGROUND_BLACK_TILE001C" - "uaxis" "[1 0 0 256] 0.25" + "id" "7628" + "plane" "(-360 -120 -64) (-424 -120 -64) (-424 -56 -64)" + "material" "METAL/BLACK_FLOOR_METAL_001C_TEAMFLOOR" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[-1 0 0 -288] 0.25" + "rotation" "0" + "lightmapscale" "4" + "smoothing_groups" "0" + } + editor + { + "color" "0 143 228" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "64366" + side + { + "id" "7645" + "plane" "(-168 -120 -64) (-168 -120 -96) (-232 -120 -96)" + "material" "CONCRETE/UNDERGROUND_CONCRETE_TILE001B" + "uaxis" "[-1 0 0 -416] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "48" + "smoothing_groups" "0" + } + side + { + "id" "7644" + "plane" "(-232 -56 -64) (-232 -56 -96) (-168 -56 -96)" + "material" "CONCRETE/UNDERGROUND_CONCRETE_TILE001B" + "uaxis" "[1 0 0 416] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "48" + "smoothing_groups" "0" + } + side + { + "id" "7643" + "plane" "(-168 -56 -64) (-168 -56 -96) (-168 -120 -96)" + "material" "CONCRETE/UNDERGROUND_CONCRETE_TILE001B" + "uaxis" "[0 -1 0 480] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "48" + "smoothing_groups" "0" + } + side + { + "id" "7642" + "plane" "(-232 -120 -64) (-232 -120 -96) (-232 -56 -96)" + "material" "CONCRETE/UNDERGROUND_CONCRETE_TILE001B" + "uaxis" "[0 1 0 -480] 0.25" "vaxis" "[0 0 -1 -256] 0.25" "rotation" "0" + "lightmapscale" "48" + "smoothing_groups" "0" + } + side + { + "id" "7641" + "plane" "(-168 -56 -96) (-232 -56 -96) (-232 -120 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } + side + { + "id" "7640" + "plane" "(-168 -120 -64) (-232 -120 -64) (-232 -56 -64)" + "material" "METAL/BLACK_FLOOR_METAL_001C_TEAMFLOOR" + "uaxis" "[0 1 0 -288] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "4" + "smoothing_groups" "0" + } editor { - "color" "0 250 239" + "color" "0 221 238" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "27247" + "id" "27243" side { - "id" "5726" - "plane" "(-64 -64 192) (-68 -68 196) (-68 -64 196)" + "id" "5706" + "plane" "(-68 64 -68) (-68 -64 -68) (-64 -64 -64)" "material" "METAL/UNDERGROUND_BLACK_TILE001C" "uaxis" "[0 -1 0 -768] 0.25" "vaxis" "[-1 0 0 -256] 0.25" @@ -683,10 +803,10 @@ world } side { - "id" "5725" - "plane" "(-68 -68 192) (-68 -68 196) (-64 -64 192)" + "id" "5705" + "plane" "(-68 -64 -68) (-68 64 -68) (-68 64 -64)" "material" "METAL/UNDERGROUND_BLACK_TILE001C" - "uaxis" "[1 0 0 256] 0.25" + "uaxis" "[0 -1 0 -768] 0.25" "vaxis" "[0 0 -1 256] 0.25" "rotation" "0" "lightmapscale" "16" @@ -694,30 +814,30 @@ world } side { - "id" "5724" - "plane" "(-68 -64 196) (-68 -68 196) (-68 -68 192)" - "material" "METAL/UNDERGROUND_BLACK_TILE001C" + "id" "5704" + "plane" "(-68 -64 -64) (-68 64 -64) (-64 64 -64)" + "material" "CONCRETE/UNDERGROUND_CONCRETE_TILE001B" "uaxis" "[0 -1 0 -768] 0.25" - "vaxis" "[0 0 -1 256] 0.25" + "vaxis" "[-1 0 0 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5723" - "plane" "(-68 -64 192) (-68 -68 192) (-64 -64 192)" + "id" "5703" + "plane" "(-68 64 -64) (-68 64 -68) (-64 64 -64)" "material" "METAL/UNDERGROUND_BLACK_TILE001C" - "uaxis" "[0 -1 0 -768] 0.25" - "vaxis" "[-1 0 0 -256] 0.25" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5722" - "plane" "(-64 -64 192) (-68 -64 196) (-68 -64 192)" + "id" "5702" + "plane" "(-64 -64 -64) (-68 -64 -68) (-68 -64 -64)" "material" "METAL/UNDERGROUND_BLACK_TILE001C" "uaxis" "[1 0 0 256] 0.25" "vaxis" "[0 0 -1 -256] 0.25" @@ -727,18 +847,18 @@ world } editor { - "color" "0 180 221" + "color" "0 176 101" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "27248" + "id" "27244" side { - "id" "5731" - "plane" "(-64 64 -64) (-68 68 -68) (-68 64 -68)" + "id" "5711" + "plane" "(-68 -64 -68) (-68 -68 -68) (-64 -64 -64)" "material" "METAL/UNDERGROUND_BLACK_TILE001C" "uaxis" "[0 -1 0 -768] 0.25" "vaxis" "[-1 0 0 -256] 0.25" @@ -748,8 +868,8 @@ world } side { - "id" "5730" - "plane" "(-68 68 -64) (-68 68 -68) (-64 64 -64)" + "id" "5710" + "plane" "(-64 -64 -64) (-68 -68 -68) (-68 -68 -64)" "material" "METAL/UNDERGROUND_BLACK_TILE001C" "uaxis" "[1 0 0 256] 0.25" "vaxis" "[0 0 -1 256] 0.25" @@ -759,8 +879,8 @@ world } side { - "id" "5729" - "plane" "(-68 64 -68) (-68 68 -68) (-68 68 -64)" + "id" "5709" + "plane" "(-68 -68 -64) (-68 -68 -68) (-68 -64 -68)" "material" "METAL/UNDERGROUND_BLACK_TILE001C" "uaxis" "[0 -1 0 -768] 0.25" "vaxis" "[0 0 -1 256] 0.25" @@ -770,8 +890,8 @@ world } side { - "id" "5728" - "plane" "(-68 64 -64) (-68 68 -64) (-64 64 -64)" + "id" "5708" + "plane" "(-64 -64 -64) (-68 -68 -64) (-68 -64 -64)" "material" "METAL/UNDERGROUND_BLACK_TILE001C" "uaxis" "[0 -1 0 -768] 0.25" "vaxis" "[-1 0 0 -256] 0.25" @@ -781,8 +901,8 @@ world } side { - "id" "5727" - "plane" "(-64 64 -64) (-68 64 -68) (-68 64 -64)" + "id" "5707" + "plane" "(-68 -64 -64) (-68 -64 -68) (-64 -64 -64)" "material" "METAL/UNDERGROUND_BLACK_TILE001C" "uaxis" "[1 0 0 256] 0.25" "vaxis" "[0 0 -1 -256] 0.25" @@ -792,18 +912,18 @@ world } editor { - "color" "0 110 171" + "color" "0 218 247" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "27249" + "id" "27245" side { - "id" "5736" - "plane" "(-68 68 192) (-68 68 -64) (-64 64 -64)" + "id" "5716" + "plane" "(-64 -64 -64) (-68 -68 -64) (-68 -68 192)" "material" "METAL/UNDERGROUND_BLACK_TILE001C" "uaxis" "[1 0 0 256] 0.25" "vaxis" "[0 0 -1 256] 0.25" @@ -813,8 +933,8 @@ world } side { - "id" "5735" - "plane" "(-68 64 -64) (-68 68 -64) (-68 68 192)" + "id" "5715" + "plane" "(-68 -68 192) (-68 -68 -64) (-68 -64 -64)" "material" "METAL/UNDERGROUND_BLACK_TILE001C" "uaxis" "[0 -1 0 -768] 0.25" "vaxis" "[0 0 -1 256] 0.25" @@ -824,8 +944,8 @@ world } side { - "id" "5734" - "plane" "(-64 64 -64) (-68 68 -64) (-68 64 -64)" + "id" "5714" + "plane" "(-68 -64 -64) (-68 -68 -64) (-64 -64 -64)" "material" "METAL/UNDERGROUND_BLACK_TILE001C" "uaxis" "[0 -1 0 -768] 0.25" "vaxis" "[-1 0 0 -256] 0.25" @@ -835,8 +955,8 @@ world } side { - "id" "5733" - "plane" "(-68 64 192) (-68 68 192) (-64 64 192)" + "id" "5713" + "plane" "(-64 -64 192) (-68 -68 192) (-68 -64 192)" "material" "METAL/UNDERGROUND_BLACK_TILE001C" "uaxis" "[0 -1 0 -768] 0.25" "vaxis" "[-1 0 0 -256] 0.25" @@ -846,8 +966,8 @@ world } side { - "id" "5732" - "plane" "(-64 64 192) (-64 64 -64) (-68 64 -64)" + "id" "5712" + "plane" "(-68 -64 192) (-68 -64 -64) (-64 -64 -64)" "material" "METAL/UNDERGROUND_BLACK_TILE001C" "uaxis" "[1 0 0 256] 0.25" "vaxis" "[0 0 -1 -256] 0.25" @@ -857,18 +977,18 @@ world } editor { - "color" "0 192 225" + "color" "0 100 173" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "27250" + "id" "27246" side { - "id" "5741" - "plane" "(-68 68 196) (-64 64 192) (-68 64 196)" + "id" "5721" + "plane" "(-64 64 192) (-64 -64 192) (-68 -64 196)" "material" "METAL/UNDERGROUND_BLACK_TILE001C" "uaxis" "[0 -1 0 -768] 0.25" "vaxis" "[-1 0 0 -256] 0.25" @@ -878,10 +998,10 @@ world } side { - "id" "5740" - "plane" "(-64 64 192) (-68 68 196) (-68 68 192)" + "id" "5720" + "plane" "(-68 -64 192) (-68 64 192) (-68 64 196)" "material" "METAL/UNDERGROUND_BLACK_TILE001C" - "uaxis" "[1 0 0 256] 0.25" + "uaxis" "[0 -1 0 -768] 0.25" "vaxis" "[0 0 -1 256] 0.25" "rotation" "0" "lightmapscale" "16" @@ -889,30 +1009,30 @@ world } side { - "id" "5739" - "plane" "(-68 64 192) (-68 68 192) (-68 68 196)" - "material" "METAL/UNDERGROUND_BLACK_TILE001C" - "uaxis" "[0 -1 0 -768] 0.25" - "vaxis" "[0 0 -1 256] 0.25" + "id" "5719" + "plane" "(-68 64 192) (-68 -64 192) (-64 -64 192)" + "material" "METAL/UNDERGROUND_WALL_METAL004A_TOP" + "uaxis" "[0 -1 0 -256] 0.25" + "vaxis" "[-1 0 0 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5738" - "plane" "(-64 64 192) (-68 68 192) (-68 64 192)" + "id" "5718" + "plane" "(-64 64 192) (-68 64 196) (-68 64 192)" "material" "METAL/UNDERGROUND_BLACK_TILE001C" - "uaxis" "[0 -1 0 -768] 0.25" - "vaxis" "[-1 0 0 -256] 0.25" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5737" - "plane" "(-68 64 196) (-64 64 192) (-68 64 192)" + "id" "5717" + "plane" "(-68 -64 196) (-64 -64 192) (-68 -64 192)" "material" "METAL/UNDERGROUND_BLACK_TILE001C" "uaxis" "[1 0 0 256] 0.25" "vaxis" "[0 0 -1 -256] 0.25" @@ -922,62 +1042,62 @@ world } editor { - "color" "0 242 127" + "color" "0 250 239" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "27251" + "id" "27247" side { - "id" "5747" - "plane" "(-68 188 192) (-68 188 -64) (-68 64 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "5726" + "plane" "(-64 -64 192) (-68 -68 196) (-68 -64 196)" + "material" "METAL/UNDERGROUND_BLACK_TILE001C" + "uaxis" "[0 -1 0 -768] 0.25" + "vaxis" "[-1 0 0 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5746" - "plane" "(-72 188 192) (-72 188 -64) (-68 188 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "5725" + "plane" "(-68 -68 192) (-68 -68 196) (-64 -64 192)" + "material" "METAL/UNDERGROUND_BLACK_TILE001C" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5745" - "plane" "(-72 188 -64) (-72 188 192) (-72 64 192)" + "id" "5724" + "plane" "(-68 -64 196) (-68 -68 196) (-68 -68 192)" "material" "METAL/UNDERGROUND_BLACK_TILE001C" - "uaxis" "[0 -1 0 -800] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" + "uaxis" "[0 -1 0 -768] 0.25" + "vaxis" "[0 0 -1 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5744" - "plane" "(-72 64 192) (-72 188 192) (-68 188 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "5723" + "plane" "(-68 -64 192) (-68 -68 192) (-64 -64 192)" + "material" "METAL/UNDERGROUND_BLACK_TILE001C" + "uaxis" "[0 -1 0 -768] 0.25" + "vaxis" "[-1 0 0 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5743" - "plane" "(-68 64 192) (-68 64 -64) (-72 64 -64)" + "id" "5722" + "plane" "(-64 -64 192) (-68 -64 196) (-68 -64 192)" "material" "METAL/UNDERGROUND_BLACK_TILE001C" "uaxis" "[1 0 0 256] 0.25" "vaxis" "[0 0 -1 -256] 0.25" @@ -985,261 +1105,217 @@ world "lightmapscale" "16" "smoothing_groups" "0" } - side - { - "id" "5742" - "plane" "(-68 64 -64) (-68 188 -64) (-72 188 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } editor { - "color" "0 172 101" + "color" "0 180 221" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "27252" - side - { - "id" "5753" - "plane" "(-68 188 -64) (-68 188 -188) (-68 -188 -188)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "27248" side { - "id" "5752" - "plane" "(-68 -188 -188) (-68 188 -188) (-72 188 -188)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "5731" + "plane" "(-64 64 -64) (-68 68 -68) (-68 64 -68)" + "material" "METAL/UNDERGROUND_BLACK_TILE001C" + "uaxis" "[0 -1 0 -768] 0.25" + "vaxis" "[-1 0 0 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5751" - "plane" "(-72 188 -64) (-72 188 -188) (-68 188 -188)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "5730" + "plane" "(-68 68 -64) (-68 68 -68) (-64 64 -64)" + "material" "METAL/UNDERGROUND_BLACK_TILE001C" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5750" - "plane" "(-72 -188 -64) (-72 -188 -188) (-72 188 -188)" - "material" "TOOLS/TOOLSBLACK" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "5729" + "plane" "(-68 64 -68) (-68 68 -68) (-68 68 -64)" + "material" "METAL/UNDERGROUND_BLACK_TILE001C" + "uaxis" "[0 -1 0 -768] 0.25" + "vaxis" "[0 0 -1 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5749" - "plane" "(-68 -188 -64) (-68 -188 -188) (-72 -188 -188)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "5728" + "plane" "(-68 64 -64) (-68 68 -64) (-64 64 -64)" + "material" "METAL/UNDERGROUND_BLACK_TILE001C" + "uaxis" "[0 -1 0 -768] 0.25" + "vaxis" "[-1 0 0 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5748" - "plane" "(-72 -188 -64) (-72 188 -64) (-68 188 -64)" - "material" "CONCRETE/UNDERGROUND_CONCRETE_TILE001B" - "uaxis" "[0 -1 0 -768] 0.25" - "vaxis" "[-1 0 0 -256] 0.25" + "id" "5727" + "plane" "(-64 64 -64) (-68 64 -68) (-68 64 -64)" + "material" "METAL/UNDERGROUND_BLACK_TILE001C" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 174 143" + "color" "0 110 171" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "27253" - side - { - "id" "5759" - "plane" "(-72 188 -188) (-568 188 -188) (-568 -188 -188)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "27249" side { - "id" "5758" - "plane" "(-568 188 -184) (-568 188 -188) (-72 188 -188)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "5736" + "plane" "(-68 68 192) (-68 68 -64) (-64 64 -64)" + "material" "METAL/UNDERGROUND_BLACK_TILE001C" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5757" - "plane" "(-72 188 -184) (-72 188 -188) (-72 -188 -188)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "5735" + "plane" "(-68 64 -64) (-68 68 -64) (-68 68 192)" + "material" "METAL/UNDERGROUND_BLACK_TILE001C" + "uaxis" "[0 -1 0 -768] 0.25" + "vaxis" "[0 0 -1 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5756" - "plane" "(-568 -188 -188) (-568 188 -188) (-568 188 -184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "5734" + "plane" "(-64 64 -64) (-68 68 -64) (-68 64 -64)" + "material" "METAL/UNDERGROUND_BLACK_TILE001C" + "uaxis" "[0 -1 0 -768] 0.25" + "vaxis" "[-1 0 0 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5755" - "plane" "(-568 -188 -184) (-568 188 -184) (-72 188 -184)" - "material" "TOOLS/TOOLSBLACK" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "id" "5733" + "plane" "(-68 64 192) (-68 68 192) (-64 64 192)" + "material" "METAL/UNDERGROUND_BLACK_TILE001C" + "uaxis" "[0 -1 0 -768] 0.25" + "vaxis" "[-1 0 0 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5754" - "plane" "(-72 -188 -184) (-72 -188 -188) (-568 -188 -188)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "5732" + "plane" "(-64 64 192) (-64 64 -64) (-68 64 -64)" + "material" "METAL/UNDERGROUND_BLACK_TILE001C" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 112 237" + "color" "0 192 225" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "27254" - side - { - "id" "5765" - "plane" "(-392 188 80) (-392 188 -64) (-264 188 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "27250" side { - "id" "5764" - "plane" "(-264 188 80) (-264 188 -64) (-264 184 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "5741" + "plane" "(-68 68 196) (-64 64 192) (-68 64 196)" + "material" "METAL/UNDERGROUND_BLACK_TILE001C" + "uaxis" "[0 -1 0 -768] 0.25" + "vaxis" "[-1 0 0 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5763" - "plane" "(-392 184 80) (-392 184 -64) (-392 188 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "5740" + "plane" "(-64 64 192) (-68 68 196) (-68 68 192)" + "material" "METAL/UNDERGROUND_BLACK_TILE001C" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5762" - "plane" "(-264 184 80) (-264 184 -64) (-392 184 -64)" - "material" "WOOD/UNDERGROUND_WOODTRIM001A" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" + "id" "5739" + "plane" "(-68 64 192) (-68 68 192) (-68 68 196)" + "material" "METAL/UNDERGROUND_BLACK_TILE001C" + "uaxis" "[0 -1 0 -768] 0.25" + "vaxis" "[0 0 -1 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5761" - "plane" "(-392 184 80) (-392 188 80) (-264 188 80)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "5738" + "plane" "(-64 64 192) (-68 68 192) (-68 64 192)" + "material" "METAL/UNDERGROUND_BLACK_TILE001C" + "uaxis" "[0 -1 0 -768] 0.25" + "vaxis" "[-1 0 0 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5760" - "plane" "(-264 188 -64) (-392 188 -64) (-392 184 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "5737" + "plane" "(-68 64 196) (-64 64 192) (-68 64 192)" + "material" "METAL/UNDERGROUND_BLACK_TILE001C" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 194 159" + "color" "0 242 127" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "27255" + "id" "27251" side { - "id" "5771" - "plane" "(-568 188 -64) (-568 188 -184) (-72 188 -184)" + "id" "5747" + "plane" "(-68 188 192) (-68 188 -64) (-68 64 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1247,10 +1323,10 @@ world } side { - "id" "5770" - "plane" "(-72 188 -64) (-72 188 -184) (-72 184 -184)" + "id" "5746" + "plane" "(-72 188 192) (-72 188 -64) (-68 188 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1258,21 +1334,21 @@ world } side { - "id" "5769" - "plane" "(-568 184 -64) (-568 184 -184) (-568 188 -184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "5745" + "plane" "(-72 188 -64) (-72 188 192) (-72 64 192)" + "material" "METAL/UNDERGROUND_BLACK_TILE001C" + "uaxis" "[0 -1 0 -800] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5768" - "plane" "(-72 188 -184) (-568 188 -184) (-568 184 -184)" + "id" "5744" + "plane" "(-72 64 192) (-72 188 192) (-68 188 192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1280,21 +1356,21 @@ world } side { - "id" "5767" - "plane" "(-72 184 -64) (-72 184 -184) (-568 184 -184)" - "material" "TOOLS/TOOLSBLACK" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "5743" + "plane" "(-68 64 192) (-68 64 -64) (-72 64 -64)" + "material" "METAL/UNDERGROUND_BLACK_TILE001C" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5766" - "plane" "(-568 184 -64) (-568 188 -64) (-72 188 -64)" + "id" "5742" + "plane" "(-68 64 -64) (-68 188 -64) (-72 188 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1302,20 +1378,20 @@ world } editor { - "color" "0 144 185" + "color" "0 172 101" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "27256" + "id" "27254" side { - "id" "5777" - "plane" "(-72 -188 352) (-72 -188 64) (-488 -188 64)" + "id" "5765" + "plane" "(-392 188 80) (-392 188 -64) (-264 188 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1323,8 +1399,8 @@ world } side { - "id" "5776" - "plane" "(-72 -184 352) (-72 -184 64) (-72 -188 64)" + "id" "5764" + "plane" "(-264 188 80) (-264 188 -64) (-264 184 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1334,30 +1410,30 @@ world } side { - "id" "5775" - "plane" "(-488 -184 64) (-72 -184 64) (-72 -184 352)" - "material" "METAL/UNDERGROUND_WALL_METAL001A" - "uaxis" "[-1 0 0 -416] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" + "id" "5763" + "plane" "(-392 184 80) (-392 184 -64) (-392 188 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5774" - "plane" "(-488 -188 64) (-72 -188 64) (-72 -184 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "5762" + "plane" "(-264 184 80) (-264 184 -64) (-392 184 -64)" + "material" "WOOD/UNDERGROUND_WOODTRIM001A" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5773" - "plane" "(-72 -188 352) (-488 -188 352) (-488 -184 352)" + "id" "5761" + "plane" "(-392 184 80) (-392 188 80) (-264 188 80)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -1367,29 +1443,29 @@ world } side { - "id" "5772" - "plane" "(-488 -188 352) (-488 -188 64) (-488 -184 64)" + "id" "5760" + "plane" "(-264 188 -64) (-392 188 -64) (-392 184 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 178 239" + "color" "0 194 159" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "27257" + "id" "27256" side { - "id" "5783" - "plane" "(-72 -188 -64) (-72 -188 -184) (-568 -188 -184)" + "id" "5777" + "plane" "(-72 -188 352) (-72 -188 64) (-488 -188 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1399,8 +1475,8 @@ world } side { - "id" "5782" - "plane" "(-72 -184 -64) (-72 -184 -184) (-72 -188 -184)" + "id" "5776" + "plane" "(-72 -184 352) (-72 -184 64) (-72 -188 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1410,19 +1486,19 @@ world } side { - "id" "5781" - "plane" "(-568 -188 -64) (-568 -188 -184) (-568 -184 -184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "5775" + "plane" "(-488 -184 64) (-72 -184 64) (-72 -184 352)" + "material" "METAL/UNDERGROUND_WALL_METAL001A" + "uaxis" "[-1 0 0 -416] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5780" - "plane" "(-568 -184 -184) (-568 -188 -184) (-72 -188 -184)" + "id" "5774" + "plane" "(-488 -188 64) (-72 -188 64) (-72 -184 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -1432,29 +1508,29 @@ world } side { - "id" "5779" - "plane" "(-568 -184 -64) (-568 -184 -184) (-72 -184 -184)" - "material" "TOOLS/TOOLSBLACK" + "id" "5773" + "plane" "(-72 -188 352) (-488 -188 352) (-488 -184 352)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "5778" - "plane" "(-72 -188 -64) (-568 -188 -64) (-568 -184 -64)" + "id" "5772" + "plane" "(-488 -188 352) (-488 -188 64) (-488 -184 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 100 141" + "color" "0 178 239" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -1688,82 +1764,6 @@ world } } solid - { - "id" "27262" - side - { - "id" "5813" - "plane" "(-572 -188 444) (-572 -188 -188) (-572 188 -188)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5812" - "plane" "(-572 188 -188) (-572 -188 -188) (-568 -188 -188)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5811" - "plane" "(-568 -188 444) (-568 -188 -188) (-572 -188 -188)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5810" - "plane" "(-568 188 444) (-568 188 -188) (-568 -188 -188)" - "material" "TOOLS/TOOLSBLACK" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5809" - "plane" "(-572 188 444) (-572 188 -188) (-568 188 -188)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5808" - "plane" "(-568 -188 444) (-572 -188 444) (-572 188 444)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 198 175" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid { "id" "27263" side @@ -1840,82 +1840,6 @@ world } } solid - { - "id" "27264" - side - { - "id" "5825" - "plane" "(-568 -184 -160) (-568 -184 -184) (-568 184 -184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5824" - "plane" "(-72 184 -160) (-72 184 -184) (-72 -184 -184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5823" - "plane" "(-72 -184 -160) (-72 -184 -184) (-568 -184 -184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5822" - "plane" "(-568 184 -160) (-568 184 -184) (-72 184 -184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5821" - "plane" "(-568 184 -184) (-568 -184 -184) (-72 -184 -184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5820" - "plane" "(-568 -184 -160) (-568 184 -160) (-72 184 -160)" - "material" "LIQUIDS/WATER_UNDERGROUND_CAVE" - "uaxis" "[1 0 0 215.308] 4" - "vaxis" "[0 -1 0 701.939] 4" - "rotation" "0" - "lightmapscale" "32" - "smoothing_groups" "0" - } - editor - { - "color" "0 206 191" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid { "id" "27439" side @@ -3884,6 +3808,7 @@ entity "_lightscaleHDR" "1" "_linear_attn" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "0" "angles" "0 0 0" "style" "0" @@ -3929,6 +3854,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 315 90" "pitch" "0" "origin" "-375 176 -18" @@ -3949,6 +3875,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 0 0" "origin" "-369 169 30" editor @@ -3967,6 +3894,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 0 0" "origin" "-369 169 -18" editor @@ -3988,6 +3916,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 315 90" "pitch" "0" "origin" "-369 176 30" @@ -4030,6 +3959,7 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0.3" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 0 0" "origin" "-229.674 117 149.125" editor @@ -4049,6 +3979,7 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0.3" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 0 0" "origin" "-181.674 117 149.125" editor @@ -4422,6 +4353,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "300" "angles" "0 0 0" "origin" "-200 -88 152" @@ -5010,6 +4942,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "-45 0 180" "pitch" "-45" "origin" "-535 68 190" @@ -5030,6 +4963,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 0 0" "origin" "-533 20 182" editor @@ -5049,6 +4983,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 0 0" "origin" "-533 68 182" editor @@ -5071,6 +5006,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "-45 0 180" "pitch" "-45" "origin" "-529 20 190" diff --git a/packages/styles/oldAp/styles/1950s/vbsp_config.cfg b/packages/styles/oldAp/styles/1950s/vbsp_config.cfg index 7d9646536f..7a5fe8643a 100644 --- a/packages/styles/oldAp/styles/1950s/vbsp_config.cfg +++ b/packages/styles/oldAp/styles/1950s/vbsp_config.cfg @@ -129,8 +129,6 @@ "Edge" "wood/underground_plywood_01a" "Panel_Edge" "anim_wp/framework/squarebeams_rusty_01" // Panel surfaces, etc - "Glass" "glass/glasswindow007a_less_shiny" - "Grating" "metal/underground_metalgrate001a" // Added to top/bottom of fizzlers "fizz_border" "overlays/rubber_stripe001a" @@ -177,9 +175,6 @@ "remove_pedestal_plat" "1" "force_brush_reflect" "1" - - "glass_template" "BEE2_GLASS_TEMPLATE_50S" - "grating_template" "BEE2_GRATING_TEMPLATE_SQUARE" "global_pti_ents" "instances/BEE2/global_pti_ents.vmf" diff --git a/packages/styles/oldAp/styles/1960s/vbsp_config.cfg b/packages/styles/oldAp/styles/1960s/vbsp_config.cfg index 7b203104e4..8396a3b11e 100644 --- a/packages/styles/oldAp/styles/1960s/vbsp_config.cfg +++ b/packages/styles/oldAp/styles/1960s/vbsp_config.cfg @@ -127,8 +127,6 @@ "Edge" "wood/underground_plywood_01a" "Panel_Edge" "anim_wp/framework/squarebeams_rusty_01" // Panel surfaces, etc - "Glass" "glass/glasswindow007a_less_shiny" - "Grating" "metal/underground_metalgrate001a" // Added to top/bottom of fizzlers "fizz_border" "overlays/rubber_stripe001a" @@ -177,9 +175,6 @@ "force_brush_reflect" "1" - "glass_template" "BEE2_GLASS_TEMPLATE_50S" - "grating_template" "BEE2_GRATING_TEMPLATE_SQUARE" - "global_pti_ents" "instances/BEE2/global_pti_ents.vmf" "music_location_sp" "-2824 2040 -768" diff --git a/packages/styles/oldAp/styles/1970s/vbsp_config.cfg b/packages/styles/oldAp/styles/1970s/vbsp_config.cfg index a10477fd22..e9c3dec8aa 100644 --- a/packages/styles/oldAp/styles/1970s/vbsp_config.cfg +++ b/packages/styles/oldAp/styles/1970s/vbsp_config.cfg @@ -113,9 +113,6 @@ "Edge" "wood/underground_plywood_01a_bottom" "Panel_Edge" "anim_wp/framework/squarebeams_rusty_01" // Panel surfaces, etc - - "Glass" "glass/glasswindow_frosted" - "Grating" "metal/underground_metalgrate001a" } "Overlay" { @@ -162,9 +159,6 @@ "global_pti_ents" "instances/BEE2/global_pti_ents.vmf" "music_location_sp" "-4500 4000 0" - - "glass_template" "BEE2_GLASS_TEMPLATE_70S" - "grating_template" "BEE2_GRATING_TEMPLATE_SQUARE" "signExitInst" "instances/BEE2/70s/sphere_sp/exit_sign/sign.vmf" "remove_exit_signs_dual" "1" diff --git a/packages/styles/oldAp/styles/1980s/vbsp_config.cfg b/packages/styles/oldAp/styles/1980s/vbsp_config.cfg index 401b3b4234..e8ea7751f0 100644 --- a/packages/styles/oldAp/styles/1980s/vbsp_config.cfg +++ b/packages/styles/oldAp/styles/1980s/vbsp_config.cfg @@ -114,8 +114,6 @@ "Edge" "anim_wp/framework/squarebeams_rusty_01" "Panel_Edge" "anim_wp/framework/squarebeams_rusty_01" - "Glass" "glass/glasswindow_frosted" - "Grating" "metal/underground_metalgrate001b" } "Overlays" { @@ -152,9 +150,6 @@ "remove_pedestal_plat" "1" "force_Brush_reflect" "1" - - "glass_template" "BEE2_GLASS_TEMPLATE_70S" - "grating_template" "BEE2_GRATING_TEMPLATE_SQUARE" "signExitInst" "instances/BEE2/80s/sphere_sp/exit_sign.vmf" "remove_exit_signs_dual" "1" diff --git a/packages/styles/oldAp/templates/glass_frame_corner.vmf b/packages/styles/oldAp/templates/glass_frame_corner.vmf new file mode 100644 index 0000000000..b16f7afa20 --- /dev/null +++ b/packages/styles/oldAp/templates/glass_frame_corner.vmf @@ -0,0 +1,143 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "72" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "4" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "72" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" +} +entity +{ + "id" "667" + "classname" "bee2_template_conf" + "detail_auto_visgroup" "0" + "discard_brushes" "0" + "temp_type" "default" + "template_id" "BEE2_GLASS_SQUAREBEAMS_FRAME_CORNER" + "origin" "0 0 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "659" + "classname" "func_detail" + solid + { + "id" "660" + side + { + "id" "59" + "plane" "(4 0 0) (0 0 0) (0 0 3.97283)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 44] 0.25" + "vaxis" "[1 0 0 256] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58" + "plane" "(0 4 0) (4 4 0) (4 4 3.97283)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 44] 0.25" + "vaxis" "[1 0 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57" + "plane" "(4 4 0) (0 4 0) (0 0 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 -1 0 60] 0.25" + "vaxis" "[-1 0 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56" + "plane" "(4 0 3.973) (0 0 3.973) (0 4 3.973)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 -1 0 60] 0.25" + "vaxis" "[-1 0 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55" + "plane" "(0 0 3.97266) (0 0 0) (0 4 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 -468] 0.25" + "vaxis" "[0 -1 0 272] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "54" + "plane" "(4 4 3.97266) (4 4 0) (4 0 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 1 0 45] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 -10768]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/styles/oldAp/templates/glass_frame_straight.vmf b/packages/styles/oldAp/templates/glass_frame_straight.vmf new file mode 100644 index 0000000000..1599972271 --- /dev/null +++ b/packages/styles/oldAp/templates/glass_frame_straight.vmf @@ -0,0 +1,143 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "72" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "4" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "72" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" +} +entity +{ + "id" "667" + "classname" "bee2_template_conf" + "detail_auto_visgroup" "0" + "discard_brushes" "0" + "temp_type" "default" + "template_id" "BEE2_GLASS_SQUAREBEAMS_FRAME_STRAIGHT" + "origin" "0 0 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "659" + "classname" "func_detail" + solid + { + "id" "660" + side + { + "id" "59" + "plane" "(64 -4 0) (-3.33786e-006 -4 0) (-3.33786e-006 -4 3.97283)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 44] 0.25" + "vaxis" "[1 0 0 256] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58" + "plane" "(-3.33786e-006 0 0) (64 0 0) (64 0 3.97283)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 44] 0.25" + "vaxis" "[1 0 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57" + "plane" "(64 0 0) (-3.33786e-006 0 0) (-3.33786e-006 -4 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 -1 0 44] 0.25" + "vaxis" "[-1 0 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56" + "plane" "(64 -4 3.973) (-3.33786e-006 -4 3.973) (-3.33786e-006 0 3.973)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 -1 0 44] 0.25" + "vaxis" "[-1 0 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55" + "plane" "(-3.33786e-006 -4 3.97266) (-3.33786e-006 -4 0) (-3.33786e-006 0 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 1 -468] 0.25" + "vaxis" "[0 -1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "54" + "plane" "(64 0 3.97266) (64 0 0) (64 -4 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 1 0 61] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 -10768]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/styles/oldAp/voice/cave_80s.cfg b/packages/styles/oldAp/voice/cave_80s.cfg index ba43405611..719270c8b6 100644 --- a/packages/styles/oldAp/voice/cave_80s.cfg +++ b/packages/styles/oldAp/voice/cave_80s.cfg @@ -90,6 +90,7 @@ "Line_SP" { + "ID" "WELCOME_APERTURE" "Name" "Welcome to Aperture Science" "Trans" "Cave Johnson: Welcome to the enrichment center. [cough]" @@ -98,6 +99,7 @@ } "Line_COOP" { + "ID" "MANDATORY_TESTS" "Name" "Test Participation Is Mandatory" "Trans" "Cave Johnson: Since making test participation mandatory for all employees, the quality of our test subjects has risen dramatically. Employee retention, however, has not." "Trans" "Cave Johnson: [cough] As a result, you may have heard we're gonna phase out human testing. There's still a few things left to wrap up, though." diff --git a/packages/styles/oldAp/voice/glados_vault.cfg b/packages/styles/oldAp/voice/glados_vault.cfg index 32cadef0b7..81d4edc7b3 100644 --- a/packages/styles/oldAp/voice/glados_vault.cfg +++ b/packages/styles/oldAp/voice/glados_vault.cfg @@ -124,7 +124,7 @@ "Quote" { - "Has" "CubeNonCompanion" + "Has" "CubeNotCompanion" "Name" "Cube Fizzled (Non-Companion)" "Line" { @@ -454,11 +454,10 @@ "Trans" "GLaDOS: Enjoy this next test. I'm going to go to the surface. It's a beautiful day out. Yesterday I saw a deer. If you solve this next test, maybe I'll let you ride an elevator all the way up to the break room, and I'll tell you about the time I saw a deer again." "Choreo" "scenes/npc/glados/sp_a2_ricochet01.vcd" } - - "Line_COOP" + "Line_Robot" { "Name" "Build Bridges Out Of Tears" - "ID" "LIGHT_BRIDGE_1" + "ID" "LIGHT_BRIDGE_BUILDING" "Trans" "GLaDOS: This is a bridge-building exercise. The humans were miserable at this, mostly because you can't build bridges out of tears." "Choreo" "scenes/npc/glados/mp_coop_catapult_2.vcd" } @@ -570,8 +569,9 @@ "Name" "Sendificator" "Line_Robot" { + // This is duplicated to raise it in priority. "Name" "Deadly Lasers" - "ID" "LASER_1" + "ID" "SENDIFICATOR_LASER" "Trans" "GLaDOS: Please proceed into the next test chamber." "Trans" "GLaDOS: Which involves deadly lasers and how test subjects react when locked in a room with deadly lasers." "Choreo" @@ -643,18 +643,18 @@ "Has" "Deadly" "Priority" "2" "Name" "Deadly" - "Line_SP" + "Line_Human" { "Name" "Nerve To Call It Broken" - "ID" "DEADLY_1" + "ID" "DEADLY_BROKEN" "Trans" "GLaDOS: Congratulations. Your ability to complete this test proves the humans wrong. They described it as impossible, deadly, cruel, and one test subject even had the nerve to call it broken." "Choreo" "scenes/npc/glados/mp_coop_wall_block03.vcd" } - "Line_COOP" + "Line_Robot" { "Name" "You Can Just Keep Trying" - "ID" "DEADLY_1" + "ID" "DEADLY_KEEP_TRYING" "Trans" "GLaDOS: Congratulations. Your ability to complete this test proves the humans wrong. They described it as impossible, deadly, cruel, and one test subject even had the nerve to call it broken." "Trans" "GLaDOS: Of course the humans only had one try at it, you can just keep trying." "File" "clean/exit_deadly_coop.vmf" diff --git a/packages/styles/overgrown/info.txt b/packages/styles/overgrown/info.txt index 9867f056b7..09a0fc7932 100644 --- a/packages/styles/overgrown/info.txt +++ b/packages/styles/overgrown/info.txt @@ -649,7 +649,11 @@ { "Styles" { - "BEE2_OVERGROWN" "glass" + "BEE2_OVERGROWN" + { + "Base" "BEE2_CLEAN" + "Config" "glass.cfg" + } } } } diff --git a/packages/styles/overgrown/items/glass.cfg b/packages/styles/overgrown/items/glass.cfg new file mode 100644 index 0000000000..7201305789 --- /dev/null +++ b/packages/styles/overgrown/items/glass.cfg @@ -0,0 +1,224 @@ +"BarrierFrames" + { + "BEE2_MODERN_TESTCHAMBER" + { + "Straight" + { + "length" "4" + "model" "models/props_test_chamber/frame_4.mdl" + "angles" "-90 90 0" + "offset" "4 0 8" + } + "Straight" + { + "length" "16" + "model" "models/props_test_chamber/frame_16.mdl" + "angles" "-90 90 0" + "offset" "16 0 8" + } + "Straight" + { + "length" "20" + "model" "models/props_test_chamber/frame_20.mdl" + "angles" "-90 90 0" + "offset" "20 0 8" + } + "Straight" + { + "length" "32" + "model" "models/props_test_chamber/frame_32.mdl" + "angles" "-90 90 0" + "offset" "32 0 8" + } + "Straight" + { + "length" "64" + "model" "models/props_test_chamber/frame_64.mdl" + "angles" "-90 90 0" + "offset" "64 0 8" + } + "Straight" + { + "length" "128" + "model" "models/props_test_chamber/frame_128.mdl" + "angles" "-90 90 0" + "offset" "128 0 8" + } + "CornerSize" "16" + + "Corner" + { + "model" "models/bee2/props_clean/frame_testchamber/frame_convex.mdl" + "angles" "-90 270 0" + "offset" "4 4 4" + } + "ConcaveCorner" + { + "model" "models/BEE2/props_clean/frame_testchamber/frame_concave.mdl" + "angles" "90 90 0" + "offset" "2 2 4" + } + } + } + + +"Barriers" + { + "VALVE_GLASS" + { + "Frame" "BEE2_MODERN_TESTCHAMBER" + + "hint_thick" "4" + "coll_thick" "4" + "contents" "glass" + "mergeable" "1" // Instance name does not matter. + "error_tex" "glass" + + // If we don't have props_test_chamber frames, try puzzlemaker, then P1. + "HoleVariant" "THIN_MODERN_TESTCHAMBER" + "HoleVariant" "THIN_MODERN_PETI" + "HoleVariant" "THIN_MODERN_P1_PLASTICWALL" + + "Brush" + { + "offset" "3" + "thickness" "2" + "carve_by_hole" "1" + + "template" "BEE2_glass_template" + "material" "BEE2/overgrown/glass" + } + "Brush" + { + "offset" "0" + "thickness" "4" + + "material" "BEE2/glass_player_clip" + "side_mat" "BEE2/glass_player_clip" + "StaticPlayerClip" "1" + } + "Brush" // Cut visleafs along the plane, to help with depth sorting. + { + "offset" "0" + "thickness" "4" + "carve_by_hole" "0" + "world" "1" + + "material" "tools/toolshint" + "side_mat" "tools/toolsskip" + } + "Collide" + { + "offset" "0" + "thickness" "4" + "carve_by_hole" "1" + "contents" "glass" + } + } + "VALVE_GRATING" + { + "Frame" "BEE2_MODERN_TESTCHAMBER" + + "hint_thick" "4" + "coll_thick" "4" + "contents" "grating" + "mergeable" "1" // Instance name does not matter. + "error_tex" "grating" + + "HoleVariant" "THIN_MODERN_TESTCHAMBER" + "HoleVariant" "THIN_MODERN_PETI" + "HoleVariant" "THIN_MODERN_P1_PLASTICWALL" + + "Brush" + { + "offset" "3" + "thickness" "2" + "carve_by_hole" "1" + + "material" "metal/underground_metalgrate002a" + + "keys" + { + "classname" "func_brush" + "renderfx" "14" // Constant Glow + "solidity" "1" // Never Solid + } + } + "Brush" + { + "offset" "0" + "thickness" "4" + "carve_by_hole" "1" + + "material" "BEE2/grate_player_clip" + "side_mat" "BEE2/grate_player_clip" + "StaticPlayerClip" "1" + } + "Brush" + { + "offset" "0" + "thickness" "4" + "carve_by_hole" "1" + + "material" "tools/toolstrigger" + "side_mat" "tools/toolstrigger" + + "keys" + { + "classname" "func_clip_vphysics" + "filtername" "@grating_filter" + } + } + "Brush" // Cut visleafs along the plane, to help with depth sorting. + { + "offset" "0" + "thickness" "4" + "carve_by_hole" "0" + "world" "1" + + "material" "tools/toolshint" + "side_mat" "tools/toolsskip" + } + "Collide" + { + "offset" "0" + "thickness" "4" + "carve_by_hole" "1" + "contents" "grating" + } + } + } + + +"Conditions" + { + "Condition" + { + "instance" "[glass_128]" + "Condition" + { + "instvar" "$barrier_type glass" + "Result" + { + "Has" "glass" + } + } + "Condition" + { + "instvar" "$barrier_type grating" + "Result" + { + "Has" "grating" + } + } + } + "Condition" + { + "Priority" "200" + "instance" "[glass_128]" + "Result" + { + "ChangeInstance" "" + } + } + } diff --git a/packages/styles/overgrown/items/glass/editoritems.txt b/packages/styles/overgrown/items/glass/editoritems.txt deleted file mode 100644 index 8ac0217450..0000000000 --- a/packages/styles/overgrown/items/glass/editoritems.txt +++ /dev/null @@ -1,125 +0,0 @@ -"Item" -{ - "Type" "ITEM_BARRIER" - "ItemClass" "ItemBarrier" - "Editor" - { - "SubTypeProperty" "BarrierType" - "SubType" - { - "Name" "PORTAL2_PuzzleEditor_Item_glass" - "Model" - { - "ModelName" "glass_handle.3ds" - } - "Palette" - { - "Tooltip" "PORTAL2_PuzzleEditor_Palette_glass" - "Image" "palette/glass.png" - "Position" "1 3 0" - } - } - "SubType" - { - "Name" "PORTAL2_PuzzleEditor_Item_grating" - "Model" - { - "ModelName" "glass_handle.3ds" - } - "Palette" - { - "Tooltip" "PORTAL2_PuzzleEditor_Palette_grating" - "Image" "palette/grating.png" - "Position" "1 3 0" - } - } - "MovementHandle" "HANDLE_4_DIRECTIONS" - "CanAnchorOnBarriers" "1" - "OccupiesVoxel" "0" - } - "Properties" - { - "BarrierType" - { - "DefaultValue" "0" - "Index" "0" - } - } - "Exporting" - { - "Instances" - { - "0" - { - "Name" "instances/BEE2/over/items/barrier/segment.vmf" - "EntityCount" "1" - "BrushCount" "2" - "BrushSideCount" "12" - } - "1" - { - "Name" "instances/BEE2/over/items/barrier/frame_left_corner.vmf" - "EntityCount" "0" - } - "2" - { - "Name" "instances/BEE2/over/items/barrier/frame_left_straight.vmf" - "EntityCount" "0" - } - "3" - { - "Name" "instances/BEE2/over/items/barrier/frame_left_short.vmf" - "EntityCount" "0" - } - "4" - { - "Name" "instances/BEE2/over/items/barrier/frame_left_convex_corner.vmf" - "EntityCount" "0" - } - "5" - { - "Name" "instances/BEE2/over/items/barrier/frame_right_corner.vmf" - "EntityCount" "0" - } - "6" - { - "Name" "instances/BEE2/over/items/barrier/frame_right_straight.vmf" - "EntityCount" "0" - } - "7" - { - "Name" "instances/BEE2/over/items/barrier/frame_right_short.vmf" - "EntityCount" "0" - } - "8" - { - "Name" "instances/BEE2/over/items/barrier/frame_right_convex_corner.vmf" - "EntityCount" "0" - } - } - "TargetName" "g" - "Offset" "64 64 64" - } -} - -"Item" -{ - "Type" "ITEM_BARRIER_EXTENT" - "ItemClass" "ItemBarrierExtent" - "Editor" - { - "SubType" - { - "Model" - { - "ModelName" "handle_grip_trianglesmall.3ds" - "TextureName" "buttonweight.png" - } - } - "MovementHandle" "HANDLE_NONE" - "OccupiesVoxel" "0" - "Deletable" "0" - "Copyable" "0" - "PseudoHandle" "1" - } -} \ No newline at end of file diff --git a/packages/styles/overgrown/items/glass/properties.txt b/packages/styles/overgrown/items/glass/properties.txt deleted file mode 100644 index 0e880ec662..0000000000 --- a/packages/styles/overgrown/items/glass/properties.txt +++ /dev/null @@ -1,13 +0,0 @@ -"Properties" - { - "Authors" "Valve" - "Tags" "Portal 2;Geometry" - "infoURL" "https:/\/developer.valvesoftware.com/wiki/Portal_2_Puzzle_Maker/Glass" - "all_icon" "palette/grouped/glass_grating.vtf" - "all_name" "[[VALVE_GEOMETRY]] GLASS / GRATING" - "Icon" - { - "0" "VALVE_GEOMETRY:clean/glass.png" - "1" "VALVE_GEOMETRY:clean/grating.png" - } - } diff --git a/packages/styles/overgrown/items/mandatory/coop_exit/editoritems.vmf b/packages/styles/overgrown/items/mandatory/coop_exit/editoritems.vmf new file mode 100644 index 0000000000..d8a98d5301 --- /dev/null +++ b/packages/styles/overgrown/items/mandatory/coop_exit/editoritems.vmf @@ -0,0 +1,135 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "2" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "16" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "2" + "classname" "worldspawn" + "skyname" "sky_black_nofog" + "maxpropscreenwidth" "-1" + "detailvbsp" "detail.vbsp" + "detailmaterial" "detail/detailsprites" + "maxblobcount" "250" +} +entity +{ + "id" "9" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grating" "0" + "coll_oob" "1" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "2" + side + { + "id" "1" + "plane" "(-124 -124 -68) (124 -124 -68) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2" + "plane" "(-124 124 -572) (124 124 -572) (124 124 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3" + "plane" "(-124 -124 -68) (-124 -124 -572) (-124 124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4" + "plane" "(124 124 -68) (124 124 -572) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5" + "plane" "(124 -124 -68) (-124 -124 -68) (-124 124 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6" + "plane" "(124 124 -572) (-124 124 -572) (-124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/styles/overgrown/items/mandatory/entry_door/editoritems.vmf b/packages/styles/overgrown/items/mandatory/entry_door/editoritems.vmf new file mode 100644 index 0000000000..d8a98d5301 --- /dev/null +++ b/packages/styles/overgrown/items/mandatory/entry_door/editoritems.vmf @@ -0,0 +1,135 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "2" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "16" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "2" + "classname" "worldspawn" + "skyname" "sky_black_nofog" + "maxpropscreenwidth" "-1" + "detailvbsp" "detail.vbsp" + "detailmaterial" "detail/detailsprites" + "maxblobcount" "250" +} +entity +{ + "id" "9" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grating" "0" + "coll_oob" "1" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "2" + side + { + "id" "1" + "plane" "(-124 -124 -68) (124 -124 -68) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2" + "plane" "(-124 124 -572) (124 124 -572) (124 124 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3" + "plane" "(-124 -124 -68) (-124 -124 -572) (-124 124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4" + "plane" "(124 124 -68) (124 124 -572) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5" + "plane" "(124 -124 -68) (-124 -124 -68) (-124 124 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6" + "plane" "(124 124 -572) (-124 124 -572) (-124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/styles/overgrown/items/mandatory/exit_door/editoritems.vmf b/packages/styles/overgrown/items/mandatory/exit_door/editoritems.vmf new file mode 100644 index 0000000000..d8a98d5301 --- /dev/null +++ b/packages/styles/overgrown/items/mandatory/exit_door/editoritems.vmf @@ -0,0 +1,135 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "2" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "16" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "2" + "classname" "worldspawn" + "skyname" "sky_black_nofog" + "maxpropscreenwidth" "-1" + "detailvbsp" "detail.vbsp" + "detailmaterial" "detail/detailsprites" + "maxblobcount" "250" +} +entity +{ + "id" "9" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grating" "0" + "coll_oob" "1" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "2" + side + { + "id" "1" + "plane" "(-124 -124 -68) (124 -124 -68) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2" + "plane" "(-124 124 -572) (124 124 -572) (124 124 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3" + "plane" "(-124 -124 -68) (-124 -124 -572) (-124 124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4" + "plane" "(124 124 -68) (124 124 -572) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5" + "plane" "(124 -124 -68) (-124 -124 -68) (-124 124 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6" + "plane" "(124 124 -572) (-124 124 -572) (-124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/styles/overgrown/items/mandatory/exit_door/vbsp_config.cfg b/packages/styles/overgrown/items/mandatory/exit_door/vbsp_config.cfg index 1f28ebfe5d..11b24733a8 100644 --- a/packages/styles/overgrown/items/mandatory/exit_door/vbsp_config.cfg +++ b/packages/styles/overgrown/items/mandatory/exit_door/vbsp_config.cfg @@ -47,6 +47,16 @@ "TemplateBrush" "BEE2_DOOR_FRAME_OVER" } } + "Condition" + { + "IfPreview" "1" + "StyleVar" "RestartOnExit" + "Result" + { + // Trigger restart when @map_won is triggered. + "addoverlay" "instances/BEE2/logic/exit_preview.vmf" + } + } } // We need to decide if we want to have gel / gel fizzler, or need autoportals for here. // Aperture Tag never uses autoportals in the entrance. diff --git a/packages/styles/overgrown/items/stairs.cfg b/packages/styles/overgrown/items/stairs.cfg index a806650e90..19908035aa 100644 --- a/packages/styles/overgrown/items/stairs.cfg +++ b/packages/styles/overgrown/items/stairs.cfg @@ -29,11 +29,15 @@ // Bevel only on the outer sides. "bevel" { - "" "0 -80 0" + // Front side (left) "" "-80 -48 0" "" "-80 -16 0" "" "-80 16 0" - "" "0 80 0" + "" "-80 48 0" + + // Stair sides (top/bottom) + "" "-48 -80 0" + "" "-48 80 0" } "Offset" "0 0 0" diff --git a/packages/styles/overgrown/resources/BEE2/corr/Overgrown/sp_entry/small_right_1.jpg b/packages/styles/overgrown/resources/BEE2/corr/Overgrown/sp_entry/small_right_1.jpg index d438d1f041..9a683397e6 100644 Binary files a/packages/styles/overgrown/resources/BEE2/corr/Overgrown/sp_entry/small_right_1.jpg and b/packages/styles/overgrown/resources/BEE2/corr/Overgrown/sp_entry/small_right_1.jpg differ diff --git a/packages/styles/overgrown/resources/BEE2/corr/Overgrown/sp_entry/small_right_2.jpg b/packages/styles/overgrown/resources/BEE2/corr/Overgrown/sp_entry/small_right_2.jpg index e0bbe7e54c..2e4b05de86 100644 Binary files a/packages/styles/overgrown/resources/BEE2/corr/Overgrown/sp_entry/small_right_2.jpg and b/packages/styles/overgrown/resources/BEE2/corr/Overgrown/sp_entry/small_right_2.jpg differ diff --git a/packages/styles/overgrown/resources/BEE2/corr/Overgrown/sp_entry/small_right_3.jpg b/packages/styles/overgrown/resources/BEE2/corr/Overgrown/sp_entry/small_right_3.jpg index 09620418cf..10217d2c78 100644 Binary files a/packages/styles/overgrown/resources/BEE2/corr/Overgrown/sp_entry/small_right_3.jpg and b/packages/styles/overgrown/resources/BEE2/corr/Overgrown/sp_entry/small_right_3.jpg differ diff --git a/packages/styles/overgrown/resources/BEE2/corr/Overgrown/sp_entry/small_right_4.jpg b/packages/styles/overgrown/resources/BEE2/corr/Overgrown/sp_entry/small_right_4.jpg index d1c9ae7917..34efdcbc68 100644 Binary files a/packages/styles/overgrown/resources/BEE2/corr/Overgrown/sp_entry/small_right_4.jpg and b/packages/styles/overgrown/resources/BEE2/corr/Overgrown/sp_entry/small_right_4.jpg differ diff --git a/packages/styles/overgrown/resources/instances/over/elevator_coop/coop_exit.vmf b/packages/styles/overgrown/resources/instances/over/elevator_coop/coop_exit.vmf index b8f165c265..487d8e676e 100644 --- a/packages/styles/overgrown/resources/instances/over/elevator_coop/coop_exit.vmf +++ b/packages/styles/overgrown/resources/instances/over/elevator_coop/coop_exit.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "7378" - "mapversion" "847" + "editorbuild" "9672" + "mapversion" "853" "formatversion" "100" "prefab" "0" } @@ -44,13 +44,13 @@ viewsettings "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "16" + "nGridSpacing" "8" "bShow3DGrid" "0" } world { "id" "1" - "mapversion" "847" + "mapversion" "853" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -63,7 +63,7 @@ world side { "id" "33781" - "plane" "(384 -288 512) (0 -288 512) (0 -272 512)" + "plane" "(0 -288 512) (0 -272 512) (384 -272 512)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" "uaxis" "[1 0 0 29] -0.25" "vaxis" "[0 -1 0 30] 0.25" @@ -74,7 +74,7 @@ world side { "id" "33780" - "plane" "(384 -272 80) (384 -272 512) (0 -272 512)" + "plane" "(384 -272 512) (0 -272 512) (0 -272 80)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 1 0] 0.25" @@ -85,7 +85,7 @@ world side { "id" "33779" - "plane" "(0 -288 80) (0 -288 512) (384 -288 512)" + "plane" "(0 -288 512) (384 -288 512) (384 -288 80)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -96,7 +96,7 @@ world side { "id" "33778" - "plane" "(384 -288 80) (384 -288 512) (384 -272 512)" + "plane" "(384 -288 512) (384 -272 512) (384 -272 80)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -107,7 +107,7 @@ world side { "id" "33777" - "plane" "(0 -272 80) (0 -272 512) (0 -288 512)" + "plane" "(0 -272 512) (0 -288 512) (0 -288 80)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 32] 0.25" "vaxis" "[0 0 -1 40] 0.25" @@ -118,7 +118,7 @@ world side { "id" "33776" - "plane" "(384 -272 80) (0 -272 80) (0 -288 80)" + "plane" "(0 -272 80) (0 -288 80) (384 -288 80)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -140,7 +140,7 @@ world side { "id" "33793" - "plane" "(384 -272 -256) (0 -272 -256) (0 -288 -256)" + "plane" "(0 -272 -256) (0 -288 -256) (384 -288 -256)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" "uaxis" "[0 -1 0 29.7847] 0.25" "vaxis" "[1 0 0 -32] 0.25" @@ -151,7 +151,7 @@ world side { "id" "33792" - "plane" "(0 -272 0) (0 -272 -256) (384 -272 -256)" + "plane" "(0 -272 -256) (384 -272 -256) (384 -272 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 1 0] 0.25" @@ -162,7 +162,7 @@ world side { "id" "33791" - "plane" "(384 -288 0) (384 -288 -256) (0 -288 -256)" + "plane" "(384 -288 -256) (0 -288 -256) (0 -288 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -173,7 +173,7 @@ world side { "id" "33790" - "plane" "(384 -272 0) (384 -272 -256) (384 -288 -256)" + "plane" "(384 -272 -256) (384 -288 -256) (384 -288 0)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -184,7 +184,7 @@ world side { "id" "33789" - "plane" "(0 -288 0) (0 -288 -256) (0 -272 -256)" + "plane" "(0 -288 -256) (0 -272 -256) (0 -272 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 32] 0.25" "vaxis" "[0 0 -1 40] 0.25" @@ -195,7 +195,7 @@ world side { "id" "33788" - "plane" "(384 -288 0) (0 -288 0) (0 -272 0)" + "plane" "(0 -288 0) (0 -272 0) (384 -272 0)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -217,7 +217,7 @@ world side { "id" "33799" - "plane" "(0 -272 80) (0 -272 0) (384 -272 0)" + "plane" "(0 -272 0) (384 -272 0) (384 -272 80)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 1 0] 0.25" @@ -228,7 +228,7 @@ world side { "id" "33798" - "plane" "(384 -288 80) (384 -288 0) (0 -288 0)" + "plane" "(384 -288 0) (0 -288 0) (0 -288 80)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -239,7 +239,7 @@ world side { "id" "33797" - "plane" "(384 -272 80) (384 -272 0) (384 -288 0)" + "plane" "(384 -272 0) (384 -288 0) (384 -288 80)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -250,7 +250,7 @@ world side { "id" "33796" - "plane" "(0 -288 80) (0 -288 0) (0 -272 0)" + "plane" "(0 -288 0) (0 -272 0) (0 -272 80)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 32] 0.25" "vaxis" "[0 0 -1 40] 0.25" @@ -261,7 +261,7 @@ world side { "id" "33795" - "plane" "(384 -288 80) (0 -288 80) (0 -272 80)" + "plane" "(0 -288 80) (0 -272 80) (384 -272 80)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -272,7 +272,7 @@ world side { "id" "33794" - "plane" "(384 -272 0) (0 -272 0) (0 -288 0)" + "plane" "(0 -272 0) (0 -288 0) (384 -288 0)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -294,7 +294,7 @@ world side { "id" "33805" - "plane" "(384 288 -256) (0 288 -256) (0 272 -256)" + "plane" "(0 288 -256) (0 272 -256) (384 272 -256)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" "uaxis" "[0 -1 0 29.7847] 0.25" "vaxis" "[1 0 0 -48] 0.25" @@ -349,7 +349,7 @@ world side { "id" "33800" - "plane" "(384 272 0) (0 272 0) (0 288 0)" + "plane" "(0 272 0) (0 288 0) (384 288 0)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -371,7 +371,7 @@ world side { "id" "33817" - "plane" "(384 288 0) (384 288 80) (0 288 80)" + "plane" "(0 288 0) (384 288 0) (384 288 80)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 1 0] 0.25" @@ -382,7 +382,7 @@ world side { "id" "33816" - "plane" "(0 272 0) (0 272 80) (384 272 80)" + "plane" "(384 272 0) (0 272 0) (0 272 80)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -393,7 +393,7 @@ world side { "id" "33815" - "plane" "(384 272 0) (384 272 80) (384 288 80)" + "plane" "(384 288 0) (384 272 0) (384 272 80)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -404,7 +404,7 @@ world side { "id" "33814" - "plane" "(0 288 0) (0 288 80) (0 272 80)" + "plane" "(0 272 0) (0 288 0) (0 288 80)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -415,7 +415,7 @@ world side { "id" "33813" - "plane" "(384 288 0) (0 288 0) (0 272 0)" + "plane" "(0 288 0) (0 272 0) (384 272 0)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -426,7 +426,7 @@ world side { "id" "33812" - "plane" "(384 272 80) (0 272 80) (0 288 80)" + "plane" "(0 272 80) (0 288 80) (384 288 80)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -448,7 +448,7 @@ world side { "id" "33823" - "plane" "(384 272 512) (0 272 512) (0 288 512)" + "plane" "(0 272 512) (0 288 512) (384 288 512)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" "uaxis" "[1 0 0 45] -0.25" "vaxis" "[0 -1 0 30] 0.25" @@ -459,7 +459,7 @@ world side { "id" "33822" - "plane" "(384 288 80) (384 288 512) (0 288 512)" + "plane" "(384 288 512) (0 288 512) (0 288 80)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 1 0] 0.25" @@ -470,7 +470,7 @@ world side { "id" "33821" - "plane" "(0 272 80) (0 272 512) (384 272 512)" + "plane" "(0 272 512) (384 272 512) (384 272 80)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -481,7 +481,7 @@ world side { "id" "33820" - "plane" "(384 272 80) (384 272 512) (384 288 512)" + "plane" "(384 272 512) (384 288 512) (384 288 80)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -492,7 +492,7 @@ world side { "id" "33819" - "plane" "(0 288 80) (0 288 512) (0 272 512)" + "plane" "(0 288 512) (0 272 512) (0 272 80)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -503,7 +503,7 @@ world side { "id" "33818" - "plane" "(384 288 80) (0 288 80) (0 272 80)" + "plane" "(0 288 80) (0 272 80) (384 272 80)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -4331,7 +4331,7 @@ world side { "id" "31008" - "plane" "(0 -288 512) (-480 -288 512) (-480 -272 512)" + "plane" "(-488 -288 512) (-488 -272 512) (0 -272 512)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 29] -0.25" "vaxis" "[0 -1 0 30] 0.25" @@ -4342,7 +4342,7 @@ world side { "id" "31007" - "plane" "(0 -272 -768) (-480 -272 -768) (-480 -288 -768)" + "plane" "(-488 -272 -768) (-488 -288 -768) (0 -288 -768)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" "uaxis" "[0 -1 0 29.7847] 0.25" "vaxis" "[1 0 0 -32] 0.25" @@ -4353,7 +4353,7 @@ world side { "id" "31006" - "plane" "(-480 -272 -768) (0 -272 -768) (0 -272 512)" + "plane" "(0 -272 -768) (0 -272 512) (-488 -272 512)" "material" "METAL/METALWALL_BTS_006A" "uaxis" "[-1 0 0 -448] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -4364,7 +4364,7 @@ world side { "id" "31005" - "plane" "(0 -288 -768) (-480 -288 -768) (-480 -288 512)" + "plane" "(-488 -288 -768) (-488 -288 512) (0 -288 512)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -4375,7 +4375,7 @@ world side { "id" "31004" - "plane" "(-480 -288 -768) (-480 -272 -768) (-480 -272 512)" + "plane" "(-488 -272 -768) (-488 -272 512) (-488 -288 512)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 40] 0.25" @@ -4386,7 +4386,7 @@ world side { "id" "31003" - "plane" "(0 -272 -768) (0 -288 -768) (0 -288 512)" + "plane" "(0 -288 -768) (0 -288 512) (0 -272 512)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -4408,7 +4408,7 @@ world side { "id" "31020" - "plane" "(0 272 512) (-480 272 512) (-480 288 512)" + "plane" "(-488 272 512) (-488 288 512) (0 288 512)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" "uaxis" "[1 0 0 45] -0.25" "vaxis" "[0 -1 0 30] 0.25" @@ -4419,7 +4419,7 @@ world side { "id" "31019" - "plane" "(0 288 -768) (-480 288 -768) (-480 272 -768)" + "plane" "(-488 288 -768) (-488 272 -768) (0 272 -768)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" "uaxis" "[0 -1 0 29.7847] 0.25" "vaxis" "[1 0 0 -48] 0.25" @@ -4430,7 +4430,7 @@ world side { "id" "31018" - "plane" "(-480 288 -768) (0 288 -768) (0 288 512)" + "plane" "(0 288 -768) (0 288 512) (-488 288 512)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 1 0] 0.25" @@ -4441,7 +4441,7 @@ world side { "id" "31017" - "plane" "(0 272 -768) (-480 272 -768) (-480 272 512)" + "plane" "(-488 272 -768) (-488 272 512) (0 272 512)" "material" "METAL/METALWALL_BTS_006A" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -4452,7 +4452,7 @@ world side { "id" "31016" - "plane" "(-480 272 -768) (-480 288 -768) (-480 288 512)" + "plane" "(-488 288 -768) (-488 288 512) (-488 272 512)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 40] 0.25" @@ -4463,7 +4463,7 @@ world side { "id" "31015" - "plane" "(0 288 -768) (0 272 -768) (0 272 512)" + "plane" "(0 272 -768) (0 272 512) (0 288 512)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -5821,7 +5821,7 @@ world side { "id" "27129" - "plane" "(-480 -63 512) (-480 -63 -768) (-480 -39 -768)" + "plane" "(-504 -63 512) (-504 -63 -768) (-504 -39 -768)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[0 1 0 -4] 0.25" "vaxis" "[0 0 -1 40] 0.25" @@ -5832,7 +5832,7 @@ world side { "id" "27128" - "plane" "(-320 -63 512) (-320 -63 -768) (-480 -63 -768)" + "plane" "(-320 -63 512) (-320 -63 -768) (-504 -63 -768)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[0 0 1 -40] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -5843,7 +5843,7 @@ world side { "id" "27127" - "plane" "(-480 -39 512) (-480 -39 -768) (-320 -39 -768)" + "plane" "(-504 -39 512) (-504 -39 -768) (-320 -39 -768)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[0 0 1 -40] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -5854,7 +5854,7 @@ world side { "id" "27126" - "plane" "(-480 -63 512) (-480 -39 512) (-320 -39 512)" + "plane" "(-504 -63 512) (-504 -39 512) (-320 -39 512)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[0 1 0 -4] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -5865,7 +5865,7 @@ world side { "id" "27125" - "plane" "(-480 -39 -768) (-480 -63 -768) (-320 -63 -768)" + "plane" "(-504 -39 -768) (-504 -63 -768) (-320 -63 -768)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[0 1 0 -4] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -5898,7 +5898,7 @@ world side { "id" "27135" - "plane" "(-480 38 512) (-480 38 -768) (-480 62 -768)" + "plane" "(-504 38 512) (-504 38 -768) (-504 62 -768)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[0 1 0 -24] 0.25" "vaxis" "[0 0 -1 40] 0.25" @@ -5909,7 +5909,7 @@ world side { "id" "27134" - "plane" "(-320 38 512) (-320 38 -768) (-480 38 -768)" + "plane" "(-320 38 512) (-320 38 -768) (-504 38 -768)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[0 0 1 -40] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -5920,7 +5920,7 @@ world side { "id" "27133" - "plane" "(-480 62 512) (-480 62 -768) (-320 62 -768)" + "plane" "(-504 62 512) (-504 62 -768) (-320 62 -768)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[0 0 1 -40] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -5931,7 +5931,7 @@ world side { "id" "27132" - "plane" "(-480 38 512) (-480 62 512) (-320 62 512)" + "plane" "(-504 38 512) (-504 62 512) (-320 62 512)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[0 1 0 -24] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -5942,7 +5942,7 @@ world side { "id" "27131" - "plane" "(-480 62 -768) (-480 38 -768) (-320 38 -768)" + "plane" "(-504 62 -768) (-504 38 -768) (-320 38 -768)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[0 1 0 -24] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -6096,7 +6096,7 @@ world side { "id" "27532" - "plane" "(-496 -288 -8.00002) (-496 288 -8.00002) (-480 288 -8.00002)" + "plane" "(-504 288 -8) (-488 288 -8) (-488 -288 -8)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 1 0 0] 0.25" @@ -6107,7 +6107,7 @@ world side { "id" "27531" - "plane" "(-480 288 -8.00002) (-496 288 -8.00002) (-496 288 -768)" + "plane" "(-504 288 -8) (-504 288 -768) (-488 288 -768)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -6118,7 +6118,7 @@ world side { "id" "27530" - "plane" "(-496 -288 -768) (-496 288 -768) (-496 288 -8.00002)" + "plane" "(-504 288 -768) (-504 288 -8) (-504 -288 -8)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -6129,7 +6129,7 @@ world side { "id" "27529" - "plane" "(-480 288 -768) (-496 288 -768) (-496 -288 -768)" + "plane" "(-504 288 -768) (-504 -288 -768) (-488 -288 -768)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 32.0018] 0.25" @@ -6140,7 +6140,7 @@ world side { "id" "27528" - "plane" "(-480 -288 -8.00002) (-480 288 -8.00002) (-480 288 -768)" + "plane" "(-488 288 -8) (-488 288 -768) (-488 -288 -768)" "material" "METAL/METALWALL_BTS_006A" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -6151,7 +6151,7 @@ world side { "id" "27527" - "plane" "(-480 -288 -768) (-496 -288 -768) (-496 -288 -8.00002)" + "plane" "(-504 -288 -768) (-504 -288 -8) (-488 -288 -8)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -6173,7 +6173,7 @@ world side { "id" "27538" - "plane" "(-496 64 512) (-496 288 512) (-480 288 512)" + "plane" "(-504 288 512) (-488 288 512) (-488 64 512)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 32.0018] 0.25" @@ -6184,7 +6184,7 @@ world side { "id" "27537" - "plane" "(-480 288 512) (-496 288 512) (-496 288 -8)" + "plane" "(-504 288 512) (-504 288 -8) (-488 288 -8)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -6195,7 +6195,7 @@ world side { "id" "27536" - "plane" "(-496 64 -8) (-496 288 -8) (-496 288 512)" + "plane" "(-504 288 -8) (-504 288 512) (-504 64 512)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -6206,7 +6206,7 @@ world side { "id" "27535" - "plane" "(-480 288 -8) (-496 288 -8) (-496 64 -8)" + "plane" "(-504 288 -8) (-504 64 -8) (-488 64 -8)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 32.0018] 0.25" @@ -6217,7 +6217,7 @@ world side { "id" "27534" - "plane" "(-480 64 512) (-480 288 512) (-480 288 -8)" + "plane" "(-488 288 512) (-488 288 -8) (-488 64 -8)" "material" "METAL/METALWALL_BTS_006A" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -6228,7 +6228,7 @@ world side { "id" "27533" - "plane" "(-480 64 -8) (-496 64 -8) (-496 64 512)" + "plane" "(-504 64 -8) (-504 64 512) (-488 64 512)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -6250,7 +6250,7 @@ world side { "id" "27544" - "plane" "(-496 -64 512) (-496 64 512) (-480 64 512)" + "plane" "(-504 64 512) (-488 64 512) (-488 -64 512)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 32.0018] 0.25" @@ -6261,7 +6261,7 @@ world side { "id" "27543" - "plane" "(-480 64 512) (-496 64 512) (-496 64 120)" + "plane" "(-504 64 512) (-504 64 120) (-488 64 120)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -6272,7 +6272,7 @@ world side { "id" "27542" - "plane" "(-496 -64 120) (-496 64 120) (-496 64 512)" + "plane" "(-504 64 120) (-504 64 512) (-504 -64 512)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -6283,7 +6283,7 @@ world side { "id" "27541" - "plane" "(-480 64 120) (-496 64 120) (-496 -64 120)" + "plane" "(-504 64 120) (-504 -64 120) (-488 -64 120)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 32.0018] 0.25" @@ -6294,7 +6294,7 @@ world side { "id" "27540" - "plane" "(-480 -64 512) (-480 64 512) (-480 64 120)" + "plane" "(-488 64 512) (-488 64 120) (-488 -64 120)" "material" "METAL/METALWALL_BTS_006A" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -6305,7 +6305,7 @@ world side { "id" "27539" - "plane" "(-480 -64 120) (-496 -64 120) (-496 -64 512)" + "plane" "(-504 -64 120) (-504 -64 512) (-488 -64 512)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -6327,7 +6327,7 @@ world side { "id" "27550" - "plane" "(-496 -288 512) (-496 -64 512) (-480 -64 512)" + "plane" "(-504 -64 512) (-488 -64 512) (-488 -288 512)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 32.0018] 0.25" @@ -6338,7 +6338,7 @@ world side { "id" "27549" - "plane" "(-480 -64 512) (-496 -64 512) (-496 -64 -8)" + "plane" "(-504 -64 512) (-504 -64 -8) (-488 -64 -8)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -6349,7 +6349,7 @@ world side { "id" "27548" - "plane" "(-496 -288 -8) (-496 -64 -8) (-496 -64 512)" + "plane" "(-504 -64 -8) (-504 -64 512) (-504 -288 512)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -6360,7 +6360,7 @@ world side { "id" "27547" - "plane" "(-480 -64 -8) (-496 -64 -8) (-496 -288 -8)" + "plane" "(-504 -64 -8) (-504 -288 -8) (-488 -288 -8)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 32.0018] 0.25" @@ -6371,7 +6371,7 @@ world side { "id" "27546" - "plane" "(-480 -288 512) (-480 -64 512) (-480 -64 -8)" + "plane" "(-488 -64 512) (-488 -64 -8) (-488 -288 -8)" "material" "METAL/METALWALL_BTS_006A" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -6382,7 +6382,7 @@ world side { "id" "27545" - "plane" "(-480 -288 -8) (-496 -288 -8) (-496 -288 512)" + "plane" "(-504 -288 -8) (-504 -288 512) (-488 -288 512)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -6404,7 +6404,7 @@ world side { "id" "27562" - "plane" "(384 -288 512) (384 288 512) (400 288 512)" + "plane" "(384 288 512) (400 288 512) (400 -288 512)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 -19] -0.25" "vaxis" "[-1 0 0 30] 0.25" @@ -6415,7 +6415,7 @@ world side { "id" "27561" - "plane" "(384 288 -256) (384 -288 -256) (400 -288 -256)" + "plane" "(384 -288 -256) (400 -288 -256) (400 288 -256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 29.7845] 0.25" "vaxis" "[0 -1 0 16] 0.25" @@ -6426,7 +6426,7 @@ world side { "id" "27560" - "plane" "(400 288 -256) (400 -288 -256) (400 -288 512)" + "plane" "(400 -288 -256) (400 -288 512) (400 288 512)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 1 0] 0.25" @@ -6437,7 +6437,7 @@ world side { "id" "27559" - "plane" "(384 -288 -256) (384 288 -256) (384 288 512)" + "plane" "(384 288 -256) (384 288 512) (384 -288 512)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 22] 0.25" "vaxis" "[0 0 -1 -32] 0.25" @@ -6448,7 +6448,7 @@ world side { "id" "27558" - "plane" "(384 288 -256) (400 288 -256) (400 288 512)" + "plane" "(400 288 -256) (400 288 512) (384 288 512)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 40] 0.25" @@ -6459,7 +6459,7 @@ world side { "id" "27557" - "plane" "(400 -288 -256) (384 -288 -256) (384 -288 512)" + "plane" "(384 -288 -256) (384 -288 512) (400 -288 512)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -6481,7 +6481,7 @@ world side { "id" "27574" - "plane" "(0 -288 -768) (-480 -288 -768) (-480 288 -768)" + "plane" "(-488 -288 -768) (-488 288 -768) (0 288 -768)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" "uaxis" "[0 1 0 -40] -0.25" "vaxis" "[1 0 0 -32] 0.25" @@ -6492,7 +6492,7 @@ world side { "id" "27573" - "plane" "(0 288 -784) (-480 288 -784) (-480 -288 -784)" + "plane" "(-488 288 -784) (-488 -288 -784) (0 -288 -784)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 29.7847] 0.25" "vaxis" "[1 0 0 -48] 0.25" @@ -6503,7 +6503,7 @@ world side { "id" "27572" - "plane" "(-480 288 -784) (0 288 -784) (0 288 -768)" + "plane" "(0 288 -784) (0 288 -768) (-488 288 -768)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 -1 23.9951] -0.25" "vaxis" "[1 0 0 -48] 0.25" @@ -6514,7 +6514,7 @@ world side { "id" "27571" - "plane" "(0 -288 -784) (-480 -288 -784) (-480 -288 -768)" + "plane" "(-488 -288 -784) (-488 -288 -768) (0 -288 -768)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 -24] 0.25" @@ -6525,7 +6525,7 @@ world side { "id" "27570" - "plane" "(-480 -288 -784) (-480 288 -784) (-480 288 -768)" + "plane" "(-488 288 -784) (-488 288 -768) (-488 -288 -768)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 -24] 0.25" @@ -6536,7 +6536,7 @@ world side { "id" "27569" - "plane" "(0 288 -784) (0 -288 -784) (0 -288 -768)" + "plane" "(0 -288 -784) (0 -288 -768) (0 288 -768)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -6671,6 +6671,35 @@ world } } entity +{ + "id" "168523" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/bee2/catwalk/overgrown/hanging_walkway_end_cap.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "-480 0 -6" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity { "id" "164662" "classname" "prop_static" @@ -7342,12 +7371,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "192 224 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -7364,12 +7395,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "192 160 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -7386,12 +7419,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "192 96 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -7408,12 +7443,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "192 32 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -7430,12 +7467,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "192 -32 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -7452,12 +7491,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "192 -96 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -7474,12 +7515,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "192 -160 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -7496,12 +7539,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "128 -160 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -7518,12 +7563,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "64 -160 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -7540,12 +7587,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "0 -160 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -7562,12 +7611,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-64 -160 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -7584,12 +7635,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-128 -160 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -7606,12 +7659,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-192 -160 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -7628,12 +7683,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-256 -160 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -7650,12 +7707,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-320 -160 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -7672,12 +7731,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-320 -96 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -7694,12 +7755,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "128 -96 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -7716,12 +7779,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "64 -96 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -7738,12 +7803,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "0 -96 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -7760,12 +7827,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-64 -96 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -7782,12 +7851,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-128 -96 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -7804,12 +7875,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-192 -96 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -7826,12 +7899,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-256 -96 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -7848,12 +7923,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-320 -32 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -7870,12 +7947,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "128 -32 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -7892,12 +7971,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "64 -32 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -7914,12 +7995,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "0 -32 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -7936,12 +8019,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-64 -32 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -7958,12 +8043,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-128 -32 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -7980,12 +8067,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-192 -32 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -8002,12 +8091,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-256 -32 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -8024,12 +8115,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-320 32 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -8046,12 +8139,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "128 32 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -8068,12 +8163,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "64 32 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -8090,12 +8187,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "0 32 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -8112,12 +8211,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-64 32 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -8134,12 +8235,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-128 32 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -8156,12 +8259,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-192 32 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -8178,12 +8283,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-256 32 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -8200,12 +8307,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-320 96 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -8222,12 +8331,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "128 96 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -8244,12 +8355,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "64 96 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -8266,12 +8379,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "0 96 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -8288,12 +8403,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-64 96 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -8310,12 +8427,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-128 96 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -8332,12 +8451,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-192 96 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -8354,12 +8475,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-256 96 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -8376,12 +8499,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-320 160 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -8398,12 +8523,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "128 160 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -8420,12 +8547,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "64 160 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -8442,12 +8571,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "0 160 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -8464,12 +8595,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-64 160 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -8486,12 +8619,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-128 160 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -8508,12 +8643,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-192 160 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -8530,12 +8667,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-256 160 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -8552,12 +8691,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-320 224 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -8574,12 +8715,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "128 224 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -8596,12 +8739,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "64 224 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -8618,12 +8763,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "0 224 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -8640,12 +8787,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-64 224 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -8662,12 +8811,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-128 224 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -8684,12 +8835,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-192 224 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -8706,12 +8859,14 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-256 224 1136" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -8912,7 +9067,7 @@ entity "origin" "225.271 74.847 150" editor { - "color" "220 30 220" + "color" "200 200 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 0]" @@ -8928,7 +9083,7 @@ entity "origin" "241.271 84.847 150" editor { - "color" "220 30 220" + "color" "200 200 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 0]" @@ -8969,13 +9124,15 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-432 240 408" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 1000]" @@ -9015,13 +9172,15 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-272 240 408" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 1000]" @@ -9061,13 +9220,15 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-272 -240 408" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 1000]" @@ -9107,13 +9268,15 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-432 -240 408" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 1000]" @@ -9153,13 +9316,15 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-432 -240 448" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 1000]" @@ -9178,13 +9343,15 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-272 -240 448" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 1000]" @@ -9203,13 +9370,15 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-432 240 448" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 1000]" @@ -9228,13 +9397,15 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-272 240 448" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 1000]" @@ -9253,13 +9424,15 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-432 -240 384" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 1000]" @@ -9278,13 +9451,15 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-272 -240 384" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 1000]" @@ -9303,13 +9478,15 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-432 240 384" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 1000]" @@ -9328,13 +9505,15 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-272 240 384" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 1000]" @@ -9353,13 +9532,15 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-432 -240 424" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 1000]" @@ -9378,13 +9559,15 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-272 -240 424" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 1000]" @@ -9403,13 +9586,15 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-432 240 424" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 1000]" @@ -9428,13 +9613,15 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "-272 240 424" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 1000]" @@ -9516,6 +9703,7 @@ entity "notsolid" "0" "origin" "-336 96 508" "PerformanceMode" "0" + "physdamagescale" "1.0" "preferredcarryangles" "0 0 0" "pressuredelay" "0" "propdata" "0" @@ -10252,7 +10440,7 @@ entity side { "id" "32788" - "plane" "(-480 -64 99) (-480 -64 120) (-480 64 120)" + "plane" "(-488 -64 99) (-488 -64 120) (-488 64 120)" "material" "METAL/METALWALL_BTS_006A" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -10263,10 +10451,10 @@ entity side { "id" "32787" - "plane" "(-480 64 120) (-480 -64 120) (-504 -64 120)" + "plane" "(-504 -64 120) (-504 64 120) (-488 64 120)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10274,10 +10462,10 @@ entity side { "id" "32786" - "plane" "(-480 64 99) (-480 64 120) (-504 64 120)" + "plane" "(-504 64 120) (-504 64 99) (-488 64 99)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10285,10 +10473,10 @@ entity side { "id" "32785" - "plane" "(-480 -64 120) (-480 -64 99) (-504 -64 99)" + "plane" "(-488 -64 120) (-488 -64 99) (-504 -64 99)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10296,10 +10484,10 @@ entity side { "id" "32784" - "plane" "(-480 -64 99) (-480 64 99) (-504 64 99)" + "plane" "(-504 64 99) (-504 -64 99) (-488 -64 99)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10328,7 +10516,7 @@ entity side { "id" "32794" - "plane" "(-480 -41 -8) (-480 -64 -8) (-480 -64 3)" + "plane" "(-488 -41 -8) (-488 -64 -8) (-488 -64 3)" "material" "METAL/METALWALL_BTS_006A" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -10339,10 +10527,10 @@ entity side { "id" "32793" - "plane" "(-480 -64 -8) (-480 -41 -8) (-504 -41 -8)" + "plane" "(-504 -41 -8) (-504 -64 -8) (-488 -64 -8)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10350,10 +10538,10 @@ entity side { "id" "32792" - "plane" "(-480 -64 3) (-480 -64 -8) (-504 -64 -8)" + "plane" "(-488 -64 3) (-488 -64 -8) (-504 -64 -8)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10361,10 +10549,10 @@ entity side { "id" "32791" - "plane" "(-480 -51 3) (-480 -64 3) (-504 -64 3)" + "plane" "(-504 -64 3) (-504 -51 3) (-488 -51 3)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10372,10 +10560,10 @@ entity side { "id" "32790" - "plane" "(-480 -41 -8) (-480 -51 3) (-504 -51 3)" + "plane" "(-504 -51 3) (-504 -41 -8) (-488 -41 -8)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10404,7 +10592,7 @@ entity side { "id" "32800" - "plane" "(-480 64 3) (-480 64 -8) (-480 41 -8)" + "plane" "(-488 64 3) (-488 64 -8) (-488 41 -8)" "material" "METAL/METALWALL_BTS_006A" "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -10415,10 +10603,10 @@ entity side { "id" "32799" - "plane" "(-480 41 -8) (-480 64 -8) (-504 64 -8)" + "plane" "(-504 64 -8) (-504 41 -8) (-488 41 -8)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10426,10 +10614,10 @@ entity side { "id" "32798" - "plane" "(-480 64 -8) (-480 64 3) (-504 64 3)" + "plane" "(-504 64 3) (-504 64 -8) (-488 64 -8)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10437,10 +10625,10 @@ entity side { "id" "32797" - "plane" "(-480 64 3) (-480 51 3) (-504 51 3)" + "plane" "(-504 51 3) (-504 64 3) (-488 64 3)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10448,10 +10636,10 @@ entity side { "id" "32796" - "plane" "(-480 51 3) (-480 41 -8) (-504 41 -8)" + "plane" "(-488 51 3) (-488 41 -8) (-504 41 -8)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10480,7 +10668,7 @@ entity side { "id" "32806" - "plane" "(-480 64 25) (-480 64 14) (-480 57 14)" + "plane" "(-488 64 25) (-488 64 14) (-488 57 14)" "material" "METAL/METALWALL_BTS_006A" "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -10491,10 +10679,10 @@ entity side { "id" "32805" - "plane" "(-480 64 14) (-480 64 25) (-504 64 25)" + "plane" "(-504 64 25) (-504 64 14) (-488 64 14)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10502,10 +10690,10 @@ entity side { "id" "32804" - "plane" "(-480 64 25) (-480 60 25) (-504 60 25)" + "plane" "(-504 60 25) (-504 64 25) (-488 64 25)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10513,10 +10701,10 @@ entity side { "id" "32803" - "plane" "(-480 57 14) (-480 64 14) (-504 64 14)" + "plane" "(-504 64 14) (-504 57 14) (-488 57 14)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10524,10 +10712,10 @@ entity side { "id" "32802" - "plane" "(-480 60 25) (-480 57 14) (-504 57 14)" + "plane" "(-488 60 25) (-488 57 14) (-504 57 14)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10556,7 +10744,7 @@ entity side { "id" "32812" - "plane" "(-480 64 93) (-480 64 88) (-480 34 88)" + "plane" "(-488 64 93) (-488 64 88) (-488 34 88)" "material" "METAL/METALWALL_BTS_006A" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -10567,10 +10755,10 @@ entity side { "id" "32811" - "plane" "(-480 64 88) (-480 64 93) (-504 64 93)" + "plane" "(-504 64 93) (-504 64 88) (-488 64 88)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10578,10 +10766,10 @@ entity side { "id" "32810" - "plane" "(-480 64 93) (-480 24 93) (-504 24 93)" + "plane" "(-504 24 93) (-504 64 93) (-488 64 93)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10589,10 +10777,10 @@ entity side { "id" "32809" - "plane" "(-480 34 88) (-480 64 88) (-504 64 88)" + "plane" "(-504 64 88) (-504 34 88) (-488 34 88)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10600,10 +10788,10 @@ entity side { "id" "32808" - "plane" "(-480 24 93) (-480 34 88) (-504 34 88)" + "plane" "(-504 34 88) (-504 24 93) (-488 24 93)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10632,7 +10820,7 @@ entity side { "id" "32818" - "plane" "(-480 64 88) (-480 64 82) (-480 41 82)" + "plane" "(-488 64 88) (-488 64 82) (-488 41 82)" "material" "METAL/METALWALL_BTS_006A" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -10643,10 +10831,10 @@ entity side { "id" "32817" - "plane" "(-480 64 82) (-480 64 88) (-504 64 88)" + "plane" "(-504 64 88) (-504 64 82) (-488 64 82)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10654,10 +10842,10 @@ entity side { "id" "32816" - "plane" "(-480 64 88) (-480 34 88) (-504 34 88)" + "plane" "(-504 34 88) (-504 64 88) (-488 64 88)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10665,10 +10853,10 @@ entity side { "id" "32815" - "plane" "(-480 41 82) (-480 64 82) (-504 64 82)" + "plane" "(-504 64 82) (-504 41 82) (-488 41 82)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10676,10 +10864,10 @@ entity side { "id" "32814" - "plane" "(-480 34 88) (-480 41 82) (-504 41 82)" + "plane" "(-504 41 82) (-504 34 88) (-488 34 88)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10708,7 +10896,7 @@ entity side { "id" "32824" - "plane" "(-480 64 82) (-480 64 71) (-480 51 71)" + "plane" "(-488 64 82) (-488 64 71) (-488 51 71)" "material" "METAL/METALWALL_BTS_006A" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -10719,10 +10907,10 @@ entity side { "id" "32823" - "plane" "(-480 64 71) (-480 64 82) (-504 64 82)" + "plane" "(-504 64 82) (-504 64 71) (-488 64 71)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10730,10 +10918,10 @@ entity side { "id" "32822" - "plane" "(-480 64 82) (-480 41 82) (-504 41 82)" + "plane" "(-504 41 82) (-504 64 82) (-488 64 82)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10741,10 +10929,10 @@ entity side { "id" "32821" - "plane" "(-480 51 71) (-480 64 71) (-504 64 71)" + "plane" "(-504 64 71) (-504 51 71) (-488 51 71)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10752,10 +10940,10 @@ entity side { "id" "32820" - "plane" "(-480 41 82) (-480 51 71) (-504 51 71)" + "plane" "(-488 41 82) (-488 51 71) (-504 51 71)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10784,7 +10972,7 @@ entity side { "id" "32830" - "plane" "(-480 -57 60) (-480 -64 60) (-480 -64 71)" + "plane" "(-488 -57 60) (-488 -64 60) (-488 -64 71)" "material" "METAL/METALWALL_BTS_006A" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -10795,10 +10983,10 @@ entity side { "id" "32829" - "plane" "(-480 -64 71) (-480 -64 60) (-504 -64 60)" + "plane" "(-488 -64 71) (-488 -64 60) (-504 -64 60)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10806,10 +10994,10 @@ entity side { "id" "32828" - "plane" "(-480 -51 71) (-480 -64 71) (-504 -64 71)" + "plane" "(-504 -64 71) (-504 -51 71) (-488 -51 71)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10817,10 +11005,10 @@ entity side { "id" "32827" - "plane" "(-480 -64 60) (-480 -57 60) (-504 -57 60)" + "plane" "(-504 -57 60) (-504 -64 60) (-488 -64 60)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10828,10 +11016,10 @@ entity side { "id" "32826" - "plane" "(-480 -57 60) (-480 -51 71) (-504 -51 71)" + "plane" "(-504 -51 71) (-504 -57 60) (-488 -57 60)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10860,7 +11048,7 @@ entity side { "id" "32836" - "plane" "(-480 -60 49) (-480 -64 49) (-480 -64 60)" + "plane" "(-488 -60 49) (-488 -64 49) (-488 -64 60)" "material" "METAL/METALWALL_BTS_006A" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -10871,10 +11059,10 @@ entity side { "id" "32835" - "plane" "(-480 -64 60) (-480 -64 49) (-504 -64 49)" + "plane" "(-488 -64 60) (-488 -64 49) (-504 -64 49)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10882,10 +11070,10 @@ entity side { "id" "32834" - "plane" "(-480 -57 60) (-480 -64 60) (-504 -64 60)" + "plane" "(-504 -64 60) (-504 -57 60) (-488 -57 60)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10893,10 +11081,10 @@ entity side { "id" "32833" - "plane" "(-480 -64 49) (-480 -60 49) (-504 -60 49)" + "plane" "(-504 -60 49) (-504 -64 49) (-488 -64 49)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10904,10 +11092,10 @@ entity side { "id" "32832" - "plane" "(-480 -60 49) (-480 -57 60) (-504 -57 60)" + "plane" "(-504 -57 60) (-504 -60 49) (-488 -60 49)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10936,7 +11124,7 @@ entity side { "id" "32842" - "plane" "(-480 -61 37) (-480 -64 37) (-480 -64 49)" + "plane" "(-488 -61 37) (-488 -64 37) (-488 -64 49)" "material" "METAL/METALWALL_BTS_006A" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -10947,10 +11135,10 @@ entity side { "id" "32841" - "plane" "(-480 -64 49) (-480 -64 37) (-504 -64 37)" + "plane" "(-488 -64 49) (-488 -64 37) (-504 -64 37)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10958,10 +11146,10 @@ entity side { "id" "32840" - "plane" "(-480 -60 49) (-480 -64 49) (-504 -64 49)" + "plane" "(-504 -64 49) (-504 -60 49) (-488 -60 49)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10969,10 +11157,10 @@ entity side { "id" "32839" - "plane" "(-480 -64 37) (-480 -61 37) (-504 -61 37)" + "plane" "(-504 -61 37) (-504 -64 37) (-488 -64 37)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10980,10 +11168,10 @@ entity side { "id" "32838" - "plane" "(-480 -61 37) (-480 -60 49) (-504 -60 49)" + "plane" "(-504 -60 49) (-504 -61 37) (-488 -61 37)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11012,7 +11200,7 @@ entity side { "id" "32848" - "plane" "(-480 -60 25) (-480 -64 25) (-480 -64 37)" + "plane" "(-488 -60 25) (-488 -64 25) (-488 -64 37)" "material" "METAL/METALWALL_BTS_006A" "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -11023,10 +11211,10 @@ entity side { "id" "32847" - "plane" "(-480 -64 37) (-480 -64 25) (-504 -64 25)" + "plane" "(-488 -64 37) (-488 -64 25) (-504 -64 25)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11034,10 +11222,10 @@ entity side { "id" "32846" - "plane" "(-480 -61 37) (-480 -64 37) (-504 -64 37)" + "plane" "(-504 -64 37) (-504 -61 37) (-488 -61 37)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11045,10 +11233,10 @@ entity side { "id" "32845" - "plane" "(-480 -64 25) (-480 -60 25) (-504 -60 25)" + "plane" "(-504 -60 25) (-504 -64 25) (-488 -64 25)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11056,10 +11244,10 @@ entity side { "id" "32844" - "plane" "(-480 -60 25) (-480 -61 37) (-504 -61 37)" + "plane" "(-504 -61 37) (-504 -60 25) (-488 -60 25)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11088,7 +11276,7 @@ entity side { "id" "32854" - "plane" "(-480 -57 14) (-480 -64 14) (-480 -64 25)" + "plane" "(-488 -57 14) (-488 -64 14) (-488 -64 25)" "material" "METAL/METALWALL_BTS_006A" "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -11099,10 +11287,10 @@ entity side { "id" "32853" - "plane" "(-480 -64 25) (-480 -64 14) (-504 -64 14)" + "plane" "(-488 -64 25) (-488 -64 14) (-504 -64 14)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11110,10 +11298,10 @@ entity side { "id" "32852" - "plane" "(-480 -60 25) (-480 -64 25) (-504 -64 25)" + "plane" "(-504 -64 25) (-504 -60 25) (-488 -60 25)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11121,10 +11309,10 @@ entity side { "id" "32851" - "plane" "(-480 -64 14) (-480 -57 14) (-504 -57 14)" + "plane" "(-504 -57 14) (-504 -64 14) (-488 -64 14)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11132,10 +11320,10 @@ entity side { "id" "32850" - "plane" "(-480 -57 14) (-480 -60 25) (-504 -60 25)" + "plane" "(-504 -60 25) (-504 -57 14) (-488 -57 14)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11164,7 +11352,7 @@ entity side { "id" "32860" - "plane" "(-480 -51 3) (-480 -64 3) (-480 -64 14)" + "plane" "(-488 -51 3) (-488 -64 3) (-488 -64 14)" "material" "METAL/METALWALL_BTS_006A" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -11175,10 +11363,10 @@ entity side { "id" "32859" - "plane" "(-480 -64 14) (-480 -64 3) (-504 -64 3)" + "plane" "(-488 -64 14) (-488 -64 3) (-504 -64 3)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11186,10 +11374,10 @@ entity side { "id" "32858" - "plane" "(-480 -57 14) (-480 -64 14) (-504 -64 14)" + "plane" "(-504 -64 14) (-504 -57 14) (-488 -57 14)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11197,10 +11385,10 @@ entity side { "id" "32857" - "plane" "(-480 -64 3) (-480 -51 3) (-504 -51 3)" + "plane" "(-504 -51 3) (-504 -64 3) (-488 -64 3)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11208,10 +11396,10 @@ entity side { "id" "32856" - "plane" "(-480 -51 3) (-480 -57 14) (-504 -57 14)" + "plane" "(-504 -57 14) (-504 -51 3) (-488 -51 3)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11240,7 +11428,7 @@ entity side { "id" "32866" - "plane" "(-480 64 14) (-480 64 3) (-480 51 3)" + "plane" "(-488 64 14) (-488 64 3) (-488 51 3)" "material" "METAL/METALWALL_BTS_006A" "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -11251,10 +11439,10 @@ entity side { "id" "32865" - "plane" "(-480 64 3) (-480 64 14) (-504 64 14)" + "plane" "(-504 64 14) (-504 64 3) (-488 64 3)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11262,10 +11450,10 @@ entity side { "id" "32864" - "plane" "(-480 64 14) (-480 57 14) (-504 57 14)" + "plane" "(-504 57 14) (-504 64 14) (-488 64 14)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11273,10 +11461,10 @@ entity side { "id" "32863" - "plane" "(-480 51 3) (-480 64 3) (-504 64 3)" + "plane" "(-504 64 3) (-504 51 3) (-488 51 3)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11284,10 +11472,10 @@ entity side { "id" "32862" - "plane" "(-480 57 14) (-480 51 3) (-504 51 3)" + "plane" "(-488 57 14) (-488 51 3) (-504 51 3)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11316,7 +11504,7 @@ entity side { "id" "32872" - "plane" "(-480 64 37) (-480 64 25) (-480 60 25)" + "plane" "(-488 64 37) (-488 64 25) (-488 60 25)" "material" "METAL/METALWALL_BTS_006A" "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -11327,10 +11515,10 @@ entity side { "id" "32871" - "plane" "(-480 64 25) (-480 64 37) (-504 64 37)" + "plane" "(-504 64 37) (-504 64 25) (-488 64 25)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11338,10 +11526,10 @@ entity side { "id" "32870" - "plane" "(-480 64 37) (-480 61 37) (-504 61 37)" + "plane" "(-504 61 37) (-504 64 37) (-488 64 37)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11349,10 +11537,10 @@ entity side { "id" "32869" - "plane" "(-480 60 25) (-480 64 25) (-504 64 25)" + "plane" "(-504 64 25) (-504 60 25) (-488 60 25)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11360,10 +11548,10 @@ entity side { "id" "32868" - "plane" "(-480 61 37) (-480 60 25) (-504 60 25)" + "plane" "(-488 61 37) (-488 60 25) (-504 60 25)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11392,7 +11580,7 @@ entity side { "id" "32878" - "plane" "(-480 -34 88) (-480 -64 88) (-480 -64 93)" + "plane" "(-488 -34 88) (-488 -64 88) (-488 -64 93)" "material" "METAL/METALWALL_BTS_006A" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -11403,10 +11591,10 @@ entity side { "id" "32877" - "plane" "(-480 -64 93) (-480 -64 88) (-504 -64 88)" + "plane" "(-488 -64 93) (-488 -64 88) (-504 -64 88)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11414,10 +11602,10 @@ entity side { "id" "32876" - "plane" "(-480 -24 93) (-480 -64 93) (-504 -64 93)" + "plane" "(-504 -64 93) (-504 -24 93) (-488 -24 93)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11425,10 +11613,10 @@ entity side { "id" "32875" - "plane" "(-480 -64 88) (-480 -34 88) (-504 -34 88)" + "plane" "(-504 -34 88) (-504 -64 88) (-488 -64 88)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11436,10 +11624,10 @@ entity side { "id" "32874" - "plane" "(-480 -34 88) (-480 -24 93) (-504 -24 93)" + "plane" "(-504 -24 93) (-504 -34 88) (-488 -34 88)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11468,7 +11656,7 @@ entity side { "id" "32884" - "plane" "(-480 -41 82) (-480 -64 82) (-480 -64 88)" + "plane" "(-488 -41 82) (-488 -64 82) (-488 -64 88)" "material" "METAL/METALWALL_BTS_006A" "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -11479,10 +11667,10 @@ entity side { "id" "32883" - "plane" "(-480 -64 88) (-480 -64 82) (-504 -64 82)" + "plane" "(-488 -64 88) (-488 -64 82) (-504 -64 82)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11490,10 +11678,10 @@ entity side { "id" "32882" - "plane" "(-480 -34 88) (-480 -64 88) (-504 -64 88)" + "plane" "(-504 -64 88) (-504 -34 88) (-488 -34 88)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11501,10 +11689,10 @@ entity side { "id" "32881" - "plane" "(-480 -64 82) (-480 -41 82) (-504 -41 82)" + "plane" "(-504 -41 82) (-504 -64 82) (-488 -64 82)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11512,10 +11700,10 @@ entity side { "id" "32880" - "plane" "(-480 -41 82) (-480 -34 88) (-504 -34 88)" + "plane" "(-504 -34 88) (-504 -41 82) (-488 -41 82)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11544,7 +11732,7 @@ entity side { "id" "32890" - "plane" "(-480 -51 71) (-480 -64 71) (-480 -64 82)" + "plane" "(-488 -51 71) (-488 -64 71) (-488 -64 82)" "material" "METAL/METALWALL_BTS_006A" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -11555,10 +11743,10 @@ entity side { "id" "32889" - "plane" "(-480 -64 82) (-480 -64 71) (-504 -64 71)" + "plane" "(-488 -64 82) (-488 -64 71) (-504 -64 71)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11566,10 +11754,10 @@ entity side { "id" "32888" - "plane" "(-480 -41 82) (-480 -64 82) (-504 -64 82)" + "plane" "(-504 -64 82) (-504 -41 82) (-488 -41 82)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11577,10 +11765,10 @@ entity side { "id" "32887" - "plane" "(-480 -64 71) (-480 -51 71) (-504 -51 71)" + "plane" "(-504 -51 71) (-504 -64 71) (-488 -64 71)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11588,10 +11776,10 @@ entity side { "id" "32886" - "plane" "(-480 -51 71) (-480 -41 82) (-504 -41 82)" + "plane" "(-504 -41 82) (-504 -51 71) (-488 -51 71)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11620,7 +11808,7 @@ entity side { "id" "32896" - "plane" "(-480 64 71) (-480 64 60) (-480 57 60)" + "plane" "(-488 64 71) (-488 64 60) (-488 57 60)" "material" "METAL/METALWALL_BTS_006A" "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -11631,10 +11819,10 @@ entity side { "id" "32895" - "plane" "(-480 64 60) (-480 64 71) (-504 64 71)" + "plane" "(-504 64 71) (-504 64 60) (-488 64 60)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11642,10 +11830,10 @@ entity side { "id" "32894" - "plane" "(-480 64 71) (-480 51 71) (-504 51 71)" + "plane" "(-504 51 71) (-504 64 71) (-488 64 71)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11653,10 +11841,10 @@ entity side { "id" "32893" - "plane" "(-480 57 60) (-480 64 60) (-504 64 60)" + "plane" "(-504 64 60) (-504 57 60) (-488 57 60)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11664,10 +11852,10 @@ entity side { "id" "32892" - "plane" "(-480 51 71) (-480 57 60) (-504 57 60)" + "plane" "(-488 51 71) (-488 57 60) (-504 57 60)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11696,7 +11884,7 @@ entity side { "id" "32902" - "plane" "(-480 64 60) (-480 64 49) (-480 60 49)" + "plane" "(-488 64 60) (-488 64 49) (-488 60 49)" "material" "METAL/METALWALL_BTS_006A" "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -11707,10 +11895,10 @@ entity side { "id" "32901" - "plane" "(-480 64 49) (-480 64 60) (-504 64 60)" + "plane" "(-504 64 60) (-504 64 49) (-488 64 49)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11718,10 +11906,10 @@ entity side { "id" "32900" - "plane" "(-480 64 60) (-480 57 60) (-504 57 60)" + "plane" "(-504 57 60) (-504 64 60) (-488 64 60)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11729,10 +11917,10 @@ entity side { "id" "32899" - "plane" "(-480 60 49) (-480 64 49) (-504 64 49)" + "plane" "(-504 64 49) (-504 60 49) (-488 60 49)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11740,10 +11928,10 @@ entity side { "id" "32898" - "plane" "(-480 57 60) (-480 60 49) (-504 60 49)" + "plane" "(-488 57 60) (-488 60 49) (-504 60 49)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11772,7 +11960,7 @@ entity side { "id" "32908" - "plane" "(-480 64 49) (-480 64 37) (-480 61 37)" + "plane" "(-488 64 49) (-488 64 37) (-488 61 37)" "material" "METAL/METALWALL_BTS_006A" "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -11783,10 +11971,10 @@ entity side { "id" "32907" - "plane" "(-480 64 37) (-480 64 49) (-504 64 49)" + "plane" "(-504 64 49) (-504 64 37) (-488 64 37)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11794,10 +11982,10 @@ entity side { "id" "32906" - "plane" "(-480 64 49) (-480 60 49) (-504 60 49)" + "plane" "(-504 60 49) (-504 64 49) (-488 64 49)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11805,10 +11993,10 @@ entity side { "id" "32905" - "plane" "(-480 61 37) (-480 64 37) (-504 64 37)" + "plane" "(-504 64 37) (-504 61 37) (-488 61 37)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11816,10 +12004,10 @@ entity side { "id" "32904" - "plane" "(-480 60 49) (-480 61 37) (-504 61 37)" + "plane" "(-488 60 49) (-488 61 37) (-504 61 37)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11837,7 +12025,7 @@ entity side { "id" "32915" - "plane" "(-504 24 93) (-504 64 93) (-504 64 99)" + "plane" "(-504 23.9883 93) (-504 64 93) (-504 64 99)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" "vaxis" "[0 -1 0 32] 0.25" @@ -11848,7 +12036,7 @@ entity side { "id" "32914" - "plane" "(-480 64 99) (-480 64 93) (-480 24 93)" + "plane" "(-488 64 99) (-488 64 93) (-488 24 93)" "material" "METAL/METALWALL_BTS_006A" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -11859,10 +12047,10 @@ entity side { "id" "32913" - "plane" "(-480 64 93) (-480 64 99) (-504 64 99)" + "plane" "(-504 64 99) (-504 64 93) (-488 64 93)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11870,10 +12058,10 @@ entity side { "id" "32912" - "plane" "(-480 24 93) (-480 64 93) (-504 64 93)" + "plane" "(-504 64 93) (-504 24 93) (-488 24 93)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11881,10 +12069,10 @@ entity side { "id" "32911" - "plane" "(-480 64 99) (-480 6 99) (-504 6 99)" + "plane" "(-504 6 99) (-504 64 99) (-488 64 99)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11892,10 +12080,10 @@ entity side { "id" "32910" - "plane" "(-480 6 99) (-480 24 93) (-504 24 93)" + "plane" "(-504 24 93) (-504 6 99) (-488 6 99)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11924,7 +12112,7 @@ entity side { "id" "32920" - "plane" "(-480 -24 93) (-480 -64 93) (-480 -64 99)" + "plane" "(-488 -23.9883 93) (-488 -64 93) (-488 -64 99)" "material" "METAL/METALWALL_BTS_006A" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -11935,10 +12123,10 @@ entity side { "id" "32919" - "plane" "(-480 -64 99) (-480 -64 93) (-504 -64 93)" + "plane" "(-488 -64 99) (-488 -64 93) (-504 -64 93)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11946,10 +12134,10 @@ entity side { "id" "32918" - "plane" "(-480 -64 93) (-480 -24 93) (-504 -24 93)" + "plane" "(-504 -24 93) (-504 -64 93) (-488 -64 93)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11957,10 +12145,10 @@ entity side { "id" "32917" - "plane" "(-480 -6 99) (-480 -64 99) (-504 -64 99)" + "plane" "(-504 -64 99) (-504 -6 99) (-488 -6 99)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11968,10 +12156,10 @@ entity side { "id" "32916" - "plane" "(-480 -24 93) (-480 -6 99) (-504 -6 99)" + "plane" "(-504 -6 99) (-504 -24 93) (-488 -24 93)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11998,6 +12186,8 @@ entity "classname" "trigger_portal_cleanser" "drawinfastreflection" "0" "origin" "-295 -0.5 122" + "renderamt" "255" + "rendercolor" "255 255 255" "spawnflags" "4105" "StartDisabled" "0" "UseScanline" "1" @@ -12228,6 +12418,7 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "1024" "angles" "-71.816 169.029 6.05844" "pitch" "-71.816" @@ -12236,7 +12427,7 @@ entity "origin" "-268 0 492" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -12267,6 +12458,7 @@ entity { "id" "126351" "classname" "env_soundscape" + "angles" "0 0 0" "radius" "128" "soundscape" "TestChamber_Destruction.DestructionBase" "StartDisabled" "0" @@ -12835,7 +13027,7 @@ entity "origin" "281.197 39.656 241" editor { - "color" "220 30 220" + "color" "200 200 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[500 -8768]" @@ -13491,7 +13683,7 @@ entity "origin" "-296 40 80" editor { - "color" "220 30 220" + "color" "200 200 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 0]" @@ -13509,7 +13701,7 @@ entity "origin" "-296 36 112" editor { - "color" "220 30 220" + "color" "200 200 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 0]" @@ -13527,7 +13719,7 @@ entity "origin" "-296 36 148" editor { - "color" "220 30 220" + "color" "200 200 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 0]" @@ -13587,7 +13779,7 @@ entity "rendercolor" "255 255 255" "skin" "0" "solid" "6" - "origin" "-471 141.52 209.303" + "origin" "-463 141.52 209.303" editor { "color" "255 255 0" @@ -13608,7 +13800,7 @@ entity "rendercolor" "255 255 255" "skin" "0" "solid" "6" - "origin" "-471 109.52 33.3026" + "origin" "-479 109.52 33.3026" editor { "color" "255 255 0" @@ -13629,7 +13821,7 @@ entity "rendercolor" "255 255 255" "skin" "0" "solid" "6" - "origin" "-471 77.5197 -158.697" + "origin" "-479 77.5197 -158.697" editor { "color" "255 255 0" @@ -13667,10 +13859,12 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" - "origin" "-368 -0.107269 48" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" + "origin" "-296 -0.107269 48" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -19572,6 +19766,7 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "0" "angles" "-86.5379 79.578 96.0634" "pitch" "-86.5379" @@ -19580,7 +19775,7 @@ entity "origin" "60 0 428" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -19750,12 +19945,13 @@ hidden { "id" "103179" "classname" "logic_script" + "angles" "0 0 0" "targetname" "transition_script" "vscripts" "debug_scripts/mp_coop_transition_list.nut" "origin" "440 88 100" editor { - "color" "220 30 220" + "color" "200 200 200" "visgroupid" "21" "visgroupshown" "0" "visgroupautoshown" "1" @@ -19827,6 +20023,7 @@ hidden { "id" "103189" "classname" "logic_relay" + "angles" "0 0 0" "spawnflags" "0" "StartDisabled" "0" "targetname" "@relay_enable_exit" @@ -19837,7 +20034,7 @@ hidden "origin" "518 182 50" editor { - "color" "220 30 220" + "color" "0 100 250" "visgroupid" "21" "visgroupshown" "0" "visgroupautoshown" "1" @@ -19851,9 +20048,13 @@ hidden { "id" "103191" "classname" "ambient_generic" + "angles" "0 0 0" "cspinup" "0" "fadeinsecs" "0" "fadeoutsecs" "0" + "haddons_enabled" "-1" + "haddons_infrange" "-1" + "haddons_mode" "-1" "health" "10" "lfomodpitch" "0" "lfomodvol" "0" @@ -19886,9 +20087,13 @@ hidden { "id" "103194" "classname" "ambient_generic" + "angles" "0 0 0" "cspinup" "0" "fadeinsecs" "0" "fadeoutsecs" "0" + "haddons_enabled" "-1" + "haddons_infrange" "-1" + "haddons_mode" "-1" "health" "10" "lfomodpitch" "0" "lfomodvol" "0" @@ -19921,9 +20126,13 @@ hidden { "id" "103197" "classname" "ambient_generic" + "angles" "0 0 0" "cspinup" "0" "fadeinsecs" "0" "fadeoutsecs" "0" + "haddons_enabled" "-1" + "haddons_infrange" "-1" + "haddons_mode" "-1" "health" "10" "lfomodpitch" "0" "lfomodvol" "0" @@ -19987,10 +20196,12 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" "origin" "-72 64 54.708" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -20002,6 +20213,7 @@ hidden { "id" "103209" "classname" "logic_relay" + "angles" "0 0 0" "spawnflags" "2" "StartDisabled" "0" "targetname" "relay_exit_succeed" @@ -20015,7 +20227,7 @@ hidden "origin" "518 190 70.9751" editor { - "color" "220 30 220" + "color" "0 100 250" "visgroupid" "21" "visgroupshown" "0" "visgroupautoshown" "1" @@ -20087,6 +20299,7 @@ hidden { "id" "103219" "classname" "logic_timer" + "angles" "0 0 0" "RefireTime" "1" "spawnflags" "0" "StartDisabled" "1" @@ -20099,7 +20312,7 @@ hidden "origin" "518 208 70.9751" editor { - "color" "220 30 220" + "color" "0 100 250" "visgroupid" "21" "visgroupshown" "0" "visgroupautoshown" "1" @@ -20113,6 +20326,7 @@ hidden { "id" "103221" "classname" "game_text" + "angles" "0 0 0" "channel" "1" "color" "0 128 255" "color2" "255 128 0" @@ -20129,7 +20343,7 @@ hidden "origin" "492.926 154.55 28" editor { - "color" "220 30 220" + "color" "200 0 0" "visgroupid" "21" "visgroupshown" "0" "visgroupautoshown" "1" @@ -20202,6 +20416,7 @@ hidden { "id" "103231" "classname" "env_fade" + "angles" "0 0 0" "duration" "0.6" "holdtime" "0.2" "renderamt" "255" @@ -20212,7 +20427,7 @@ hidden "origin" "-24 48 -30" editor { - "color" "220 30 220" + "color" "200 0 0" "visgroupid" "21" "visgroupshown" "0" "visgroupautoshown" "1" @@ -20226,6 +20441,7 @@ hidden { "id" "103233" "classname" "logic_relay" + "angles" "0 0 0" "spawnflags" "1" "StartDisabled" "0" "targetname" "@rl_start_exit" @@ -20243,7 +20459,7 @@ hidden "origin" "-60 68 -26" editor { - "color" "220 30 220" + "color" "0 100 250" "visgroupid" "21" "visgroupshown" "0" "visgroupautoshown" "1" @@ -20257,9 +20473,13 @@ hidden { "id" "103235" "classname" "ambient_generic" + "angles" "0 0 0" "cspinup" "0" "fadeinsecs" "0" "fadeoutsecs" "0" + "haddons_enabled" "-1" + "haddons_infrange" "-1" + "haddons_mode" "-1" "health" "10" "lfomodpitch" "0" "lfomodvol" "0" @@ -20321,6 +20541,7 @@ hidden { "id" "103242" "classname" "env_fade" + "angles" "0 0 0" "duration" "1.5" "holdtime" "10" "renderamt" "255" @@ -20331,7 +20552,7 @@ hidden "origin" "-88 64 -57" editor { - "color" "220 30 220" + "color" "200 0 0" "visgroupid" "21" "visgroupshown" "0" "visgroupautoshown" "1" @@ -20433,6 +20654,7 @@ hidden { "id" "103283" "classname" "point_template" + "angles" "0 0 0" "spawnflags" "2" "targetname" "template_movie_level_transition" "Template01" "playmovie_level_transition" @@ -20482,22 +20704,6 @@ entity } } entity -{ - "id" "103289" - "classname" "env_cubemap" - "cubemapsize" "4" - "sides" "" - "origin" "-472 0.109863 56" - editor - { - "color" "0 0 255" - "visgroupid" "19" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 500]" - } -} -entity { "id" "103292" "classname" "prop_static" @@ -20839,6 +21045,7 @@ entity "MinAnimTime" "5" "model" "models/elevator/elevator_blades.mdl" "PerformanceMode" "0" + "physdamagescale" "1.0" "pressuredelay" "0" "RandomAnimation" "0" "renderamt" "255" @@ -21084,6 +21291,7 @@ hidden { "id" "103387" "classname" "env_fade" + "angles" "0 0 0" "duration" "0.5" "renderamt" "255" "rendercolor" "0 0 0" @@ -21093,7 +21301,7 @@ hidden "origin" "-24 32 -62" editor { - "color" "220 30 220" + "color" "200 0 0" "visgroupid" "21" "visgroupshown" "0" "visgroupautoshown" "1" @@ -30444,6 +30652,7 @@ entity { "id" "103515" "classname" "logic_coop_manager" + "angles" "0 0 0" "DefaultPlayerStateA" "0" "DefaultPlayerStateB" "0" "targetname" "coopman_exit_level" @@ -30456,7 +30665,7 @@ entity "origin" "-112 0 -48" editor { - "color" "220 30 220" + "color" "0 100 250" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 -4768]" @@ -30467,6 +30676,8 @@ entity "id" "103517" "classname" "trigger_portal_cleanser" "origin" "-295 -0.5 -6" + "renderamt" "255" + "rendercolor" "255 255 255" "spawnflags" "4105" "StartDisabled" "0" "UseScanline" "1" @@ -30743,21 +30954,21 @@ entity "classname" "info_overlay" "angles" "0 0 0" "BasisNormal" "-0.967277 0.253722 6.08729e-007" - "BasisOrigin" "359.682 -18.8402 108.548" + "BasisOrigin" "359.682 -18.8402 110.548" "BasisU" "0.253722 0.967277 -1.59673e-007" "BasisV" "-6.29322e-007 0 -1" "EndU" "0" - "EndV" "1" + "EndV" "0.983942" "fademindist" "-1" "material" "decals/decalstain002a" "sides" "28020 28026 27816 27822 28327 28333" "StartU" "1" "StartV" "0" - "uv0" "-64 -124.548 0" - "uv1" "-64 124.548 0" - "uv2" "64 124.548 0" - "uv3" "64 -124.548 0" - "origin" "359.682 -18.8402 108.548" + "uv0" "-64 -122.548 0" + "uv1" "-64 122.548 0" + "uv2" "64 122.548 0" + "uv3" "64 -122.548 0" + "origin" "359.682 -18.8402 110.548" editor { "color" "80 150 225" @@ -30786,7 +30997,7 @@ entity "screenspacefade" "0" "skin" "0" "solid" "6" - "origin" "-465 120.565 127.274" + "origin" "-473 120.565 127.274" editor { "color" "255 255 0" @@ -30861,9 +31072,13 @@ hidden { "id" "103546" "classname" "ambient_generic" + "angles" "0 0 0" "cspinup" "0" "fadeinsecs" "0" "fadeoutsecs" "0" + "haddons_enabled" "-1" + "haddons_infrange" "-1" + "haddons_mode" "-1" "health" "10" "lfomodpitch" "0" "lfomodvol" "0" @@ -33157,6 +33372,7 @@ entity { "id" "103616" "classname" "logic_relay" + "angles" "0 0 0" "spawnflags" "1" "StartDisabled" "0" "targetname" "rl_start_exit_finished" @@ -33172,7 +33388,7 @@ entity "origin" "-88 64 -26" editor { - "color" "220 30 220" + "color" "0 100 250" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[1000 4500]" @@ -33300,6 +33516,7 @@ entity { "id" "103636" "classname" "env_soundscape" + "angles" "0 0 0" "radius" "360" "soundscape" "hallway_short01.instance" "targetname" "instance_level_exit" @@ -33361,7 +33578,7 @@ entity "screenspacefade" "0" "skin" "0" "solid" "6" - "origin" "-465 -104 127.852" + "origin" "-473 -104 127.852" editor { "color" "255 255 0" @@ -33376,6 +33593,7 @@ hidden { "id" "103674" "classname" "logic_relay" + "angles" "0 0 0" "spawnflags" "0" "targetname" "gladosendoflevelrelay" connections @@ -33387,7 +33605,7 @@ hidden "origin" "440 168 44.6663" editor { - "color" "220 30 220" + "color" "0 100 250" "visgroupid" "21" "visgroupshown" "0" "visgroupautoshown" "1" @@ -33401,6 +33619,7 @@ hidden { "id" "103676" "classname" "logic_relay" + "angles" "0 0 0" "spawnflags" "0" "targetname" "debug_change_to_next_map" connections @@ -33410,7 +33629,7 @@ hidden "origin" "484 88 103.485" editor { - "color" "220 30 220" + "color" "0 100 250" "visgroupid" "21" "visgroupshown" "0" "visgroupautoshown" "1" @@ -33483,6 +33702,7 @@ hidden { "id" "103686" "classname" "logic_relay" + "angles" "0 0 0" "spawnflags" "0" "StartDisabled" "0" "targetname" "@relay_disable_exit" @@ -33493,7 +33713,7 @@ hidden "origin" "518 198 50" editor { - "color" "220 30 220" + "color" "0 100 250" "visgroupid" "21" "visgroupshown" "0" "visgroupautoshown" "1" @@ -33565,6 +33785,7 @@ hidden { "id" "103696" "classname" "game_end" + "angles" "0 0 0" "targetname" "game_end" "origin" "516 116 50.174" editor @@ -33583,6 +33804,7 @@ hidden { "id" "103698" "classname" "logic_relay" + "angles" "0 0 0" "spawnflags" "0" "targetname" "debug_exit_level_relay" connections @@ -33592,7 +33814,7 @@ hidden "origin" "516 88 103.485" editor { - "color" "220 30 220" + "color" "0 100 250" "visgroupid" "21" "visgroupshown" "0" "visgroupautoshown" "1" @@ -35228,6 +35450,7 @@ hidden "id" "103756" "classname" "logic_playmovie" "allowskip" "0" + "angles" "0 0 0" "fadeintime" "2" "loopvideo" "1" "MovieFilename" "p2_menu01" @@ -35367,6 +35590,7 @@ hidden { "id" "103778" "classname" "env_fade" + "angles" "0 0 0" "duration" "1" "renderamt" "255" "rendercolor" "0 0 0" @@ -35376,7 +35600,7 @@ hidden "origin" "456 136 97.7359" editor { - "color" "220 30 220" + "color" "200 0 0" "visgroupid" "21" "visgroupshown" "0" "visgroupautoshown" "1" @@ -35420,6 +35644,7 @@ hidden { "id" "111207" "classname" "logic_relay" + "angles" "0 0 0" "targetname" "@enable_end_level_relay" connections { @@ -35429,7 +35654,7 @@ hidden "origin" "0 32 -64" editor { - "color" "220 30 220" + "color" "0 100 250" "visgroupid" "21" "visgroupshown" "0" "visgroupautoshown" "1" @@ -35443,11 +35668,12 @@ hidden { "id" "111227" "classname" "point_clientcommand" + "angles" "0 0 0" "targetname" "client_command" "origin" "0 16 -64" editor { - "color" "220 30 220" + "color" "200 0 0" "visgroupid" "21" "visgroupshown" "0" "visgroupautoshown" "1" @@ -35466,7 +35692,7 @@ entity "rendercolor" "255 255 255" "targetname" "@exit_portal_elevator_side" "width" "64" - "origin" "-491 0.238823 56" + "origin" "-499 0.238823 56" editor { "color" "220 30 220" @@ -35481,6 +35707,9 @@ entity "id" "74031" "classname" "prop_testchamber_door" "angles" "0 180 0" + "renderamt" "255" + "rendercolor" "255 255 255" + "solid" "6" "targetname" "@exit_airlock_door" connections { @@ -35488,7 +35717,7 @@ entity "OnOpen" "light_exit_areaTurnOn0-1" "OnOpen" "@exit_station_timEnable0-1" } - "origin" "-491 0.237823 -8" + "origin" "-499 0.237823 -8" editor { "color" "220 30 220" @@ -35503,8 +35732,8 @@ cameras "activecamera" "0" camera { - "position" "[-129.194 -11.8186 170.598]" - "look" "[-122.257 -10.4367 157.942]" + "position" "[-394.175 94.6271 262.151]" + "look" "[-396.276 95.3394 247.823]" } camera { diff --git a/packages/styles/overgrown/resources/instances/over/elevator_coop/exit_door.vmf b/packages/styles/overgrown/resources/instances/over/elevator_coop/exit_door.vmf index db0aa317d5..f1e1c0ac01 100644 --- a/packages/styles/overgrown/resources/instances/over/elevator_coop/exit_door.vmf +++ b/packages/styles/overgrown/resources/instances/over/elevator_coop/exit_door.vmf @@ -698,7 +698,6 @@ entity "OnUser1" "@exit_doorClose0-1" "OnUser2" "@exit_doorOpen0-1" "OnUser3" "@voice_allexitTrigger0-1" - "OnUser3" "@map_finishedTrigger0.5-1" "OnUser3" "@exit_airlock_doorOpen0.5-1" } "origin" "-48 4.19629e-006 -32" diff --git a/packages/styles/overgrown/resources/instances/over/elevator_sp/entrance_corridor_right_turn.vmf b/packages/styles/overgrown/resources/instances/over/elevator_sp/entrance_corridor_right_turn.vmf index bf081443da..d31ba656ec 100644 --- a/packages/styles/overgrown/resources/instances/over/elevator_sp/entrance_corridor_right_turn.vmf +++ b/packages/styles/overgrown/resources/instances/over/elevator_sp/entrance_corridor_right_turn.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8997" - "mapversion" "347" + "editorbuild" "9672" + "mapversion" "360" "formatversion" "100" "prefab" "0" } @@ -26,7 +26,7 @@ viewsettings world { "id" "1" - "mapversion" "347" + "mapversion" "360" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -34,6 +34,1070 @@ world "maxpropscreenwidth" "-1" "skyname" "sky_day01_01" solid + { + "id" "19340" + side + { + "id" "5192" + "plane" "(-280 128 160) (-280 144 160) (-248 144 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5191" + "plane" "(-280 144 128) (-280 144 160) (-280 128 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5190" + "plane" "(-280 128 128) (-280 128 160) (-248 128 160)" + "material" "METAL/BLACK_WALL_METAL_005B_TOP" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5189" + "plane" "(-248 144 160) (-280 144 160) (-280 144 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5188" + "plane" "(-280 144 128) (-280 128 128) (-248 128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5187" + "plane" "(-248 128 128) (-248 128 160) (-248 144 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 205 182" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19341" + side + { + "id" "5198" + "plane" "(-120 144 160) (-88 144 160) (-88 128 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5197" + "plane" "(-88 128 128) (-88 128 160) (-88 144 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5196" + "plane" "(-120 128 160) (-88 128 160) (-88 128 128)" + "material" "METAL/BLACK_WALL_METAL_005B_TOP" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5195" + "plane" "(-120 144 128) (-88 144 128) (-88 144 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5194" + "plane" "(-120 128 128) (-88 128 128) (-88 144 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5193" + "plane" "(-120 144 128) (-120 144 160) (-120 128 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 205 182" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19342" + side + { + "id" "5204" + "plane" "(-248 144 160) (-120 144 160) (-120 136 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5203" + "plane" "(-248 136 160) (-120 136 160) (-120 136 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5202" + "plane" "(-248 144 128) (-120 144 128) (-120 144 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5201" + "plane" "(-248 136 128) (-120 136 128) (-120 144 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5200" + "plane" "(-248 144 128) (-248 144 160) (-248 136 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5199" + "plane" "(-120 136 128) (-120 136 160) (-120 144 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 205 182" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19849" + side + { + "id" "5217" + "plane" "(-248 136 168) (-120 136 168) (-120 128 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5218" + "plane" "(-248 128 160) (-120 128 160) (-120 136 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5219" + "plane" "(-248 136 168) (-248 128 168) (-248 128 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5220" + "plane" "(-120 136 160) (-120 128 160) (-120 128 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5221" + "plane" "(-120 136 168) (-248 136 168) (-248 136 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5222" + "plane" "(-120 128 160) (-248 128 160) (-248 128 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 111 168" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19866" + side + { + "id" "5223" + "plane" "(-504 -160 168) (-376 -160 168) (-376 -184 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5224" + "plane" "(-504 -184 160) (-376 -184 160) (-376 -160 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5225" + "plane" "(-504 -160 168) (-504 -184 168) (-504 -184 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5226" + "plane" "(-376 -160 160) (-376 -184 160) (-376 -184 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5227" + "plane" "(-376 -160 168) (-504 -160 168) (-504 -160 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5228" + "plane" "(-376 -184 160) (-504 -184 160) (-504 -184 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 149 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19193" + side + { + "id" "5163" + "plane" "(-520 64 64) (-504 64 64) (-504 32 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5164" + "plane" "(-520 32 0) (-504 32 0) (-504 64 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5165" + "plane" "(-520 64 64) (-520 32 64) (-520 32 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5166" + "plane" "(-504 64 0) (-504 32 0) (-504 32 64)" + "material" "METAL/BLACK_WALL_METAL_005B_TOP" + "uaxis" "[0 1 0 512] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5167" + "plane" "(-504 64 64) (-520 64 64) (-520 64 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5168" + "plane" "(-504 32 0) (-520 32 0) (-520 32 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 184 137" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19194" + side + { + "id" "5169" + "plane" "(-520 128 64) (-504 128 64) (-504 64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5170" + "plane" "(-520 64 0) (-504 64 0) (-504 128 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5171" + "plane" "(-520 128 64) (-520 64 64) (-520 64 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5172" + "plane" "(-504 128 0) (-504 64 0) (-504 64 64)" + "material" "METAL/BLACK_WALL_METAL_005A_TOP" + "uaxis" "[0 1 0 512] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5173" + "plane" "(-504 128 64) (-520 128 64) (-520 128 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5174" + "plane" "(-504 64 0) (-520 64 0) (-520 64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 230 119" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19054" + side + { + "id" "5157" + "plane" "(-520 -96 16) (-520 32 16) (-520 32 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5158" + "plane" "(-504 32 0) (-504 -96 0) (-504 -96 64)" + "material" "METAL/BLACK_WALL_METAL_005A_TOP" + "uaxis" "[0 1 0 384] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5159" + "plane" "(-504 -96 0) (-504 32 0) (-520 32 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5160" + "plane" "(-520 -96 64) (-520 32 64) (-504 32 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5161" + "plane" "(-520 32 64) (-520 32 16) (-504 32 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5162" + "plane" "(-504 -96 64) (-504 -96 0) (-520 -96 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 111 232" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "18913" + side + { + "id" "5150" + "plane" "(-88 -64 160) (-88 64 160) (-68 64 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5149" + "plane" "(-88 64 128) (-88 64 160) (-88 -64 160)" + "material" "METAL/BLACK_WALL_METAL_005B_TOP" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 640] 0.25" + "rotation" "270" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5148" + "plane" "(-68 -64 128) (-68 -64 160) (-68 64 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5147" + "plane" "(-88 -64 128) (-88 -64 160) (-68 -64 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5146" + "plane" "(-68 64 128) (-68 64 160) (-88 64 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5145" + "plane" "(-88 64 128) (-88 -64 128) (-68 -64 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 221 166" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "18914" + side + { + "id" "5156" + "plane" "(-88 64 64) (-88 -64 64) (-68 -64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5155" + "plane" "(-88 -64 64) (-88 64 64) (-88 64 128)" + "material" "METAL/BLACK_WALL_METAL_005A_TOP" + "uaxis" "[0 1 0 768] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5154" + "plane" "(-68 64 64) (-68 -64 64) (-68 -64 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5153" + "plane" "(-68 -64 64) (-88 -64 64) (-88 -64 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5152" + "plane" "(-88 64 64) (-68 64 64) (-68 64 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5151" + "plane" "(-88 -64 128) (-88 64 128) (-68 64 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 221 166" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "18746" + side + { + "id" "5120" + "plane" "(-280 144 -32) (-280 144 0) (-280 128 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5119" + "plane" "(-88 128 -32) (-88 128 0) (-88 144 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5118" + "plane" "(-280 128 -32) (-280 128 0) (-88 128 0)" + "material" "METAL/BLACK_WALL_METAL_005B_TOP" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5117" + "plane" "(-88 144 -32) (-88 144 0) (-280 144 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5116" + "plane" "(-280 144 -32) (-280 128 -32) (-88 128 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5115" + "plane" "(-280 128 0) (-280 144 0) (-88 144 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 205 182" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "18761" + side + { + "id" "5126" + "plane" "(-88 144 128) (-88 144 0) (-88 128 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5125" + "plane" "(-88 128 128) (-88 128 0) (-216 128 0)" + "material" "METAL/BLACK_WALL_METAL_005C" + "uaxis" "[-1 0 0 -352] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5124" + "plane" "(-216 144 0) (-88 144 0) (-88 144 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5123" + "plane" "(-216 128 0) (-88 128 0) (-88 144 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5122" + "plane" "(-216 144 128) (-88 144 128) (-88 128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5121" + "plane" "(-216 128 128) (-216 128 0) (-216 144 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 205 182" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "18771" + side + { + "id" "5138" + "plane" "(-216 128 0) (-279 128 0) (-279 128 128)" + "material" "METAL/BLACK_WALL_METAL_005C" + "uaxis" "[-1 0 0 -352] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5137" + "plane" "(-279 144 0) (-216 144 0) (-216 144 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5136" + "plane" "(-216 144 0) (-279 144 0) (-279 128 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5135" + "plane" "(-216 128 128) (-279 128 128) (-279 144 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5134" + "plane" "(-216 144 128) (-216 144 0) (-216 128 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5133" + "plane" "(-279 128 128) (-279 128 0) (-279 144 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 205 182" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "18772" + side + { + "id" "5144" + "plane" "(-280 128 128) (-280 128 0) (-280 144 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5143" + "plane" "(-279 128 0) (-280 128 0) (-280 128 128)" + "material" "METAL/BLACK_WALL_METAL_005C" + "uaxis" "[-1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5142" + "plane" "(-280 144 128) (-280 144 0) (-279 144 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5141" + "plane" "(-279 144 0) (-280 144 0) (-280 128 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5140" + "plane" "(-279 128 128) (-280 128 128) (-280 144 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5139" + "plane" "(-279 144 128) (-279 144 0) (-279 128 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 205 182" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid { "id" "18577" side @@ -50,7 +1114,7 @@ world side { "id" "5047" - "plane" "(-520 -184 64) (-520 -160 64) (-504 -160 64)" + "plane" "(-520 -184 160) (-520 -160 160) (-504 -160 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -61,7 +1125,7 @@ world side { "id" "5046" - "plane" "(-520 -184 -64) (-520 -160 -64) (-520 -160 64)" + "plane" "(-520 -184 -64) (-520 -160 -64) (-520 -160 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" "vaxis" "[0 1 0 0] 0.25" @@ -72,7 +1136,7 @@ world side { "id" "5045" - "plane" "(-504 -160 -64) (-504 -184 -64) (-504 -184 64)" + "plane" "(-504 -160 -64) (-504 -184 -64) (-504 -184 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 -32] 0.25" @@ -83,7 +1147,7 @@ world side { "id" "5044" - "plane" "(-504 -184 -64) (-520 -184 -64) (-520 -184 64)" + "plane" "(-504 -184 -64) (-520 -184 -64) (-520 -184 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -94,7 +1158,7 @@ world side { "id" "5043" - "plane" "(-504 -160 64) (-520 -160 64) (-520 -160 -64)" + "plane" "(-520 -160 -64) (-504 -160 -64) (-504 -160 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -115,7 +1179,7 @@ world side { "id" "5060" - "plane" "(-360 -160 -64) (-360 -184 -64) (-360 -184 64)" + "plane" "(-360 -160 -64) (-360 -184 -64) (-360 -184 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" "vaxis" "[0 1 0 0] 0.25" @@ -126,7 +1190,7 @@ world side { "id" "5059" - "plane" "(-376 -184 -64) (-376 -160 -64) (-376 -160 64)" + "plane" "(-376 -184 -64) (-376 -160 -64) (-376 -160 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -148,7 +1212,7 @@ world side { "id" "5057" - "plane" "(-376 -184 64) (-376 -160 64) (-360 -160 64)" + "plane" "(-376 -184 160) (-376 -160 160) (-360 -160 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -159,7 +1223,7 @@ world side { "id" "5056" - "plane" "(-376 -184 -64) (-376 -184 64) (-360 -184 64)" + "plane" "(-360 -184 160) (-360 -184 -64) (-376 -184 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -170,7 +1234,7 @@ world side { "id" "5055" - "plane" "(-376 -160 64) (-376 -160 -64) (-360 -160 -64)" + "plane" "(-376 -160 160) (-376 -160 -64) (-360 -160 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -1211,7 +2275,7 @@ world side { "id" "4154" - "plane" "(-520 -160 160) (-520 128 160) (-504 128 160)" + "plane" "(-520 128 160) (-504 128 160) (-504 -160 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -1222,7 +2286,7 @@ world side { "id" "4153" - "plane" "(-520 128 16) (-520 128 160) (-520 -160 160)" + "plane" "(-520 128 160) (-520 -160 160) (-520 -160 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" "vaxis" "[0 1 0 0] 0.25" @@ -1233,7 +2297,7 @@ world side { "id" "4152" - "plane" "(-504 -160 2.28882e-005) (-504 -160 160) (-504 128 160)" + "plane" "(-504 -160 160) (-504 128 160) (-504 128 64)" "material" "METAL/BLACK_WALL_METAL_005B_TOP" "uaxis" "[0 1 0 512] 0.25" "vaxis" "[0 0 -1 -256] 0.25" @@ -1244,7 +2308,7 @@ world side { "id" "4151" - "plane" "(-504 128 160) (-520 128 160) (-520 128 16)" + "plane" "(-504 128 160) (-520 128 160) (-520 128 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -1255,7 +2319,7 @@ world side { "id" "4150" - "plane" "(-520 -160 16) (-520 -160 160) (-504 -160 160)" + "plane" "(-520 -160 160) (-504 -160 160) (-504 -160 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -1266,7 +2330,7 @@ world side { "id" "4149" - "plane" "(-520 128 16) (-520 -160 16) (-504 -160 2.28882e-005)" + "plane" "(-520 -160 64) (-504 -160 64) (-504 128 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -1374,7 +2438,7 @@ world side { "id" "4177" - "plane" "(-520 -32 -64) (-520 128 -64) (-520 128 2.28882e-005)" + "plane" "(-520 -32 -64) (-520 128 -64) (-520 128 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" "vaxis" "[0 1 0 0] 0.25" @@ -1385,7 +2449,7 @@ world side { "id" "4176" - "plane" "(-504 128 2.28882e-005) (-504 128 -64) (-504 -32 -64)" + "plane" "(-504 128 0) (-504 128 -64) (-504 -32 -64)" "material" "METAL/BLACK_WALL_METAL_005B_TOP" "uaxis" "[0 1 0 512] 0.25" "vaxis" "[0 0 -1 -256] 0.25" @@ -1396,7 +2460,7 @@ world side { "id" "4175" - "plane" "(-520 128 2.28882e-005) (-520 128 -64) (-504 128 -64)" + "plane" "(-520 128 0) (-520 128 -64) (-504 128 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -1407,7 +2471,7 @@ world side { "id" "4174" - "plane" "(-520 -32 2.28882e-005) (-520 128 2.28882e-005) (-504 128 2.28882e-005)" + "plane" "(-520 -32 0) (-520 128 0) (-504 128 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -1418,7 +2482,7 @@ world side { "id" "4173" - "plane" "(-504 -32 -64) (-520 -32 -64) (-520 -32 2.28882e-005)" + "plane" "(-504 -32 0) (-504 -32 -64) (-520 -32 -64)" "material" "METAL/METALWALL_BTS_006A" "uaxis" "[0 0 1 0] 0.25" "vaxis" "[-1 0 0 -480] 0.25" @@ -1439,7 +2503,7 @@ world side { "id" "4184" - "plane" "(-520 -96 -64) (-520 -160 -64) (-504 -160 -64)" + "plane" "(-520 -160 -64) (-504 -160 -64) (-504 -96 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -1450,7 +2514,7 @@ world side { "id" "4183" - "plane" "(-520 -160 2.28882e-005) (-520 -160 -64) (-520 -96 -64)" + "plane" "(-520 -160 -64) (-520 -96 -64) (-520 -96 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" "vaxis" "[0 1 0 0] 0.25" @@ -1461,7 +2525,7 @@ world side { "id" "4182" - "plane" "(-504 -96 -64) (-504 -160 -64) (-504 -160 2.28882e-005)" + "plane" "(-504 -160 -64) (-504 -160 64) (-504 -96 64)" "material" "METAL/BLACK_WALL_METAL_005B_TOP" "uaxis" "[0 1 0 512] 0.25" "vaxis" "[0 0 -1 -256] 0.25" @@ -1472,7 +2536,7 @@ world side { "id" "4181" - "plane" "(-504 -160 -64) (-520 -160 -64) (-520 -160 2.28882e-005)" + "plane" "(-504 -160 -64) (-520 -160 -64) (-520 -160 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -1483,7 +2547,7 @@ world side { "id" "4180" - "plane" "(-520 -160 2.28882e-005) (-520 -96 2.28882e-005) (-504 -96 2.28882e-005)" + "plane" "(-520 -96 64) (-504 -96 64) (-504 -160 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -1494,7 +2558,7 @@ world side { "id" "4179" - "plane" "(-520 -96 2.28882e-005) (-520 -96 -64) (-504 -96 -64)" + "plane" "(-520 -96 -64) (-504 -96 -64) (-504 -96 64)" "material" "METAL/METALWALL_BTS_006A" "uaxis" "[0 0 1 0] 0.25" "vaxis" "[-1 0 0 -480] 0.25" @@ -1830,7 +2894,7 @@ world side { "id" "3148" - "plane" "(-504 -188 64) (-504 -184 64) (-376 -184 64)" + "plane" "(-504 -188 160) (-504 -184 160) (-376 -184 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -1841,7 +2905,7 @@ world side { "id" "3149" - "plane" "(-504 -188 -64) (-504 -184 -64) (-504 -184 64)" + "plane" "(-504 -188 -64) (-504 -184 -64) (-504 -184 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" "vaxis" "[0 1 0 0] 0.25" @@ -1852,7 +2916,7 @@ world side { "id" "3150" - "plane" "(-376 -184 -64) (-376 -188 -64) (-376 -188 64)" + "plane" "(-376 -184 -64) (-376 -188 -64) (-376 -188 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" "vaxis" "[0 1 0 0] 0.25" @@ -1863,7 +2927,7 @@ world side { "id" "3151" - "plane" "(-376 -188 -64) (-504 -188 -64) (-504 -188 64)" + "plane" "(-376 -188 -64) (-504 -188 -64) (-504 -188 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -1874,7 +2938,7 @@ world side { "id" "3152" - "plane" "(-376 -184 64) (-504 -184 64) (-504 -184 -64)" + "plane" "(-504 -184 -64) (-376 -184 -64) (-376 -184 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -1966,82 +3030,6 @@ world } } solid - { - "id" "11296" - side - { - "id" "3453" - "plane" "(-376 -160 160) (-504 -160 160) (-504 -160 64)" - "material" "METAL/BLACK_WALL_METAL_005B_TOP" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3454" - "plane" "(-376 -184 64) (-504 -184 64) (-504 -184 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3455" - "plane" "(-376 -160 64) (-504 -160 64) (-504 -184 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3456" - "plane" "(-376 -184 160) (-504 -184 160) (-504 -160 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3457" - "plane" "(-376 -160 160) (-376 -160 64) (-376 -184 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3458" - "plane" "(-504 -184 160) (-504 -184 64) (-504 -160 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 101 106" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid { "id" "11307" side @@ -2346,82 +3334,6 @@ world } } solid - { - "id" "11326" - side - { - "id" "3531" - "plane" "(-88 64 64) (-88 -64 64) (-68 -64 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3532" - "plane" "(-88 -64 160) (-88 64 160) (-68 64 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3533" - "plane" "(-88 -64 64) (-88 64 64) (-88 64 160)" - "material" "METAL/BLACK_WALL_METAL_005B_TOP" - "uaxis" "[0 1 0 256] 0.25" - "vaxis" "[0 0 -1 640] 0.25" - "rotation" "270" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3534" - "plane" "(-68 64 64) (-68 -64 64) (-68 -64 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3535" - "plane" "(-68 -64 64) (-88 -64 64) (-88 -64 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3536" - "plane" "(-68 64 160) (-88 64 160) (-88 64 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 221 166" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid { "id" "12570" side @@ -2462,7 +3374,7 @@ world "id" "3539" "plane" "(-504 128 -32) (-504 128 160) (-376 128 160)" "material" "METAL/BLACK_WALL_METAL_005A_TOP" - "uaxis" "[-1 0 0 32] 0.25" + "uaxis" "[1 0 0 740] 0.25" "vaxis" "[0 0 -1 640] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2709,86 +3621,10 @@ world } side { - "id" "3572" - "plane" "(-376 144 -32) (-376 144 -64) (-280 144 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 202 179" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "12652" - side - { - "id" "3578" - "plane" "(-280 128 160) (-280 144 160) (-88 144 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3577" - "plane" "(-280 144 -32) (-280 144 160) (-280 128 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3576" - "plane" "(-88 128 -32) (-88 128 160) (-88 144 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3575" - "plane" "(-280 128 -32) (-280 128 160) (-88 128 160)" - "material" "METAL/BLACK_WALL_METAL_005B_TOP" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3574" - "plane" "(-88 144 160) (-280 144 160) (-280 144 -32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3573" - "plane" "(-280 144 -32) (-280 128 -32) (-88 128 -32)" + "id" "3572" + "plane" "(-376 144 -32) (-376 144 -64) (-280 144 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 0 1 0] 0.25" "vaxis" "[-1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2796,7 +3632,7 @@ world } editor { - "color" "0 205 182" + "color" "0 202 179" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -5160,6 +5996,228 @@ world } } entity +{ + "id" "19357" + "classname" "func_detail" + solid + { + "id" "19358" + side + { + "id" "5216" + "plane" "(-128 135 153) (-240 135 153) (-240 136 153)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5215" + "plane" "(-128 136 135) (-240 136 135) (-240 135 135)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5214" + "plane" "(-240 136 135) (-128 136 135) (-128 136 153)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5213" + "plane" "(-128 135 135) (-240 135 135) (-240 135 153)" + "material" "LIGHTS/LIGHT_PANEL_COOL" + "uaxis" "[1 0 0 14] 2" + "vaxis" "[0 0 -1 4] 2" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5212" + "plane" "(-128 136 135) (-128 135 135) (-128 135 153)" + "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" "5211" + "plane" "(-240 135 135) (-240 136 135) (-240 136 153)" + "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" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "19359" + "classname" "prop_static" + "angles" "0 270 90" + "disableshadows" "1" + "drawinfastreflection" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_lab/glass_lightcover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "origin" "-184 128 144" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2500 -12768]" + } +} +entity +{ + "id" "19869" + "classname" "func_detail" + solid + { + "id" "19870" + side + { + "id" "5240" + "plane" "(-496 -167 153) (-384 -167 153) (-384 -184 153)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -40] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5239" + "plane" "(-496 -184 135) (-384 -184 135) (-384 -167 135)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -40] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5238" + "plane" "(-384 -184 135) (-496 -184 135) (-496 -184 153)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5237" + "plane" "(-496 -167 135) (-384 -167 135) (-384 -167 153)" + "material" "LIGHTS/LIGHT_PANEL_COOL" + "uaxis" "[-1 0 0 -42] 2" + "vaxis" "[0 0 -1 52] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "5236" + "plane" "(-496 -184 135) (-496 -167 135) (-496 -167 153)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5235" + "plane" "(-384 -167 135) (-384 -184 135) (-384 -184 153)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "19871" + "classname" "prop_static" + "angles" "0 90 90" + "disableshadows" "1" + "drawinfastreflection" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_lab/glass_lightcover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "origin" "-440 -160 144" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2500 -12768]" + } +} +entity { "id" "17986" "classname" "func_detail" @@ -5498,110 +6556,6 @@ entity } } entity -{ - "id" "18037" - "classname" "light" - "_constant_attn" "0" - "_distance" "0" - "_fifty_percent_distance" "64" - "_hardfalloff" "0" - "_light" "200 230 250 400" - "_lightHDR" "-1 -1 -1 1" - "_lightscaleHDR" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "96" - "angles" "0 0 0" - "spawnflags" "0" - "style" "0" - "origin" "-464 130 -52" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 10500]" - } -} -entity -{ - "id" "18114" - "classname" "light" - "_constant_attn" "0" - "_distance" "0" - "_fifty_percent_distance" "64" - "_hardfalloff" "0" - "_light" "200 230 250 400" - "_lightHDR" "-1 -1 -1 1" - "_lightscaleHDR" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "96" - "angles" "0 0 0" - "spawnflags" "0" - "style" "0" - "origin" "-432 130 -52" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 10500]" - } -} -entity -{ - "id" "18429" - "classname" "light" - "_constant_attn" "0" - "_distance" "0" - "_fifty_percent_distance" "64" - "_hardfalloff" "0" - "_light" "200 230 250 400" - "_lightHDR" "-1 -1 -1 1" - "_lightscaleHDR" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "96" - "angles" "0 0 0" - "spawnflags" "0" - "style" "0" - "origin" "-240 130 -52" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 10500]" - } -} -entity -{ - "id" "18485" - "classname" "light" - "_constant_attn" "0" - "_distance" "0" - "_fifty_percent_distance" "64" - "_hardfalloff" "0" - "_light" "200 230 250 400" - "_lightHDR" "-1 -1 -1 1" - "_lightscaleHDR" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "96" - "angles" "0 0 0" - "spawnflags" "0" - "style" "0" - "origin" "-208 130 -52" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 10500]" - } -} -entity { "id" "18506" "classname" "infodecal" @@ -5685,10 +6639,10 @@ entity "id" "4805" "plane" "(-384 135 -57) (-496 135 -57) (-496 135 -39)" "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[1 0 0 14] 4" - "vaxis" "[0 0 -1 20] 4" + "uaxis" "[1 0 0 14] 2" + "vaxis" "[0 0 -1 20] 2" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "4" "smoothing_groups" "0" } side @@ -5796,8 +6750,8 @@ entity "id" "4877" "plane" "(-160 135 -57) (-272 135 -57) (-272 135 -39)" "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[1 0 0 22] 4" - "vaxis" "[0 0 -1 20] 4" + "uaxis" "[1 0 0 22] 2" + "vaxis" "[0 0 -1 20] 2" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -7700,6 +8654,7 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "10" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "0" "angles" "-38.9116 328.369 179.54" "pitch" "-38" @@ -7730,6 +8685,7 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "10" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "0" "angles" "-67.292 207.779 162.114" "pitch" "-67.292" @@ -8729,7 +9685,7 @@ entity "EndV" "1" "fademindist" "-1" "material" "overlays/overlay_moss01" - "sides" "3527 3533 4693 4735 4645 4705 4651 4657 4699 4729 4603 4627 4633 4663 4639 4675 4669" + "sides" "3527 4669 4693 4735 4645 4705 4651 4657 4699 4729 4603 4627 4633 4663 4639 4675 5155 5149" "StartU" "1" "StartV" "0" "uv0" "-128 -128 0" @@ -8841,7 +9797,7 @@ entity side { "id" "2144" - "plane" "(-376 -160 64) (-504 -160 64) (-504 -160 43)" + "plane" "(-376 -160 43) (-376 -160 128) (-504 -160 128)" "material" "METAL/BLACK_WALL_METAL_005B_TOP" "uaxis" "[-1 0 0 -96] 0.25" "vaxis" "[0 0 -1 -256] 0.25" @@ -8852,7 +9808,7 @@ entity side { "id" "2143" - "plane" "(-504 -184 43) (-504 -184 64) (-376 -184 64)" + "plane" "(-504 -184 43) (-504 -184 128) (-376 -184 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -8863,7 +9819,7 @@ entity side { "id" "2142" - "plane" "(-376 -184 64) (-504 -184 64) (-504 -160 64)" + "plane" "(-376 -184 128) (-504 -184 128) (-504 -160 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -8874,7 +9830,7 @@ entity side { "id" "2141" - "plane" "(-376 -160 64) (-376 -160 43) (-376 -184 43)" + "plane" "(-376 -160 128) (-376 -160 43) (-376 -184 43)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" "vaxis" "[0 1 0 0] 0.25" @@ -8885,7 +9841,7 @@ entity side { "id" "2140" - "plane" "(-504 -184 64) (-504 -184 43) (-504 -160 43)" + "plane" "(-504 -184 128) (-504 -184 43) (-504 -160 43)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" "vaxis" "[0 1 0 0] 0.25" diff --git a/packages/styles/overgrown/resources/instances/over/elevator_sp/entrance_corridor_small_right.vmf b/packages/styles/overgrown/resources/instances/over/elevator_sp/entrance_corridor_small_right.vmf index 26b0c9c0dd..34367c8b9e 100644 --- a/packages/styles/overgrown/resources/instances/over/elevator_sp/entrance_corridor_small_right.vmf +++ b/packages/styles/overgrown/resources/instances/over/elevator_sp/entrance_corridor_small_right.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8997" - "mapversion" "329" + "editorbuild" "9672" + "mapversion" "363" "formatversion" "100" "prefab" "0" } @@ -26,13 +26,13 @@ viewsettings "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "8" + "nGridSpacing" "16" "bShow3DGrid" "0" } world { "id" "1" - "mapversion" "329" + "mapversion" "363" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -263,7 +263,7 @@ world side { "id" "4441" - "plane" "(-120 -120 -64) (-248 -120 -64) (-248 -120 -72)" + "plane" "(-248 -128 -72) (-120 -128 -72) (-120 -128 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -285,7 +285,7 @@ world side { "id" "4439" - "plane" "(-120 -120 -72) (-248 -120 -72) (-248 -144 -72)" + "plane" "(-120 -128 -72) (-248 -128 -72) (-248 -144 -72)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 -32] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -296,10 +296,10 @@ world side { "id" "4438" - "plane" "(-120 -144 -64) (-248 -144 -64) (-248 -120 -64)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[-1 0 0 32] 0.25" + "plane" "(-120 -144 -64) (-248 -144 -64) (-248 -128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -47] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -307,7 +307,7 @@ world side { "id" "4437" - "plane" "(-120 -120 -64) (-120 -120 -72) (-120 -144 -72)" + "plane" "(-120 -128 -64) (-120 -128 -72) (-120 -144 -72)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" "vaxis" "[0 1 0 -32] 0.25" @@ -318,7 +318,7 @@ world side { "id" "4436" - "plane" "(-248 -144 -64) (-248 -144 -72) (-248 -120 -72)" + "plane" "(-248 -144 -64) (-248 -144 -72) (-248 -128 -72)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 -1 -32] 0.25" "vaxis" "[0 1 0 -32] 0.25" @@ -1072,7 +1072,7 @@ world side { "id" "3463" - "plane" "(-88 -120 64) (-120 -120 64) (-120 -120 -64)" + "plane" "(-120 -128 -64) (-88 -128 -64) (-88 -128 64)" "material" "METAL/BLACK_WALL_METAL_005B_TOP" "uaxis" "[-1 0 0 544] 0.25" "vaxis" "[0 0 -1 512] 0.25" @@ -1083,7 +1083,7 @@ world side { "id" "3462" - "plane" "(-88 -144 -64) (-120 -144 -64) (-120 -144 64)" + "plane" "(-88 -152 -64) (-120 -152 -64) (-120 -152 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 -1 0] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -1094,9 +1094,9 @@ world side { "id" "3461" - "plane" "(-88 -120 -64) (-120 -120 -64) (-120 -144 -64)" + "plane" "(-88 -128 -64) (-120 -128 -64) (-120 -152 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[-1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1105,9 +1105,9 @@ world side { "id" "3460" - "plane" "(-88 -144 64) (-120 -144 64) (-120 -120 64)" + "plane" "(-88 -152 64) (-120 -152 64) (-120 -128 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[-1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1116,10 +1116,10 @@ world side { "id" "3459" - "plane" "(-88 -120 64) (-88 -120 -64) (-88 -144 -64)" + "plane" "(-88 -128 64) (-88 -128 -64) (-88 -152 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1127,10 +1127,10 @@ world side { "id" "3458" - "plane" "(-120 -144 64) (-120 -144 -64) (-120 -120 -64)" + "plane" "(-120 -152 64) (-120 -152 -64) (-120 -128 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1224,7 +1224,7 @@ world side { "id" "4973" - "plane" "(-88 -120 128) (-280 -120 128) (-280 -120 64)" + "plane" "(-280 -128 64) (-88 -128 64) (-88 -128 128)" "material" "METAL/BLACK_WALL_METAL_005A_TOP" "uaxis" "[-1 0 0 -864] 0.25" "vaxis" "[0 0 -1 512] 0.25" @@ -1246,9 +1246,9 @@ world side { "id" "4971" - "plane" "(-88 -120 64) (-280 -120 64) (-280 -160 64)" + "plane" "(-88 -128 64) (-280 -128 64) (-280 -160 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[-1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1257,9 +1257,9 @@ world side { "id" "4970" - "plane" "(-88 -160 128) (-280 -160 128) (-280 -120 128)" + "plane" "(-88 -160 128) (-280 -160 128) (-280 -128 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[-1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1268,10 +1268,10 @@ world side { "id" "4969" - "plane" "(-88 -120 128) (-88 -120 64) (-88 -160 64)" + "plane" "(-88 -128 128) (-88 -128 64) (-88 -160 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1279,10 +1279,10 @@ world side { "id" "4968" - "plane" "(-280 -160 128) (-280 -160 64) (-280 -120 64)" + "plane" "(-280 -160 128) (-280 -160 64) (-280 -128 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1377,9 +1377,9 @@ world side { "id" "4979" - "plane" "(-280 -120 -64) (-280 -160 -64) (-248 -160 -64)" + "plane" "(-280 -128 -64) (-280 -160 -64) (-248 -160 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[-1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1388,9 +1388,9 @@ world side { "id" "4978" - "plane" "(-280 -160 64) (-280 -120 64) (-248 -120 64)" + "plane" "(-280 -160 64) (-280 -128 64) (-248 -128 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[-1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1399,10 +1399,10 @@ world side { "id" "4977" - "plane" "(-280 -160 -64) (-280 -120 -64) (-280 -120 64)" + "plane" "(-280 -160 -64) (-280 -128 -64) (-280 -128 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1410,10 +1410,10 @@ world side { "id" "4976" - "plane" "(-248 -120 -64) (-248 -160 -64) (-248 -160 64)" + "plane" "(-248 -128 -64) (-248 -160 -64) (-248 -160 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1432,7 +1432,7 @@ world side { "id" "4974" - "plane" "(-248 -120 64) (-280 -120 64) (-280 -120 -64)" + "plane" "(-280 -128 -64) (-248 -128 -64) (-248 -128 64)" "material" "METAL/BLACK_WALL_METAL_005B_TOP" "uaxis" "[-1 0 0 544] 0.25" "vaxis" "[0 0 -1 512] 0.25" @@ -1453,7 +1453,7 @@ world side { "id" "3613" - "plane" "(-88 128 -64.0001) (-280 128 -64) (-280 128 -184)" + "plane" "(-280 128 -184) (-88 128 -184) (-88 128 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -1464,7 +1464,7 @@ world side { "id" "3612" - "plane" "(-88 -120 -184) (-280 -120 -184) (-280 -120 -64)" + "plane" "(-88 -128 -184) (-280 -128 -184) (-280 -128 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 -1 0] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -1475,7 +1475,7 @@ world side { "id" "3611" - "plane" "(-88 128 -184) (-280 128 -184) (-280 -120 -184)" + "plane" "(-88 128 -184) (-280 128 -184) (-280 -128 -184)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -1486,7 +1486,7 @@ world side { "id" "3610" - "plane" "(-88 -120 -64.0001) (-280 -120 -64) (-280 128 -64)" + "plane" "(-88 -128 -64) (-280 -128 -64) (-280 128 -64)" "material" "NATURE/DIRTFLOOR004C" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -1497,7 +1497,7 @@ world side { "id" "3609" - "plane" "(-88 128 -64.0001) (-88 128 -184) (-88 -120 -184)" + "plane" "(-88 128 -64) (-88 128 -184) (-88 -128 -184)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" "vaxis" "[0 1 0 0] 0.25" @@ -1508,7 +1508,7 @@ world side { "id" "3608" - "plane" "(-280 -120 -64) (-280 -120 -184) (-280 128 -184)" + "plane" "(-280 -128 -64) (-280 -128 -184) (-280 128 -184)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 -1 0] 0.25" "vaxis" "[0 1 0 0] 0.25" @@ -1758,10 +1758,10 @@ world side { "id" "3890" - "plane" "(-288 136 -72) (-288 -120 -72) (-280 -120 -72)" + "plane" "(-288 128 -72) (-288 -128 -72) (-280 -128 -72)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1769,10 +1769,10 @@ world side { "id" "3891" - "plane" "(-288 -120 128) (-288 136 128) (-280 136 128)" + "plane" "(-288 -128 128) (-288 128 128) (-280 128 128)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1780,9 +1780,9 @@ world side { "id" "3892" - "plane" "(-288 -120 -72) (-288 136 -72) (-288 136 128)" + "plane" "(-288 -128 -72) (-288 128 -72) (-288 128 128)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[0 0 1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1791,9 +1791,9 @@ world side { "id" "3893" - "plane" "(-280 136 -72) (-280 -120 -72) (-280 -120 128)" + "plane" "(-280 128 -72) (-280 -128 -72) (-280 -128 128)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[0 0 1 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1802,7 +1802,7 @@ world side { "id" "3894" - "plane" "(-280 -120 -72) (-288 -120 -72) (-288 -120 128)" + "plane" "(-280 -128 -72) (-288 -128 -72) (-288 -128 128)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[-1 0 0 32] 0.25" "vaxis" "[0 0 1 32] 0.25" @@ -1813,7 +1813,7 @@ world side { "id" "3895" - "plane" "(-280 136 128) (-288 136 128) (-288 136 -72)" + "plane" "(-288 128 -72) (-280 128 -72) (-280 128 128)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[1 0 0 -32] 0.25" "vaxis" "[0 0 1 32] 0.25" @@ -2239,73 +2239,73 @@ world } entity { - "id" "32027" + "id" "37216" "classname" "func_detail" solid { - "id" "32022" + "id" "37217" side { - "id" "4967" - "plane" "(-296 -128 64) (-280 -128 64) (-280 -160 64)" - "material" "METAL/METALWALL_BTS_006A" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "5267" + "plane" "(-152 -96 128) (-152 -128 128) (-120 -128 128)" + "material" "METAL/BLACK_WALL_METAL_005B" + "uaxis" "[1 0 0 -544] 0.25" + "vaxis" "[0 1 0 384] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4966" - "plane" "(-296 -160 -184) (-280 -160 -184) (-280 -128 -184)" + "id" "5266" + "plane" "(-152 -128 130) (-152 -96 130) (-120 -96 130)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4965" - "plane" "(-296 -128 64) (-296 -160 64) (-296 -160 -184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "5265" + "plane" "(-152 -128 128) (-152 -96 128) (-152 -96 130)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 -1 56] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4964" - "plane" "(-280 -128 -184) (-280 -160 -184) (-280 -160 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "5264" + "plane" "(-120 -96 128) (-120 -128 128) (-120 -128 130)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 -1 56] 0.25" + "vaxis" "[0 -1 0 -384] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4963" - "plane" "(-280 -128 64) (-296 -128 64) (-296 -128 -184)" - "material" "METAL/METALWALL_BTS_006A" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" - "rotation" "0" + "id" "5263" + "plane" "(-120 -128 128) (-152 -128 128) (-152 -128 130)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -8] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4962" - "plane" "(-280 -160 -184) (-296 -160 -184) (-296 -160 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "5262" + "plane" "(-152 -96 128) (-120 -96 128) (-120 -96 130)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 -1 56] 0.25" + "vaxis" "[1 0 0 -416] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2317,83 +2317,71 @@ entity "visgroupautoshown" "1" } } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 1000]" - } -} -entity -{ - "id" "29938" - "classname" "func_detail" solid { - "id" "29939" + "id" "37218" side { - "id" "4817" - "plane" "(-88 64 43) (-88 64 64) (-88 -64 64)" - "material" "METAL/BLACK_WALL_METAL_005A_TOP" - "uaxis" "[0 -1 0 512] 0.25" - "vaxis" "[0 0 -1 512] 0.25" + "id" "5273" + "plane" "(-152 128 128) (-152 64 128) (-120 64 128)" + "material" "METAL/BLACK_WALL_METAL_005B" + "uaxis" "[1 0 0 -544] 0.25" + "vaxis" "[0 1 0 384] 0.25" "rotation" "0" "lightmapscale" "16" - "smoothing_groups" "1" + "smoothing_groups" "0" } side { - "id" "4816" - "plane" "(-76 -64 43) (-76 -64 64) (-76 64 64)" + "id" "5272" + "plane" "(-152 64 130) (-152 128 130) (-120 128 130)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4815" - "plane" "(-88 -64 64) (-88 64 64) (-76 64 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "5271" + "plane" "(-152 64 128) (-152 128 128) (-152 128 130)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 -1 56] 0.25" + "vaxis" "[0 1 0 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4814" - "plane" "(-88 64 64) (-88 64 43) (-76 64 43)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "5270" + "plane" "(-120 128 128) (-120 64 128) (-120 64 130)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 -1 56] 0.25" + "vaxis" "[0 -1 0 384] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4813" - "plane" "(-88 -64 43) (-88 -64 64) (-76 -64 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "5269" + "plane" "(-120 64 128) (-152 64 128) (-152 64 130)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 -1 56] 0.25" + "vaxis" "[-1 0 0 160] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4812" - "plane" "(-88 64 43) (-88 -64 43) (-76 -64 43)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5268" + "plane" "(-152 128 128) (-120 128 128) (-120 128 130)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 -1 56] 0.25" + "vaxis" "[1 0 0 -384] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2407,69 +2395,69 @@ entity } solid { - "id" "29940" + "id" "37219" side { - "id" "4823" - "plane" "(-88 -64 -53) (-88 -64 -64) (-88 -41 -64)" - "material" "METAL/BLACK_WALL_METAL_005A_TOP" - "uaxis" "[0 -1 0 512] 0.25" - "vaxis" "[0 0 -1 512] 0.25" + "id" "5279" + "plane" "(-152 64 128) (-152 0 128) (-88 0 128)" + "material" "METAL/BLACK_WALL_METAL_005A" + "uaxis" "[1 0 0 608] 0.25" + "vaxis" "[0 1 0 768] 0.25" "rotation" "0" "lightmapscale" "16" - "smoothing_groups" "1" + "smoothing_groups" "0" } side { - "id" "4822" - "plane" "(-76 -41 -64) (-76 -64 -64) (-76 -64 -53)" + "id" "5278" + "plane" "(-152 0 130) (-152 64 130) (-88 64 130)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4821" - "plane" "(-88 -41 -64) (-88 -64 -64) (-76 -64 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5277" + "plane" "(-152 0 128) (-152 64 128) (-152 64 130)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 -1 56] 0.25" + "vaxis" "[0 1 0 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4820" - "plane" "(-88 -64 -64) (-88 -64 -53) (-76 -64 -53)" + "id" "5276" + "plane" "(-88 64 128) (-88 0 128) (-88 0 130)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 0 -1 -8] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4819" - "plane" "(-88 -64 -53) (-88 -51 -53) (-76 -51 -53)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5275" + "plane" "(-88 0 128) (-152 0 128) (-152 0 130)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 -1 56] 0.25" + "vaxis" "[-1 0 0 160] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4818" - "plane" "(-88 -51 -53) (-88 -41 -64) (-76 -41 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5274" + "plane" "(-152 64 128) (-88 64 128) (-88 64 130)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 -1 56] 0.25" + "vaxis" "[1 0 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2483,69 +2471,69 @@ entity } solid { - "id" "29941" + "id" "37220" side { - "id" "4829" - "plane" "(-88 41 -64) (-88 64 -64) (-88 64 -53)" - "material" "METAL/BLACK_WALL_METAL_005A_TOP" - "uaxis" "[0 1 0 256] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" + "id" "5285" + "plane" "(-280 96 128) (-280 64 128) (-152 64 128)" + "material" "METAL/BLACK_WALL_METAL_005B" + "uaxis" "[1 0 0 -544] 0.25" + "vaxis" "[0 1 0 384] 0.25" "rotation" "0" "lightmapscale" "16" - "smoothing_groups" "1" + "smoothing_groups" "0" } side { - "id" "4828" - "plane" "(-76 64 -53) (-76 64 -64) (-76 41 -64)" + "id" "5284" + "plane" "(-280 64 130) (-280 96 130) (-152 96 130)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.5" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4827" - "plane" "(-88 64 -64) (-88 41 -64) (-76 41 -64)" + "id" "5283" + "plane" "(-280 64 128) (-280 96 128) (-280 96 130)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.5" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4826" - "plane" "(-88 64 -53) (-88 64 -64) (-76 64 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5282" + "plane" "(-152 96 128) (-152 64 128) (-152 64 130)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 -1 56] 0.25" + "vaxis" "[0 -1 0 192] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4825" - "plane" "(-88 51 -53) (-88 64 -53) (-76 64 -53)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5281" + "plane" "(-152 64 128) (-280 64 128) (-280 64 130)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 -1 56] 0.25" + "vaxis" "[-1 0 0 160] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4824" - "plane" "(-88 41 -64) (-88 51 -53) (-76 51 -53)" + "id" "5280" + "plane" "(-280 96 128) (-152 96 128) (-152 96 130)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 0 -1 56] 0.25" + "vaxis" "[1 0 0 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2559,69 +2547,69 @@ entity } solid { - "id" "29942" + "id" "37221" side { - "id" "4835" - "plane" "(-88 57 -42) (-88 64 -42) (-88 64 -31)" - "material" "METAL/BLACK_WALL_METAL_005A_TOP" - "uaxis" "[0 1 0 256] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" + "id" "5291" + "plane" "(-248 -96 128) (-248 -128 128) (-184 -128 128)" + "material" "METAL/BLACK_WALL_METAL_005B" + "uaxis" "[1 0 0 -544] 0.25" + "vaxis" "[0 1 0 384] 0.25" "rotation" "0" "lightmapscale" "16" - "smoothing_groups" "1" + "smoothing_groups" "0" } side { - "id" "4834" - "plane" "(-76 64 -31) (-76 64 -42) (-76 57 -42)" + "id" "5290" + "plane" "(-248 -128 130) (-248 -96 130) (-184 -96 130)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4833" - "plane" "(-88 64 -31) (-88 64 -42) (-76 64 -42)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5289" + "plane" "(-248 -128 128) (-248 -96 128) (-248 -96 130)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 -1 56] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4832" - "plane" "(-88 60 -31) (-88 64 -31) (-76 64 -31)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5288" + "plane" "(-184 -96 128) (-184 -128 128) (-184 -128 130)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 -1 56] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4831" - "plane" "(-88 64 -42) (-88 57 -42) (-76 57 -42)" + "id" "5287" + "plane" "(-184 -128 128) (-248 -128 128) (-248 -128 130)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" - "rotation" "0" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 -56] 0.25" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4830" - "plane" "(-88 57 -42) (-88 60 -31) (-76 60 -31)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5286" + "plane" "(-248 -96 128) (-184 -96 128) (-184 -96 130)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 -1 56] 0.25" + "vaxis" "[1 0 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2635,69 +2623,69 @@ entity } solid { - "id" "29943" + "id" "37222" side { - "id" "4841" - "plane" "(-88 34 32) (-88 64 32) (-88 64 37)" - "material" "METAL/BLACK_WALL_METAL_005A_TOP" - "uaxis" "[0 -1 0 512] 0.25" - "vaxis" "[0 0 -1 512] 0.25" + "id" "5297" + "plane" "(-184 -64 128) (-184 -96 128) (-152 -96 128)" + "material" "METAL/BLACK_WALL_METAL_005B" + "uaxis" "[1 0 0 -544] 0.25" + "vaxis" "[0 1 0 384] 0.25" "rotation" "0" "lightmapscale" "16" - "smoothing_groups" "1" + "smoothing_groups" "0" } side { - "id" "4840" - "plane" "(-76 64 37) (-76 64 32) (-76 34 32)" + "id" "5296" + "plane" "(-184 -96 130) (-184 -64 130) (-152 -64 130)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4839" - "plane" "(-88 64 37) (-88 64 32) (-76 64 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5295" + "plane" "(-184 -96 128) (-184 -64 128) (-184 -64 130)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 -1 56] 0.25" + "vaxis" "[0 1 0 384] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4838" - "plane" "(-88 24 37) (-88 64 37) (-76 64 37)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5294" + "plane" "(-152 -64 128) (-152 -96 128) (-152 -96 130)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 -1 56] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4837" - "plane" "(-88 64 32) (-88 34 32) (-76 34 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5293" + "plane" "(-152 -96 128) (-184 -96 128) (-184 -96 130)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 -1 56] 0.25" + "vaxis" "[-1 0 0 416] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4836" - "plane" "(-88 34 32) (-88 24 37) (-76 24 37)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5292" + "plane" "(-184 -64 128) (-152 -64 128) (-152 -64 130)" + "material" "METAL/BLACK_WALL_METAL_005B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2711,69 +2699,69 @@ entity } solid { - "id" "29944" + "id" "37223" side { - "id" "4847" - "plane" "(-88 41 26) (-88 64 26) (-88 64 32)" - "material" "METAL/BLACK_WALL_METAL_005A_TOP" - "uaxis" "[0 -1 0 512] 0.25" - "vaxis" "[0 0 -1 512] 0.25" - "rotation" "0" + "id" "5303" + "plane" "(-488 176 128) (-488 -160 128) (-360 -160 128)" + "material" "METAL/METALWALL_BTS_006A" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "270" "lightmapscale" "16" - "smoothing_groups" "1" + "smoothing_groups" "0" } side { - "id" "4846" - "plane" "(-76 64 32) (-76 64 26) (-76 41 26)" + "id" "5302" + "plane" "(-488 -160 187) (-488 176 187) (-360 176 187)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -16] 0.25" + "vaxis" "[-1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4845" - "plane" "(-88 64 32) (-88 64 26) (-76 64 26)" + "id" "5301" + "plane" "(-488 -160 128) (-488 176 128) (-488 176 187)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4844" - "plane" "(-88 34 32) (-88 64 32) (-76 64 32)" - "material" "TOOLS/TOOLSNODRAW" + "id" "5300" + "plane" "(-360 176 128) (-360 -160 128) (-360 -160 187)" + "material" "METAL/METALWALL_BTS_006A" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" - "rotation" "0" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "270" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4843" - "plane" "(-88 64 26) (-88 41 26) (-76 41 26)" + "id" "5299" + "plane" "(-360 -160 128) (-488 -160 128) (-488 -160 187)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4842" - "plane" "(-88 41 26) (-88 34 32) (-76 34 32)" + "id" "5298" + "plane" "(-488 176 128) (-360 176 128) (-360 176 187)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2787,69 +2775,69 @@ entity } solid { - "id" "29945" + "id" "37224" side { - "id" "4853" - "plane" "(-88 51 15) (-88 64 15) (-88 64 26)" - "material" "METAL/BLACK_WALL_METAL_005A_TOP" - "uaxis" "[0 -1 0 512] 0.25" - "vaxis" "[0 0 -1 512] 0.25" + "id" "5309" + "plane" "(-216 0 128) (-216 -64 128) (-152 -64 128)" + "material" "METAL/BLACK_WALL_METAL_005A" + "uaxis" "[1 0 0 864] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" - "smoothing_groups" "1" + "smoothing_groups" "0" } side { - "id" "4852" - "plane" "(-76 64 26) (-76 64 15) (-76 51 15)" + "id" "5308" + "plane" "(-216 -64 130) (-216 0 130) (-152 0 130)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4851" - "plane" "(-88 64 26) (-88 64 15) (-76 64 15)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5307" + "plane" "(-216 -64 128) (-216 0 128) (-216 0 130)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 -1 56] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4850" - "plane" "(-88 41 26) (-88 64 26) (-76 64 26)" + "id" "5306" + "plane" "(-152 0 128) (-152 -64 128) (-152 -64 130)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 0 -1 -8] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4849" - "plane" "(-88 64 15) (-88 51 15) (-76 51 15)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5305" + "plane" "(-152 -64 128) (-216 -64 128) (-216 -64 130)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 -1 56] 0.25" + "vaxis" "[-1 0 0 -96] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4848" - "plane" "(-88 51 15) (-88 41 26) (-76 41 26)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5304" + "plane" "(-216 0 128) (-152 0 128) (-152 0 130)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 -1 56] 0.25" + "vaxis" "[1 0 0 224] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2861,71 +2849,83 @@ entity "visgroupautoshown" "1" } } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "35982" + "classname" "func_detail" solid { - "id" "29946" + "id" "37204" side { - "id" "4859" - "plane" "(-88 -64 15) (-88 -64 4.00001) (-88 -57 4.00001)" - "material" "METAL/BLACK_WALL_METAL_005A_TOP" - "uaxis" "[0 -1 0 512] 0.25" - "vaxis" "[0 0 -1 512] 0.25" + "id" "5213" + "plane" "(-280 -128 64) (-280 -128 96) (-280 -96 96)" + "material" "METAL/BLACK_WALL_METAL_005B" + "uaxis" "[0 1 0 -640] 0.25" + "vaxis" "[0 0 -1 640] 0.25" "rotation" "0" "lightmapscale" "16" - "smoothing_groups" "1" + "smoothing_groups" "0" } side { - "id" "4858" - "plane" "(-76 -57 4) (-76 -64 4) (-76 -64 15)" + "id" "5212" + "plane" "(-282 -96 64) (-282 -96 96) (-282 -128 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 0 -1 -16] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4857" - "plane" "(-88 -64 4.00001) (-88 -64 15) (-76 -64 15)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5211" + "plane" "(-282 -128 96) (-282 -96 96) (-280 -96 96)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 152] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4856" - "plane" "(-88 -64 15) (-88 -51 15) (-76 -51 15)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5210" + "plane" "(-280 -128 96) (-280 -128 64) (-282 -128 64)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 152] 0.25" + "vaxis" "[0 0 -1 384] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4855" - "plane" "(-88 -57 4.00001) (-88 -64 4.00001) (-76 -64 4)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5209" + "plane" "(-282 -96 96) (-282 -96 64) (-280 -96 64)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 152] 0.25" + "vaxis" "[0 0 1 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4854" - "plane" "(-88 -51 15) (-88 -57 4.00001) (-76 -57 4)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5208" + "plane" "(-282 -96 64) (-282 -128 64) (-280 -128 64)" + "material" "METAL/BLACK_WALL_METAL_005B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2939,69 +2939,69 @@ entity } solid { - "id" "29947" + "id" "35662" side { - "id" "4865" - "plane" "(-88 -64 4.00001) (-88 -64 -7) (-88 -60 -7)" - "material" "METAL/BLACK_WALL_METAL_005A_TOP" - "uaxis" "[0 -1 0 512] 0.25" - "vaxis" "[0 0 -1 512] 0.25" + "id" "5165" + "plane" "(-280 -32 64) (-280 -64 64) (-280 -64 96)" + "material" "METAL/BLACK_WALL_METAL_005B" + "uaxis" "[0 1 0 -640] 0.25" + "vaxis" "[0 0 -1 640] 0.25" "rotation" "0" "lightmapscale" "16" - "smoothing_groups" "1" + "smoothing_groups" "0" } side { - "id" "4864" - "plane" "(-76 -60 -7) (-76 -64 -7) (-76 -64 4)" + "id" "5164" + "plane" "(-282 -64 64) (-282 -32 64) (-282 -32 96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 0 -1 -16] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4863" - "plane" "(-88 -64 -7) (-88 -64 4.00001) (-76 -64 4)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5163" + "plane" "(-280 -64 64) (-280 -32 64) (-282 -32 64)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 152] 0.25" + "vaxis" "[0 1 0 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4862" - "plane" "(-88 -64 4.00001) (-88 -57 4.00001) (-76 -57 4)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5162" + "plane" "(-280 -32 96) (-280 -64 96) (-282 -64 96)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 152] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4861" - "plane" "(-88 -60 -7) (-88 -64 -7) (-76 -64 -7)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5161" + "plane" "(-280 -64 96) (-280 -64 64) (-282 -64 64)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 152] 0.25" + "vaxis" "[0 0 -1 384] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4860" - "plane" "(-88 -57 4.00001) (-88 -60 -7) (-76 -60 -7)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5160" + "plane" "(-280 -32 64) (-280 -32 96) (-282 -32 96)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 152] 0.25" + "vaxis" "[0 0 1 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3015,69 +3015,69 @@ entity } solid { - "id" "29948" + "id" "35938" side { - "id" "4871" - "plane" "(-88 -64 -7) (-88 -64 -19) (-88 -61 -19)" - "material" "METAL/BLACK_WALL_METAL_005A_TOP" - "uaxis" "[0 -1 0 512] 0.25" - "vaxis" "[0 0 -1 512] 0.25" + "id" "5153" + "plane" "(-284.723 -96.3659 -35.5152) (-287.233 -128.267 -35.5152) (-293.32 -127.788 -4.10316)" + "material" "METAL/BLACK_WALL_METAL_005B" + "uaxis" "[0.0784591 0.996917 0 -550.368] 0.25" + "vaxis" "[0.190221 -0.0149707 -0.981627 839.419] 0.25" "rotation" "0" "lightmapscale" "16" - "smoothing_groups" "1" + "smoothing_groups" "0" } side { - "id" "4870" - "plane" "(-76 -61 -19) (-76 -64 -19) (-76 -64 -7)" + "id" "5152" + "plane" "(-289.19 -128.113 -35.8968) (-286.68 -96.2118 -35.8968) (-292.767 -95.7328 -4.48477)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.190221 -0.0149707 -0.981627 -8.58091] 0.25" + "vaxis" "[0.0784591 0.996917 0 25.6315] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4869" - "plane" "(-88 -64 -19) (-88 -64 -7) (-76 -64 -7)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5151" + "plane" "(-286.68 -96.2118 -35.8968) (-289.19 -128.113 -35.8968) (-287.233 -128.267 -35.5152)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0.978601 -0.0770176 0.190809 143.938] 0.25" + "vaxis" "[0.0784591 0.996917 0 345.632] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4868" - "plane" "(-88 -64 -7) (-88 -60 -7) (-76 -60 -7)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5150" + "plane" "(-295.277 -127.634 -4.48477) (-292.767 -95.7328 -4.48477) (-290.81 -95.8868 -4.10316)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0.978601 -0.0770176 0.190809 143.938] 0.25" + "vaxis" "[-0.0784591 -0.996917 0 -217.632] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4867" - "plane" "(-88 -61 -19) (-88 -64 -19) (-76 -64 -19)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5149" + "plane" "(-293.32 -127.788 -4.10316) (-287.233 -128.267 -35.5152) (-289.19 -128.113 -35.8968)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0.978601 -0.0770176 0.190809 143.938] 0.25" + "vaxis" "[0.190221 -0.0149707 -0.981627 71.4191] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4866" - "plane" "(-88 -60 -7) (-88 -61 -19) (-76 -61 -19)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5148" + "plane" "(-292.767 -95.7328 -4.48477) (-286.68 -96.2118 -35.8968) (-284.723 -96.3659 -35.5152)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0.978601 -0.0770176 0.190809 143.938] 0.25" + "vaxis" "[-0.190221 0.0149707 0.981627 56.5809] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3091,69 +3091,69 @@ entity } solid { - "id" "29949" + "id" "29340" side { - "id" "4877" - "plane" "(-88 -64 -19) (-88 -64 -31) (-88 -60 -31)" - "material" "METAL/BLACK_WALL_METAL_005A_TOP" - "uaxis" "[0 -1 0 512] 0.25" - "vaxis" "[0 0 -1 512] 0.25" + "id" "4579" + "plane" "(-72 128 128) (-72 128 130) (-88 128 130)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 1 48] 0.25" "rotation" "0" "lightmapscale" "16" - "smoothing_groups" "1" + "smoothing_groups" "0" } side { - "id" "4876" - "plane" "(-76 -60 -31) (-76 -64 -31) (-76 -64 -19)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" + "id" "4578" + "plane" "(-88 -128 128) (-88 -128 130) (-72 -128 130)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 -1 122] 0.25" + "vaxis" "[-1 0 0 -128] 0.25" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4875" - "plane" "(-88 -64 -31) (-88 -64 -19) (-76 -64 -19)" + "id" "4577" + "plane" "(-72 -128 130) (-88 -128 130) (-88 128 130)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4874" - "plane" "(-88 -64 -19) (-88 -61 -19) (-76 -61 -19)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "4576" + "plane" "(-88 -128 130) (-88 -128 128) (-88 128 128)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 -1 -456] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4873" - "plane" "(-88 -60 -31) (-88 -64 -31) (-76 -64 -31)" + "id" "4575" + "plane" "(-72 128 130) (-72 128 128) (-72 -128 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4872" - "plane" "(-88 -61 -19) (-88 -60 -31) (-76 -60 -31)" + "id" "4574" + "plane" "(-72 128 128) (-88 128 128) (-88 -128 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3167,69 +3167,69 @@ entity } solid { - "id" "29950" + "id" "29154" side { - "id" "4883" - "plane" "(-88 -64 -31) (-88 -64 -42) (-88 -57 -42)" - "material" "METAL/BLACK_WALL_METAL_005A_TOP" - "uaxis" "[0 -1 0 512] 0.25" - "vaxis" "[0 0 -1 512] 0.25" + "id" "4549" + "plane" "(-280 136 128) (-280 136 136) (-280 128 136)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 1 48] 0.25" "rotation" "0" "lightmapscale" "16" - "smoothing_groups" "1" + "smoothing_groups" "0" } side { - "id" "4882" - "plane" "(-76 -57 -42) (-76 -64 -42) (-76 -64 -31)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" + "id" "4548" + "plane" "(-216 128 128) (-216 128 136) (-216 136 136)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 -1 122] 0.25" + "vaxis" "[0 -1 0 -288] 0.25" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4881" - "plane" "(-88 -64 -42) (-88 -64 -31) (-76 -64 -31)" + "id" "4547" + "plane" "(-280 128 136) (-280 136 136) (-216 136 136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4880" - "plane" "(-88 -64 -31) (-88 -60 -31) (-76 -60 -31)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "4546" + "plane" "(-280 128 128) (-280 128 136) (-216 128 136)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 -1 -456] 0.25" + "vaxis" "[-1 0 0 -96] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4879" - "plane" "(-88 -57 -42) (-88 -64 -42) (-76 -64 -42)" + "id" "4545" + "plane" "(-280 136 136) (-280 136 128) (-216 136 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 1 48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4878" - "plane" "(-88 -60 -31) (-88 -57 -42) (-76 -57 -42)" + "id" "4544" + "plane" "(-280 136 128) (-280 128 128) (-216 128 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3243,69 +3243,69 @@ entity } solid { - "id" "29951" + "id" "16250" side { - "id" "4889" - "plane" "(-88 -64 -42) (-88 -64 -53) (-88 -51 -53)" - "material" "METAL/BLACK_WALL_METAL_005A_TOP" - "uaxis" "[0 -1 0 512] 0.25" - "vaxis" "[0 0 -1 512] 0.25" + "id" "4279" + "plane" "(-280 64 -72) (-282 64 -72) (-282 64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" - "smoothing_groups" "1" + "smoothing_groups" "0" } side { - "id" "4888" - "plane" "(-76 -51 -53) (-76 -64 -53) (-76 -64 -42)" + "id" "4278" + "plane" "(-282 128 -64) (-282 128 -72) (-280 128 -72)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 0 1 32] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4887" - "plane" "(-88 -64 -53) (-88 -64 -42) (-76 -64 -42)" + "id" "4277" + "plane" "(-282 64 -64) (-282 64 -72) (-282 128 -72)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4886" - "plane" "(-88 -64 -42) (-88 -57 -42) (-76 -57 -42)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "4276" + "plane" "(-280 64 -64) (-282 64 -64) (-282 128 -64)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 152] 0.25" + "vaxis" "[0 -1 0 -224] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4885" - "plane" "(-88 -51 -53) (-88 -64 -53) (-76 -64 -53)" + "id" "4275" + "plane" "(-280 128 -72) (-282 128 -72) (-282 64 -72)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4884" - "plane" "(-88 -57 -42) (-88 -51 -53) (-76 -51 -53)" + "id" "4274" + "plane" "(-280 128 -64) (-280 128 -72) (-280 64 -72)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3319,24 +3319,24 @@ entity } solid { - "id" "29952" + "id" "15075" side { - "id" "4895" - "plane" "(-88 51 -53) (-88 64 -53) (-88 64 -42)" - "material" "METAL/BLACK_WALL_METAL_005A_TOP" - "uaxis" "[0 1 0 256] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" + "id" "3835" + "plane" "(-282 64 -64) (-282 0 -64) (-280 0 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" - "smoothing_groups" "1" + "smoothing_groups" "0" } side { - "id" "4894" - "plane" "(-76 64 -42) (-76 64 -53) (-76 51 -53)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" + "id" "3834" + "plane" "(-282 0 64) (-282 64 64) (-280 64 64)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 152] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3344,44 +3344,44 @@ entity } side { - "id" "4893" - "plane" "(-88 64 -42) (-88 64 -53) (-76 64 -53)" + "id" "3833" + "plane" "(-282 0 -64) (-282 64 -64) (-282 64 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4892" - "plane" "(-88 57 -42) (-88 64 -42) (-76 64 -42)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "3832" + "plane" "(-280 64 -64) (-280 0 -64) (-280 0 64)" + "material" "METAL/BLACK_WALL_METAL_005A_TOP" + "uaxis" "[0 1 0 -256] 0.25" + "vaxis" "[0 0 -1 512] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4891" - "plane" "(-88 64 -53) (-88 51 -53) (-76 51 -53)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "3831" + "plane" "(-280 0 -64) (-282 0 -64) (-282 0 64)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 152] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4890" - "plane" "(-88 51 -53) (-88 57 -42) (-76 57 -42)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "3830" + "plane" "(-282 64 -64) (-280 64 -64) (-280 64 64)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 152] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3395,69 +3395,69 @@ entity } solid { - "id" "29953" + "id" "14487" side { - "id" "4901" - "plane" "(-88 60 -31) (-88 64 -31) (-88 64 -19)" - "material" "METAL/BLACK_WALL_METAL_005A_TOP" - "uaxis" "[0 1 0 256] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" + "id" "3703" + "plane" "(-120 136 -64) (-120 128 -64) (-88 128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" - "smoothing_groups" "1" + "smoothing_groups" "0" } side { - "id" "4900" - "plane" "(-76 64 -19) (-76 64 -31) (-76 60 -31)" + "id" "3702" + "plane" "(-120 128 128) (-120 136 128) (-88 136 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4899" - "plane" "(-88 64 -19) (-88 64 -31) (-76 64 -31)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "3701" + "plane" "(-120 128 -64) (-120 136 -64) (-120 136 128)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 -1 0 45] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4898" - "plane" "(-88 61 -19) (-88 64 -19) (-76 64 -19)" + "id" "3700" + "plane" "(-88 136 -64) (-88 128 -64) (-88 128 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4897" - "plane" "(-88 64 -31) (-88 60 -31) (-76 60 -31)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "3699" + "plane" "(-88 128 -64) (-120 128 -64) (-120 128 128)" + "material" "METAL/BLACK_WALL_METAL_005B_TOP" + "uaxis" "[-1 0 0 -864] 0.25" + "vaxis" "[0 0 -1 512] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4896" - "plane" "(-88 60 -31) (-88 61 -19) (-76 61 -19)" + "id" "3698" + "plane" "(-88 136 128) (-120 136 128) (-120 136 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3471,69 +3471,69 @@ entity } solid { - "id" "29954" + "id" "15061" side { - "id" "4907" - "plane" "(-88 -64 37) (-88 -64 32) (-88 -34 32)" - "material" "METAL/BLACK_WALL_METAL_005A_TOP" - "uaxis" "[0 -1 0 512] 0.25" - "vaxis" "[0 0 -1 512] 0.25" + "id" "3829" + "plane" "(-282 128 64) (-282 64 64) (-280 64 64)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 152] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" - "smoothing_groups" "1" + "smoothing_groups" "0" } side { - "id" "4906" - "plane" "(-76 -34 32) (-76 -64 32) (-76 -64 37)" + "id" "3828" + "plane" "(-282 64 128) (-282 128 128) (-280 128 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4905" - "plane" "(-88 -64 32) (-88 -64 37) (-76 -64 37)" + "id" "3827" + "plane" "(-282 64 64) (-282 128 64) (-282 128 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4904" - "plane" "(-88 -64 37) (-88 -24 37) (-76 -24 37)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" - "rotation" "0" + "id" "3826" + "plane" "(-280 128 64) (-280 64 64) (-280 64 128)" + "material" "METAL/BLACK_WALL_METAL_005A_TOP" + "uaxis" "[0 1 0 -256] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "270" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4903" - "plane" "(-88 -34 32) (-88 -64 32) (-76 -64 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" - "rotation" "0" + "id" "3825" + "plane" "(-280 64 64) (-282 64 64) (-282 64 128)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 152] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4902" - "plane" "(-88 -24 37) (-88 -34 32) (-76 -34 32)" + "id" "3824" + "plane" "(-282 128 64) (-280 128 64) (-280 128 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3547,69 +3547,69 @@ entity } solid { - "id" "29955" + "id" "15505" side { - "id" "4913" - "plane" "(-88 -64 32) (-88 -64 26) (-88 -41 26)" - "material" "METAL/BLACK_WALL_METAL_005A_TOP" - "uaxis" "[0 -1 0 512] 0.25" - "vaxis" "[0 0 -1 512] 0.25" + "id" "3877" + "plane" "(-280 136 -64) (-282 136 -64) (-282 128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" - "smoothing_groups" "1" + "smoothing_groups" "0" } side { - "id" "4912" - "plane" "(-76 -41 26) (-76 -64 26) (-76 -64 32)" + "id" "3876" + "plane" "(-280 128 128) (-282 128 128) (-282 136 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4911" - "plane" "(-88 -64 26) (-88 -64 32) (-76 -64 32)" + "id" "3875" + "plane" "(-282 128 -64) (-282 136 -64) (-282 136 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4910" - "plane" "(-88 -64 32) (-88 -34 32) (-76 -34 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "3874" + "plane" "(-280 128 -64) (-282 128 -64) (-282 128 128)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 152] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4909" - "plane" "(-88 -41 26) (-88 -64 26) (-76 -64 26)" + "id" "3873" + "plane" "(-282 136 -64) (-280 136 -64) (-280 136 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4908" - "plane" "(-88 -34 32) (-88 -41 26) (-76 -41 26)" + "id" "3872" + "plane" "(-280 136 -64) (-280 128 -64) (-280 128 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3623,69 +3623,69 @@ entity } solid { - "id" "29956" + "id" "36918" side { - "id" "4919" - "plane" "(-88 -64 26) (-88 -64 15) (-88 -51 15)" - "material" "METAL/BLACK_WALL_METAL_005A_TOP" - "uaxis" "[0 -1 0 512] 0.25" - "vaxis" "[0 0 -1 512] 0.25" + "id" "5189" + "plane" "(-280 128 128) (-280 136 128) (-216 136 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" - "smoothing_groups" "1" + "smoothing_groups" "0" } side { - "id" "4918" - "plane" "(-76 -51 15) (-76 -64 15) (-76 -64 26)" + "id" "5188" + "plane" "(-280 136 64) (-280 136 128) (-280 128 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4917" - "plane" "(-88 -64 15) (-88 -64 26) (-76 -64 26)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" - "rotation" "0" + "id" "5187" + "plane" "(-216 128 64) (-216 128 128) (-216 136 128)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 -1 0 45] 0.25" + "vaxis" "[0 0 1 256] 0.25" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4916" - "plane" "(-88 -64 26) (-88 -41 26) (-76 -41 26)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5186" + "plane" "(-280 128 64) (-280 128 128) (-216 128 128)" + "material" "METAL/BLACK_WALL_METAL_005A_TOP" + "uaxis" "[-1 0 0 -864] 0.25" + "vaxis" "[0 0 -1 512] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4915" - "plane" "(-88 -51 15) (-88 -64 15) (-76 -64 15)" + "id" "5185" + "plane" "(-216 136 64) (-216 136 128) (-280 136 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4914" - "plane" "(-88 -41 26) (-88 -51 15) (-76 -51 15)" + "id" "5184" + "plane" "(-280 136 64) (-280 128 64) (-216 128 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3699,24 +3699,24 @@ entity } solid { - "id" "29957" + "id" "36622" side { - "id" "4925" - "plane" "(-88 57 4.00001) (-88 64 4.00001) (-88 64 15)" - "material" "METAL/BLACK_WALL_METAL_005A_TOP" - "uaxis" "[0 -1 0 512] 0.25" - "vaxis" "[0 0 -1 512] 0.25" + "id" "5166" + "plane" "(-216 144 128) (-120 144 128) (-120 136 128)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" - "smoothing_groups" "1" + "smoothing_groups" "0" } side { - "id" "4924" - "plane" "(-76 64 15) (-76 64 4) (-76 57 4)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" + "id" "5167" + "plane" "(-216 136 -64) (-120 136 -64) (-120 144 -64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3724,44 +3724,44 @@ entity } side { - "id" "4923" - "plane" "(-88 64 15) (-88 64 4.00001) (-76 64 4)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5168" + "plane" "(-216 144 128) (-216 136 128) (-216 136 -64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4922" - "plane" "(-88 51 15) (-88 64 15) (-76 64 15)" - "material" "TOOLS/TOOLSNODRAW" + "id" "5169" + "plane" "(-120 144 -64) (-120 136 -64) (-120 136 128)" + "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4921" - "plane" "(-88 64 4.00001) (-88 57 4.00001) (-76 57 4)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5170" + "plane" "(-120 144 128) (-216 144 128) (-216 144 -64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4920" - "plane" "(-88 57 4.00001) (-88 51 15) (-76 51 15)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5171" + "plane" "(-120 136 -64) (-216 136 -64) (-216 136 128)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3775,69 +3775,69 @@ entity } solid { - "id" "29958" + "id" "36920" side { - "id" "4931" - "plane" "(-88 60 -7) (-88 64 -7) (-88 64 4.00001)" - "material" "METAL/BLACK_WALL_METAL_005A_TOP" - "uaxis" "[0 -1 0 512] 0.25" - "vaxis" "[0 0 -1 512] 0.25" + "id" "5201" + "plane" "(-280 128 64) (-280 128 0) (-280 136 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" - "smoothing_groups" "1" + "smoothing_groups" "0" } side { - "id" "4930" - "plane" "(-76 64 4) (-76 64 -7) (-76 60 -7)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" + "id" "5200" + "plane" "(-216 136 64) (-216 136 0) (-216 128 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 -1 0 45] 0.25" + "vaxis" "[0 0 1 256] 0.25" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4929" - "plane" "(-88 64 4.00001) (-88 64 -7) (-76 64 -7)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5199" + "plane" "(-216 128 64) (-216 128 0) (-280 128 0)" + "material" "METAL/BLACK_WALL_METAL_005B_TOP" + "uaxis" "[-1 0 0 -864] 0.25" + "vaxis" "[0 0 -1 512] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4928" - "plane" "(-88 57 4.00001) (-88 64 4.00001) (-76 64 4)" + "id" "5198" + "plane" "(-280 136 64) (-280 136 0) (-216 136 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4927" - "plane" "(-88 64 -7) (-88 60 -7) (-76 60 -7)" + "id" "5197" + "plane" "(-280 128 64) (-280 136 64) (-216 136 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4926" - "plane" "(-88 60 -7) (-88 57 4.00001) (-76 57 4)" + "id" "5196" + "plane" "(-280 136 0) (-280 128 0) (-216 128 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3851,145 +3851,69 @@ entity } solid { - "id" "29959" - side - { - "id" "4937" - "plane" "(-88 61 -19) (-88 64 -19) (-88 64 -7)" - "material" "METAL/BLACK_WALL_METAL_005A_TOP" - "uaxis" "[0 1 0 256] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "1" - } - side - { - "id" "4936" - "plane" "(-76 64 -7) (-76 64 -19) (-76 61 -19)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4935" - "plane" "(-88 64 -7) (-88 64 -19) (-76 64 -19)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "36919" side { - "id" "4934" - "plane" "(-88 60 -7) (-88 64 -7) (-76 64 -7)" + "id" "5195" + "plane" "(-280 136 -64) (-280 128 -64) (-216 128 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4933" - "plane" "(-88 64 -19) (-88 61 -19) (-76 61 -19)" + "id" "5194" + "plane" "(-280 128 0) (-280 128 -64) (-280 136 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4932" - "plane" "(-88 61 -19) (-88 60 -7) (-76 60 -7)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" - "rotation" "0" + "id" "5193" + "plane" "(-216 136 0) (-216 136 -64) (-216 128 -64)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 -1 0 45] 0.25" + "vaxis" "[0 0 1 256] 0.25" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "29960" side { - "id" "4943" - "plane" "(-88 24 37) (-88 64 37) (-88 64 43)" + "id" "5192" + "plane" "(-216 128 0) (-216 128 -64) (-280 128 -64)" "material" "METAL/BLACK_WALL_METAL_005A_TOP" - "uaxis" "[0 -1 0 512] 0.25" + "uaxis" "[-1 0 0 -864] 0.25" "vaxis" "[0 0 -1 512] 0.25" "rotation" "0" "lightmapscale" "16" - "smoothing_groups" "1" - } - side - { - "id" "4942" - "plane" "(-76 64 43) (-76 64 37) (-76 24 37)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4941" - "plane" "(-88 64 43) (-88 64 37) (-76 64 37)" + "id" "5191" + "plane" "(-280 136 0) (-280 136 -64) (-216 136 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4940" - "plane" "(-88 64 37) (-88 24 37) (-76 24 37)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4939" - "plane" "(-88 5.99998 43) (-88 64 43) (-76 64 43)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4938" - "plane" "(-88 24 37) (-88 5.99998 43) (-76 5.99998 43)" + "id" "5190" + "plane" "(-280 128 0) (-280 136 0) (-216 136 0)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4003,69 +3927,69 @@ entity } solid { - "id" "29961" + "id" "37203" side { - "id" "4949" - "plane" "(-88 -64 43) (-88 -64 37) (-88 -24 37)" + "id" "5207" + "plane" "(-280 -64 0) (-280 -128 0) (-280 -128 64)" "material" "METAL/BLACK_WALL_METAL_005A_TOP" - "uaxis" "[0 -1 0 512] 0.25" + "uaxis" "[0 1 0 -256] 0.25" "vaxis" "[0 0 -1 512] 0.25" "rotation" "0" "lightmapscale" "16" - "smoothing_groups" "1" + "smoothing_groups" "0" } side { - "id" "4948" - "plane" "(-76 -24 37) (-76 -64 37) (-76 -64 43)" + "id" "5206" + "plane" "(-282 -128 0) (-282 -64 0) (-282 -64 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 0 -1 -16] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4947" - "plane" "(-88 -64 37) (-88 -64 43) (-76 -64 43)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5205" + "plane" "(-282 -64 0) (-282 -128 0) (-280 -128 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 152] 0.25" + "vaxis" "[0 -1 0 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4946" - "plane" "(-88 -24 37) (-88 -64 37) (-76 -64 37)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5204" + "plane" "(-280 -128 64) (-280 -128 0) (-282 -128 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 152] 0.25" + "vaxis" "[0 0 -1 384] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4945" - "plane" "(-88 -64 43) (-88 -6.00002 43) (-76 -6.00002 43)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5203" + "plane" "(-282 -64 64) (-282 -64 0) (-280 -64 0)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 152] 0.25" + "vaxis" "[0 0 1 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4944" - "plane" "(-88 -6.00002 43) (-88 -24 37) (-76 -24 37)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" + "id" "5202" + "plane" "(-282 -128 64) (-282 -64 64) (-280 -64 64)" + "material" "METAL/BLACK_WALL_METAL_005B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4082,25 +4006,33 @@ entity "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[1000 7000]" + "logicalpos" "[0 1500]" } } entity { - "id" "29495" - "classname" "prop_static" - "angles" "0 180 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_foliage/vine_large_leaves01.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "origin" "-88 64 -64" + "id" "36202" + "classname" "move_rope" + "angles" "0 0 0" + "barbed" "0" + "breakable" "0" + "collide" "0" + "dangling" "0" + "movespeed" "64" + "NextKey" "r8" + "positioninterpolator" "2" + "ropematerial" "cable/cable.vmt" + "slack" "130" + "subdiv" "2" + "targetname" "r7" + "texturescale" "1" + "type" "0" + "usewind" "0" + "width" "2" + "origin" "-344 172 51.5909" editor { - "color" "255 255 0" + "color" "220 30 220" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 0]" @@ -4108,73 +4040,295 @@ entity } entity { - "id" "29339" - "classname" "func_detail" - solid + "id" "36237" + "classname" "move_rope" + "angles" "0 0 0" + "barbed" "0" + "breakable" "0" + "collide" "0" + "dangling" "0" + "movespeed" "64" + "positioninterpolator" "2" + "ropematerial" "cable/cable.vmt" + "slack" "25" + "subdiv" "2" + "targetname" "r8" + "texturescale" "1" + "type" "0" + "usewind" "0" + "width" "2" + "origin" "-272 136 127.591" + editor { - "id" "29340" - side - { - "id" "4579" - "plane" "(-80 128 130) (-88 128 130) (-88 128 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 1 48] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4578" - "plane" "(-88 -120 128) (-88 -120 130) (-80 -120 130)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 0 -1 122] 0.25" - "vaxis" "[-1 0 0 -128] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4577" - "plane" "(-80 -120 130) (-88 -120 130) (-88 128 130)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "34481" + "classname" "move_rope" + "angles" "0 0 0" + "barbed" "0" + "breakable" "0" + "collide" "0" + "dangling" "0" + "movespeed" "64" + "NextKey" "r2" + "positioninterpolator" "2" + "ropematerial" "cable/cable.vmt" + "slack" "25" + "subdiv" "2" + "targetname" "r1" + "texturescale" "1" + "type" "0" + "usewind" "0" + "width" "2" + "origin" "-288 -92 116" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "34526" + "classname" "move_rope" + "angles" "0 0 0" + "barbed" "0" + "breakable" "0" + "collide" "0" + "dangling" "0" + "movespeed" "64" + "NextKey" "r3" + "positioninterpolator" "2" + "ropematerial" "cable/cable.vmt" + "slack" "90" + "subdiv" "2" + "targetname" "r2" + "texturescale" "1" + "type" "0" + "usewind" "0" + "width" "2" + "origin" "-332 -64 76" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "34651" + "classname" "move_rope" + "angles" "0 0 0" + "barbed" "0" + "breakable" "0" + "collide" "0" + "dangling" "0" + "movespeed" "64" + "NextKey" "r4" + "positioninterpolator" "2" + "ropematerial" "cable/cable.vmt" + "slack" "150" + "subdiv" "2" + "targetname" "r3" + "texturescale" "1" + "type" "0" + "usewind" "0" + "width" "2" + "origin" "-388 48 128" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "34836" + "classname" "move_rope" + "angles" "0 0 0" + "barbed" "0" + "breakable" "0" + "collide" "0" + "dangling" "0" + "movespeed" "64" + "positioninterpolator" "2" + "ropematerial" "cable/cable.vmt" + "slack" "25" + "subdiv" "2" + "targetname" "r4" + "texturescale" "1" + "type" "0" + "usewind" "0" + "width" "2" + "origin" "-372 172 32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "35021" + "classname" "move_rope" + "angles" "0 0 0" + "barbed" "0" + "breakable" "0" + "collide" "0" + "dangling" "0" + "movespeed" "64" + "nextkey" "r3" + "positioninterpolator" "2" + "ropematerial" "cable/cable.vmt" + "slack" "155" + "subdiv" "2" + "targetname" "r5" + "texturescale" "1" + "type" "0" + "usewind" "0" + "width" "2" + "origin" "-425.564 165.544 -16.3306" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "35131" + "classname" "move_rope" + "angles" "0 0 0" + "barbed" "0" + "breakable" "0" + "collide" "0" + "dangling" "0" + "movespeed" "64" + "NextKey" "r2" + "positioninterpolator" "2" + "ropematerial" "cable/cable.vmt" + "slack" "0" + "subdiv" "2" + "targetname" "r6" + "texturescale" "1" + "type" "0" + "usewind" "0" + "width" "2" + "origin" "-332 -64 -30.808" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "35326" + "classname" "comp_relay" + "ctrl_type" "0" + "ctrl_value" "1" + "delay" "0.0" + "targetname" "entrance_door_close_rl" + connections + { + "OnTrigger" "r*Kill2-1" + } + "origin" "-160 -24 -28.5861" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "33829" + "classname" "func_detail" + solid + { + "id" "33810" + side + { + "id" "5063" + "plane" "(-288 2 126) (-282 2 126) (-282 0 126)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } side { - "id" "4576" - "plane" "(-88 -120 130) (-88 -120 128) (-88 128 128)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 0 -1 -456] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "5062" + "plane" "(-288 0 -62) (-282 0 -62) (-282 2 -62)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4575" - "plane" "(-80 128 130) (-80 128 128) (-80 -120 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 48] 0.25" + "id" "5061" + "plane" "(-288 2 126) (-288 0 126) (-288 0 -62)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4574" - "plane" "(-80 128 128) (-88 128 128) (-88 -120 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "5060" + "plane" "(-282 2 -62) (-282 0 -62) (-282 0 126)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5059" + "plane" "(-282 2 126) (-288 2 126) (-288 2 -62)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5058" + "plane" "(-282 0 -62) (-288 0 -62) (-288 0 126)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4188,69 +4342,69 @@ entity } solid { - "id" "29154" + "id" "33811" side { - "id" "4549" - "plane" "(-280 136 128) (-280 136 136) (-280 128 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[0 0 1 48] 0.25" + "id" "5069" + "plane" "(-288 128 -2) (-288 128 2) (-288 0 2)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 0 1 -56] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4548" - "plane" "(-216 128 128) (-216 128 136) (-216 136 136)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 0 -1 122] 0.25" - "vaxis" "[0 -1 0 -288] 0.25" - "rotation" "90" + "id" "5068" + "plane" "(-282 0 -2) (-282 0 2) (-282 128 2)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 0 1 -56] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4547" - "plane" "(-280 128 136) (-280 136 136) (-216 136 136)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "id" "5067" + "plane" "(-288 128 -2) (-288 0 -2) (-282 0 -2)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4546" - "plane" "(-280 128 128) (-280 128 136) (-216 128 136)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 0 -1 -456] 0.25" - "vaxis" "[-1 0 0 -96] 0.25" + "id" "5066" + "plane" "(-282 128 2) (-282 0 2) (-288 0 2)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4545" - "plane" "(-280 136 136) (-280 136 128) (-216 136 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 1 48] 0.25" + "id" "5065" + "plane" "(-288 128 2) (-288 128 -2) (-282 128 -2)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 0 1 -56] 0.25" + "vaxis" "[1 0 0 48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4544" - "plane" "(-280 136 128) (-280 128 128) (-216 128 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "id" "5064" + "plane" "(-282 0 2) (-282 0 -2) (-288 0 -2)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 0 1 -56] 0.25" + "vaxis" "[1 0 0 48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4264,69 +4418,69 @@ entity } solid { - "id" "16250" + "id" "33812" side { - "id" "4279" - "plane" "(-280 72 -72) (-282 72 -72) (-282 72 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -32] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "id" "5075" + "plane" "(-288 128 -62) (-288 128 126) (-288 126 126)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 0 1 -52] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4278" - "plane" "(-280 128 -64) (-282 128 -64) (-282 128 -72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "id" "5074" + "plane" "(-282 126 -62) (-282 126 126) (-282 128 126)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 0 1 -52] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4277" - "plane" "(-282 72 -64) (-282 72 -72) (-282 128 -72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "id" "5073" + "plane" "(-288 128 -62) (-288 126 -62) (-282 126 -62)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 52] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4276" - "plane" "(-280 72 -64) (-282 72 -64) (-282 128 -64)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[1 0 0 152] 0.25" - "vaxis" "[0 -1 0 -224] 0.25" + "id" "5072" + "plane" "(-282 128 126) (-282 126 126) (-288 126 126)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 52] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4275" - "plane" "(-280 128 -72) (-282 128 -72) (-282 72 -72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "id" "5071" + "plane" "(-288 128 126) (-288 128 -62) (-282 128 -62)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 0 1 -52] 0.25" + "vaxis" "[1 0 0 52] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4274" - "plane" "(-280 128 -64) (-280 128 -72) (-280 72 -72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" + "id" "5070" + "plane" "(-282 126 126) (-282 126 -62) (-288 126 -62)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 0 1 -52] 0.25" + "vaxis" "[1 0 0 52] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4340,69 +4494,69 @@ entity } solid { - "id" "14491" + "id" "33813" side { - "id" "3697" - "plane" "(-216 136 -64) (-216 128 -64) (-120 128 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[-1 0 0 32] 0.25" + "id" "5081" + "plane" "(-288 66 -62) (-288 66 126) (-288 62 126)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 0 1 -52] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3696" - "plane" "(-216 128 -32) (-216 136 -32) (-120 136 -32)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 -1 0 45] 0.25" - "vaxis" "[-1 0 0 -164] 0.25" + "id" "5080" + "plane" "(-282 62 -62) (-282 62 126) (-282 66 126)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 0 1 -52] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3695" - "plane" "(-216 128 -64) (-216 136 -64) (-216 136 -32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "id" "5079" + "plane" "(-288 66 -62) (-288 62 -62) (-282 62 -62)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 52] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3694" - "plane" "(-120 136 -64) (-120 128 -64) (-120 128 -32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "id" "5078" + "plane" "(-282 66 126) (-282 62 126) (-288 62 126)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 52] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3693" - "plane" "(-120 128 -64) (-216 128 -64) (-216 128 -32)" - "material" "METAL/BLACK_WALL_METAL_005B_TOP" - "uaxis" "[-1 0 0 -864] 0.25" - "vaxis" "[0 0 -1 512] 0.25" + "id" "5077" + "plane" "(-288 66 126) (-288 66 -62) (-282 66 -62)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 0 1 -52] 0.25" + "vaxis" "[1 0 0 52] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3692" - "plane" "(-120 136 -32) (-216 136 -32) (-216 136 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 32] 0.25" + "id" "5076" + "plane" "(-282 62 126) (-282 62 -62) (-288 62 -62)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 0 1 -52] 0.25" + "vaxis" "[1 0 0 52] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4416,69 +4570,69 @@ entity } solid { - "id" "14487" + "id" "33816" side { - "id" "3703" - "plane" "(-120 136 -64) (-120 128 -64) (-88 128 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[-1 0 0 32] 0.25" + "id" "5087" + "plane" "(-288 128 -64) (-288 128 -62) (-288 0 -62)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 0 1 8] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3702" - "plane" "(-120 128 128) (-120 136 128) (-88 136 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[-1 0 0 32] 0.25" + "id" "5086" + "plane" "(-282 0 -64) (-282 0 -62) (-282 128 -62)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 0 1 8] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3701" - "plane" "(-120 128 -64) (-120 136 -64) (-120 136 128)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 -1 0 45] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "id" "5085" + "plane" "(-288 128 -64) (-288 0 -64) (-282 0 -64)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3700" - "plane" "(-88 136 -64) (-88 128 -64) (-88 128 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "id" "5084" + "plane" "(-282 128 -62) (-282 0 -62) (-288 0 -62)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3699" - "plane" "(-88 128 -64) (-120 128 -64) (-120 128 128)" - "material" "METAL/BLACK_WALL_METAL_005B_TOP" - "uaxis" "[-1 0 0 -864] 0.25" - "vaxis" "[0 0 -1 512] 0.25" + "id" "5083" + "plane" "(-288 128 -62) (-288 128 -64) (-282 128 -64)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 0 1 8] 0.25" + "vaxis" "[1 0 0 48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3698" - "plane" "(-88 136 128) (-120 136 128) (-120 136 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 32] 0.25" + "id" "5082" + "plane" "(-282 0 -62) (-282 0 -64) (-288 0 -64)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 0 1 8] 0.25" + "vaxis" "[1 0 0 48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4492,69 +4646,1780 @@ entity } solid { - "id" "15592" + "id" "33814" side { - "id" "3889" - "plane" "(-282 136 -64) (-288 136 -64) (-288 128 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[-1 0 0 8] 0.25" + "id" "5040" + "plane" "(-288 126 62) (-288 126 66) (-288 2 66)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 0 1 -52] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3888" - "plane" "(-282 128 64) (-288 128 64) (-288 136 64)" + "id" "5041" + "plane" "(-282 2 62) (-282 2 66) (-282 126 66)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 0 1 -52] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5042" + "plane" "(-288 126 62) (-288 2 62) (-282 2 62)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5043" + "plane" "(-282 126 66) (-282 2 66) (-288 2 66)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5044" + "plane" "(-288 126 66) (-288 126 62) (-282 126 62)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 0 1 -52] 0.25" + "vaxis" "[1 0 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5045" + "plane" "(-282 2 66) (-282 2 62) (-288 2 62)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 0 1 -52] 0.25" + "vaxis" "[1 0 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "33809" + side + { + "id" "5010" + "plane" "(-288 128 126) (-288 128 128) (-288 0 128)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 0 1 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5011" + "plane" "(-282 0 126) (-282 0 128) (-282 128 128)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 0 1 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5012" + "plane" "(-288 128 126) (-288 0 126) (-282 0 126)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5013" + "plane" "(-282 128 128) (-282 0 128) (-288 0 128)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5014" + "plane" "(-288 128 128) (-288 128 126) (-282 128 126)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 0 1 -48] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5015" + "plane" "(-282 0 128) (-282 0 126) (-288 0 126)" + "material" "TOOLS/TOOLSBLOCKLIGHT" + "uaxis" "[0 0 1 -48] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "33563" + "classname" "prop_static" + "angles" "-90 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/anim_wp/framework/squarebeam_off.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "origin" "-280 32 -32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10268]" + } +} +entity +{ + "id" "32876" + "classname" "prop_static" + "angles" "0 180 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/anim_wp/framework/squarebeam_off.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "origin" "-184 96 128" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "32956" + "classname" "prop_static" + "angles" "90 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props_lab/glass_lightcover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "origin" "-216 112 128" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "32960" + "classname" "func_detail" + solid + { + "id" "32961" + side + { + "id" "5009" + "plane" "(-280 96 136) (-152 96 136) (-152 96 128)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 -1 -422] 0.25" + "vaxis" "[-1 0 0 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5008" + "plane" "(-152 128 136) (-280 128 136) (-280 128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5007" + "plane" "(-280 128 136) (-152 128 136) (-152 96 136)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5006" + "plane" "(-152 128 128) (-280 128 128) (-280 96 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5005" + "plane" "(-152 128 136) (-152 128 128) (-152 96 128)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 0 -1 -466] 0.25" + "vaxis" "[0 1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5004" + "plane" "(-280 128 128) (-280 128 136) (-280 96 136)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "32962" + "classname" "light_spot" + "_cone" "30" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_hardfalloff" "0" + "_inner_cone" "20" + "_light" "217 255 248 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "-65 90 -180" + "pitch" "-65" + "spawnflags" "0" + "style" "0" + "origin" "-176 112 120" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "32969" + "classname" "light_spot" + "_cone" "30" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_hardfalloff" "0" + "_inner_cone" "20" + "_light" "217 255 248 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "-65 90 -180" + "pitch" "-65" + "spawnflags" "0" + "style" "0" + "origin" "-192 112 120" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "32976" + "classname" "light_spot" + "_cone" "30" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_hardfalloff" "0" + "_inner_cone" "20" + "_light" "217 255 248 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "-65 90 -180" + "pitch" "-65" + "spawnflags" "0" + "style" "0" + "origin" "-208 112 120" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "32983" + "classname" "light_spot" + "_cone" "30" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_hardfalloff" "0" + "_inner_cone" "20" + "_light" "217 255 248 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "-65 90 -180" + "pitch" "-65" + "spawnflags" "0" + "style" "0" + "origin" "-224 112 120" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "32990" + "classname" "light_spot" + "_cone" "30" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_hardfalloff" "0" + "_inner_cone" "20" + "_light" "217 255 248 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "-65 90 -180" + "pitch" "-65" + "spawnflags" "0" + "style" "0" + "origin" "-240 112 120" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "32997" + "classname" "light_spot" + "_cone" "30" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_hardfalloff" "0" + "_inner_cone" "20" + "_light" "217 255 248 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "-65 90 -180" + "pitch" "-65" + "spawnflags" "0" + "style" "0" + "origin" "-256 112 120" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "32218" + "classname" "prop_static" + "angles" "0 0 90" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props_lab/glass_lightcover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "origin" "-280 -64 112" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "32284" + "classname" "func_detail" + solid + { + "id" "32279" + side + { + "id" "4997" + "plane" "(-288 -128 128) (-288 0 128) (-280 0 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 58] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4996" + "plane" "(-288 0 96) (-288 -128 96) (-280 -128 96)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 186] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4995" + "plane" "(-288 -128 96) (-288 0 96) (-288 0 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4994" + "plane" "(-280 0 96) (-280 -128 96) (-280 -128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4993" + "plane" "(-288 0 96) (-280 0 96) (-280 0 128)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[1 0 0 142] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4992" + "plane" "(-280 -128 96) (-288 -128 96) (-288 -128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "32406" + "classname" "light_spot" + "_cone" "30" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_hardfalloff" "0" + "_inner_cone" "20" + "_light" "217 255 248 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "-25 0 0" + "pitch" "-25" + "spawnflags" "0" + "style" "0" + "origin" "-272 -104 112" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "32574" + "classname" "light_spot" + "_cone" "30" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_hardfalloff" "0" + "_inner_cone" "20" + "_light" "217 255 248 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "-25 0 0" + "pitch" "-25" + "spawnflags" "0" + "style" "0" + "origin" "-272 -72 112" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "32602" + "classname" "light_spot" + "_cone" "30" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_hardfalloff" "0" + "_inner_cone" "20" + "_light" "217 255 248 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "-25 0 0" + "pitch" "-25" + "spawnflags" "0" + "style" "0" + "origin" "-272 -56 112" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "32616" + "classname" "light_spot" + "_cone" "30" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_hardfalloff" "0" + "_inner_cone" "20" + "_light" "217 255 248 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "-25 0 0" + "pitch" "-25" + "spawnflags" "0" + "style" "0" + "origin" "-272 -24 112" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "32658" + "classname" "light_spot" + "_cone" "30" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_hardfalloff" "0" + "_inner_cone" "20" + "_light" "217 255 248 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "-25 0 0" + "pitch" "-25" + "spawnflags" "0" + "style" "0" + "origin" "-272 -40 112" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "32672" + "classname" "light_spot" + "_cone" "30" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_hardfalloff" "0" + "_inner_cone" "20" + "_light" "217 255 248 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "-25 0 0" + "pitch" "-25" + "spawnflags" "0" + "style" "0" + "origin" "-272 -88 112" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "32027" + "classname" "func_detail" + solid + { + "id" "32022" + side + { + "id" "4967" + "plane" "(-296 -160 52) (-296 -136 52) (-280 -136 52)" + "material" "METAL/METALWALL_BTS_006A" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4966" + "plane" "(-296 -136 -184) (-296 -160 -184) (-280 -160 -184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4965" + "plane" "(-296 -160 -184) (-296 -136 -184) (-296 -136 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4964" + "plane" "(-280 -136 -184) (-280 -160 -184) (-280 -160 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4963" + "plane" "(-296 -136 -184) (-280 -136 -184) (-280 -136 52)" + "material" "METAL/METALWALL_BTS_006A" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4962" + "plane" "(-280 -160 -184) (-296 -160 -184) (-296 -160 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "29938" + "classname" "func_detail" + solid + { + "id" "29939" + side + { + "id" "4817" + "plane" "(-88 64 43) (-88 64 64) (-88 -64 64)" + "material" "METAL/BLACK_WALL_METAL_005A_TOP" + "uaxis" "[0 -1 0 512] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1" + } + side + { + "id" "4816" + "plane" "(-76 -64 43) (-76 -64 64) (-76 64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4815" + "plane" "(-88 -64 64) (-88 64 64) (-76 64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4814" + "plane" "(-88 64 64) (-88 64 43) (-76 64 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4813" + "plane" "(-88 -64 43) (-88 -64 64) (-76 -64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4812" + "plane" "(-88 64 43) (-88 -64 43) (-76 -64 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "29940" + side + { + "id" "4823" + "plane" "(-88 -64 -53) (-88 -64 -64) (-88 -41 -64)" + "material" "METAL/BLACK_WALL_METAL_005A_TOP" + "uaxis" "[0 -1 0 512] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1" + } + side + { + "id" "4822" + "plane" "(-76 -41 -64) (-76 -64 -64) (-76 -64 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4821" + "plane" "(-88 -41 -64) (-88 -64 -64) (-76 -64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4820" + "plane" "(-88 -64 -64) (-88 -64 -53) (-76 -64 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4819" + "plane" "(-88 -64 -53) (-88 -51 -53) (-76 -51 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4818" + "plane" "(-88 -51 -53) (-88 -41 -64) (-76 -41 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "29941" + side + { + "id" "4829" + "plane" "(-88 41 -64) (-88 64 -64) (-88 64 -53)" + "material" "METAL/BLACK_WALL_METAL_005A_TOP" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1" + } + side + { + "id" "4828" + "plane" "(-76 64 -53) (-76 64 -64) (-76 41 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4827" + "plane" "(-88 64 -64) (-88 41 -64) (-76 41 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4826" + "plane" "(-88 64 -53) (-88 64 -64) (-76 64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4825" + "plane" "(-88 51 -53) (-88 64 -53) (-76 64 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4824" + "plane" "(-88 41 -64) (-88 51 -53) (-76 51 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "29942" + side + { + "id" "4835" + "plane" "(-88 57 -42) (-88 64 -42) (-88 64 -31)" + "material" "METAL/BLACK_WALL_METAL_005A_TOP" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1" + } + side + { + "id" "4834" + "plane" "(-76 64 -31) (-76 64 -42) (-76 57 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4833" + "plane" "(-88 64 -31) (-88 64 -42) (-76 64 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4832" + "plane" "(-88 60 -31) (-88 64 -31) (-76 64 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4831" + "plane" "(-88 64 -42) (-88 57 -42) (-76 57 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4830" + "plane" "(-88 57 -42) (-88 60 -31) (-76 60 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "29943" + side + { + "id" "4841" + "plane" "(-88 34 32) (-88 64 32) (-88 64 37)" + "material" "METAL/BLACK_WALL_METAL_005A_TOP" + "uaxis" "[0 -1 0 512] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1" + } + side + { + "id" "4840" + "plane" "(-76 64 37) (-76 64 32) (-76 34 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4839" + "plane" "(-88 64 37) (-88 64 32) (-76 64 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4838" + "plane" "(-88 24 37) (-88 64 37) (-76 64 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4837" + "plane" "(-88 64 32) (-88 34 32) (-76 34 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4836" + "plane" "(-88 34 32) (-88 24 37) (-76 24 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "29944" + side + { + "id" "4847" + "plane" "(-88 41 26) (-88 64 26) (-88 64 32)" + "material" "METAL/BLACK_WALL_METAL_005A_TOP" + "uaxis" "[0 -1 0 512] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1" + } + side + { + "id" "4846" + "plane" "(-76 64 32) (-76 64 26) (-76 41 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4845" + "plane" "(-88 64 32) (-88 64 26) (-76 64 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4844" + "plane" "(-88 34 32) (-88 64 32) (-76 64 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4843" + "plane" "(-88 64 26) (-88 41 26) (-76 41 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4842" + "plane" "(-88 41 26) (-88 34 32) (-76 34 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "29945" + side + { + "id" "4853" + "plane" "(-88 51 15) (-88 64 15) (-88 64 26)" + "material" "METAL/BLACK_WALL_METAL_005A_TOP" + "uaxis" "[0 -1 0 512] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1" + } + side + { + "id" "4852" + "plane" "(-76 64 26) (-76 64 15) (-76 51 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4851" + "plane" "(-88 64 26) (-88 64 15) (-76 64 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4850" + "plane" "(-88 41 26) (-88 64 26) (-76 64 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4849" + "plane" "(-88 64 15) (-88 51 15) (-76 51 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4848" + "plane" "(-88 51 15) (-88 41 26) (-76 41 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "29946" + side + { + "id" "4859" + "plane" "(-88 -64 15) (-88 -64 4.00001) (-88 -57 4.00001)" + "material" "METAL/BLACK_WALL_METAL_005A_TOP" + "uaxis" "[0 -1 0 512] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1" + } + side + { + "id" "4858" + "plane" "(-76 -57 4) (-76 -64 4) (-76 -64 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4857" + "plane" "(-88 -64 4.00001) (-88 -64 15) (-76 -64 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4856" + "plane" "(-88 -64 15) (-88 -51 15) (-76 -51 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4855" + "plane" "(-88 -57 4.00001) (-88 -64 4.00001) (-76 -64 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4854" + "plane" "(-88 -51 15) (-88 -57 4.00001) (-76 -57 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "29947" + side + { + "id" "4865" + "plane" "(-88 -64 4.00001) (-88 -64 -7) (-88 -60 -7)" + "material" "METAL/BLACK_WALL_METAL_005A_TOP" + "uaxis" "[0 -1 0 512] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1" + } + side + { + "id" "4864" + "plane" "(-76 -60 -7) (-76 -64 -7) (-76 -64 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4863" + "plane" "(-88 -64 -7) (-88 -64 4.00001) (-76 -64 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4862" + "plane" "(-88 -64 4.00001) (-88 -57 4.00001) (-76 -57 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4861" + "plane" "(-88 -60 -7) (-88 -64 -7) (-76 -64 -7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4860" + "plane" "(-88 -57 4.00001) (-88 -60 -7) (-76 -60 -7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "29948" + side + { + "id" "4871" + "plane" "(-88 -64 -7) (-88 -64 -19) (-88 -61 -19)" + "material" "METAL/BLACK_WALL_METAL_005A_TOP" + "uaxis" "[0 -1 0 512] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1" + } + side + { + "id" "4870" + "plane" "(-76 -61 -19) (-76 -64 -19) (-76 -64 -7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4869" + "plane" "(-88 -64 -19) (-88 -64 -7) (-76 -64 -7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4868" + "plane" "(-88 -64 -7) (-88 -60 -7) (-76 -60 -7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4867" + "plane" "(-88 -61 -19) (-88 -64 -19) (-76 -64 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4866" + "plane" "(-88 -60 -7) (-88 -61 -19) (-76 -61 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "29949" + side + { + "id" "4877" + "plane" "(-88 -64 -19) (-88 -64 -31) (-88 -60 -31)" + "material" "METAL/BLACK_WALL_METAL_005A_TOP" + "uaxis" "[0 -1 0 512] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1" + } + side + { + "id" "4876" + "plane" "(-76 -60 -31) (-76 -64 -31) (-76 -64 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4875" + "plane" "(-88 -64 -31) (-88 -64 -19) (-76 -64 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4874" + "plane" "(-88 -64 -19) (-88 -61 -19) (-76 -61 -19)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[-1 0 0 8] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3887" - "plane" "(-288 128 -64) (-288 136 -64) (-288 136 64)" + "id" "4873" + "plane" "(-88 -60 -31) (-88 -64 -31) (-76 -64 -31)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3886" - "plane" "(-282 128 -64) (-288 128 -64) (-288 128 64)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[1 0 0 430] 0.2" - "vaxis" "[0 0 -1 0] 0.25" + "id" "4872" + "plane" "(-88 -61 -19) (-88 -60 -31) (-76 -60 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "29950" + side + { + "id" "4883" + "plane" "(-88 -64 -31) (-88 -64 -42) (-88 -57 -42)" + "material" "METAL/BLACK_WALL_METAL_005A_TOP" + "uaxis" "[0 -1 0 512] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1" + } side { - "id" "3885" - "plane" "(-282 136 64) (-288 136 64) (-288 136 -64)" + "id" "4882" + "plane" "(-76 -57 -42) (-76 -64 -42) (-76 -64 -31)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3884" - "plane" "(-282 136 -64) (-282 128 -64) (-282 128 64)" + "id" "4881" + "plane" "(-88 -64 -42) (-88 -64 -31) (-76 -64 -31)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4880" + "plane" "(-88 -64 -31) (-88 -60 -31) (-76 -60 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4879" + "plane" "(-88 -57 -42) (-88 -64 -42) (-76 -64 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4878" + "plane" "(-88 -60 -31) (-88 -57 -42) (-76 -57 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4568,69 +6433,69 @@ entity } solid { - "id" "15505" + "id" "29951" side { - "id" "3877" - "plane" "(-280 136 -64) (-282 136 -64) (-282 128 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "id" "4889" + "plane" "(-88 -64 -42) (-88 -64 -53) (-88 -51 -53)" + "material" "METAL/BLACK_WALL_METAL_005A_TOP" + "uaxis" "[0 -1 0 512] 0.25" + "vaxis" "[0 0 -1 512] 0.25" "rotation" "0" "lightmapscale" "16" - "smoothing_groups" "0" + "smoothing_groups" "1" } side { - "id" "3876" - "plane" "(-280 128 64) (-282 128 64) (-282 136 64)" + "id" "4888" + "plane" "(-76 -51 -53) (-76 -64 -53) (-76 -64 -42)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3875" - "plane" "(-282 128 -64) (-282 136 -64) (-282 136 64)" + "id" "4887" + "plane" "(-88 -64 -53) (-88 -64 -42) (-76 -64 -42)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3874" - "plane" "(-280 128 -64) (-282 128 -64) (-282 128 64)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[1 0 0 152] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "4886" + "plane" "(-88 -64 -42) (-88 -57 -42) (-76 -57 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3873" - "plane" "(-280 136 64) (-282 136 64) (-282 136 -64)" + "id" "4885" + "plane" "(-88 -51 -53) (-88 -64 -53) (-76 -64 -53)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3872" - "plane" "(-280 136 -64) (-280 128 -64) (-280 128 64)" + "id" "4884" + "plane" "(-88 -57 -42) (-88 -51 -53) (-76 -51 -53)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4644,69 +6509,69 @@ entity } solid { - "id" "14497" + "id" "29952" side { - "id" "3691" - "plane" "(-280 136 -64) (-280 128 -64) (-216 128 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[-1 0 0 32] 0.25" + "id" "4895" + "plane" "(-88 51 -53) (-88 64 -53) (-88 64 -42)" + "material" "METAL/BLACK_WALL_METAL_005A_TOP" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" "rotation" "0" "lightmapscale" "16" - "smoothing_groups" "0" + "smoothing_groups" "1" } side { - "id" "3690" - "plane" "(-280 128 128) (-280 136 128) (-216 136 128)" + "id" "4894" + "plane" "(-76 64 -42) (-76 64 -53) (-76 51 -53)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[-1 0 0 32] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3689" - "plane" "(-280 128 -64) (-280 136 -64) (-280 136 128)" + "id" "4893" + "plane" "(-88 64 -42) (-88 64 -53) (-76 64 -53)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3688" - "plane" "(-216 136 -64) (-216 128 -64) (-216 128 128)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 -1 0 45] 0.25" - "vaxis" "[0 0 1 256] 0.25" - "rotation" "90" + "id" "4892" + "plane" "(-88 57 -42) (-88 64 -42) (-76 64 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3687" - "plane" "(-216 128 -64) (-280 128 -64) (-280 128 128)" - "material" "METAL/BLACK_WALL_METAL_005A_TOP" - "uaxis" "[-1 0 0 -864] 0.25" - "vaxis" "[0 0 -1 512] 0.25" + "id" "4891" + "plane" "(-88 64 -53) (-88 51 -53) (-76 51 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3686" - "plane" "(-216 136 128) (-280 136 128) (-280 136 -64)" + "id" "4890" + "plane" "(-88 51 -53) (-88 57 -42) (-76 57 -42)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 32] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4720,69 +6585,69 @@ entity } solid { - "id" "15061" + "id" "29953" side { - "id" "3829" - "plane" "(-282 120 64) (-282 72 64) (-280 72 64)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[1 0 0 152] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "id" "4901" + "plane" "(-88 60 -31) (-88 64 -31) (-88 64 -19)" + "material" "METAL/BLACK_WALL_METAL_005A_TOP" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" "rotation" "0" "lightmapscale" "16" - "smoothing_groups" "0" + "smoothing_groups" "1" } side { - "id" "3828" - "plane" "(-282 72 128) (-282 120 128) (-280 120 128)" + "id" "4900" + "plane" "(-76 64 -19) (-76 64 -31) (-76 60 -31)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3827" - "plane" "(-282 72 64) (-282 120 64) (-282 120 128)" + "id" "4899" + "plane" "(-88 64 -19) (-88 64 -31) (-76 64 -31)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3826" - "plane" "(-280 120 64) (-280 72 64) (-280 72 128)" - "material" "METAL/BLACK_WALL_METAL_005A_TOP" - "uaxis" "[0 1 0 -288] 0.25" - "vaxis" "[0 0 -1 512] 0.25" - "rotation" "270" + "id" "4898" + "plane" "(-88 61 -19) (-88 64 -19) (-76 64 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3825" - "plane" "(-280 72 64) (-282 72 64) (-282 72 128)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[1 0 0 152] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "90" + "id" "4897" + "plane" "(-88 64 -31) (-88 60 -31) (-76 60 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3824" - "plane" "(-280 120 128) (-282 120 128) (-282 120 64)" + "id" "4896" + "plane" "(-88 60 -31) (-88 61 -19) (-76 61 -19)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4796,69 +6661,69 @@ entity } solid { - "id" "15075" + "id" "29954" side { - "id" "3835" - "plane" "(-282 72 -64) (-282 7.99999 -64) (-280 7.99999 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 16] 0.25" + "id" "4907" + "plane" "(-88 -64 37) (-88 -64 32) (-88 -34 32)" + "material" "METAL/BLACK_WALL_METAL_005A_TOP" + "uaxis" "[0 -1 0 512] 0.25" + "vaxis" "[0 0 -1 512] 0.25" "rotation" "0" "lightmapscale" "16" - "smoothing_groups" "0" + "smoothing_groups" "1" } side { - "id" "3834" - "plane" "(-282 7.99999 64) (-282 72 64) (-280 72 64)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[1 0 0 152] 0.25" - "vaxis" "[0 -1 0 32] 0.25" + "id" "4906" + "plane" "(-76 -34 32) (-76 -64 32) (-76 -64 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3833" - "plane" "(-282 7.99999 -64) (-282 72 -64) (-282 72 64)" + "id" "4905" + "plane" "(-88 -64 32) (-88 -64 37) (-76 -64 37)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3832" - "plane" "(-280 72 -64) (-280 7.99999 -64) (-280 7.99999 64)" - "material" "METAL/BLACK_WALL_METAL_005A_TOP" - "uaxis" "[0 1 0 -288] 0.25" - "vaxis" "[0 0 -1 512] 0.25" + "id" "4904" + "plane" "(-88 -64 37) (-88 -24 37) (-76 -24 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3831" - "plane" "(-280 7.99999 -64) (-282 7.99999 -64) (-282 7.99999 64)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[1 0 0 152] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "4903" + "plane" "(-88 -34 32) (-88 -64 32) (-76 -64 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3830" - "plane" "(-280 72 64) (-282 72 64) (-282 72 -64)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[1 0 0 152] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "4902" + "plane" "(-88 -24 37) (-88 -34 32) (-76 -34 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4870,152 +6735,71 @@ entity "visgroupautoshown" "1" } } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 1000]" - } -} -entity -{ - "id" "28054" - "classname" "prop_static" - "angles" "0 180 180" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/anim_wp/framework/squarebeam_off.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "1" - "solid" "6" - "origin" "-248 96 128" - editor - { - "color" "147 212 0" - "groupid" "28367" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 500]" - } -} -entity -{ - "id" "28119" - "classname" "prop_static" - "angles" "0 180 180" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/anim_wp/framework/squarebeam_off.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "1" - "solid" "6" - "origin" "-248 -32 128" - editor - { - "color" "147 212 0" - "groupid" "28367" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 500]" - } -} -entity -{ - "id" "28123" - "classname" "prop_static" - "angles" "0 180 180" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/anim_wp/framework/squarebeam_off.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "1" - "solid" "6" - "origin" "-248 -96 128" - editor - { - "color" "147 212 0" - "groupid" "28367" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 500]" - } -} -entity -{ - "id" "28433" - "classname" "func_detail" solid { - "id" "28434" + "id" "29955" side { - "id" "4477" - "plane" "(-152 -96 128) (-152 -128 128) (-120 -128 128)" - "material" "METAL/BLACK_WALL_METAL_005B" - "uaxis" "[1 0 0 480] 0.25" - "vaxis" "[0 1 0 384] 0.25" + "id" "4913" + "plane" "(-88 -64 32) (-88 -64 26) (-88 -41 26)" + "material" "METAL/BLACK_WALL_METAL_005A_TOP" + "uaxis" "[0 -1 0 512] 0.25" + "vaxis" "[0 0 -1 512] 0.25" "rotation" "0" "lightmapscale" "16" - "smoothing_groups" "0" + "smoothing_groups" "1" } side { - "id" "4476" - "plane" "(-152 -128 130) (-152 -96 130) (-120 -96 130)" + "id" "4912" + "plane" "(-76 -41 26) (-76 -64 26) (-76 -64 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4475" - "plane" "(-152 -128 128) (-152 -96 128) (-152 -96 130)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 0 -1 56] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "4911" + "plane" "(-88 -64 26) (-88 -64 32) (-76 -64 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4474" - "plane" "(-120 -96 128) (-120 -128 128) (-120 -128 130)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 0 -1 56] 0.25" - "vaxis" "[0 -1 0 -384] 0.25" + "id" "4910" + "plane" "(-88 -64 32) (-88 -34 32) (-76 -34 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4473" - "plane" "(-120 -128 128) (-152 -128 128) (-152 -128 130)" + "id" "4909" + "plane" "(-88 -41 26) (-88 -64 26) (-76 -64 26)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -8] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" - "rotation" "90" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4472" - "plane" "(-120 -96 130) (-152 -96 130) (-152 -96 128)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 0 -1 56] 0.25" - "vaxis" "[1 0 0 96] 0.25" + "id" "4908" + "plane" "(-88 -34 32) (-88 -41 26) (-76 -41 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -5029,69 +6813,69 @@ entity } solid { - "id" "28486" + "id" "29956" side { - "id" "4513" - "plane" "(-152 128 128) (-152 64 128) (-120 64 128)" - "material" "METAL/BLACK_WALL_METAL_005B" - "uaxis" "[1 0 0 480] 0.25" - "vaxis" "[0 1 0 384] 0.25" + "id" "4919" + "plane" "(-88 -64 26) (-88 -64 15) (-88 -51 15)" + "material" "METAL/BLACK_WALL_METAL_005A_TOP" + "uaxis" "[0 -1 0 512] 0.25" + "vaxis" "[0 0 -1 512] 0.25" "rotation" "0" "lightmapscale" "16" - "smoothing_groups" "0" + "smoothing_groups" "1" } side { - "id" "4512" - "plane" "(-152 64 130) (-152 128 130) (-120 128 130)" + "id" "4918" + "plane" "(-76 -51 15) (-76 -64 15) (-76 -64 26)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4511" - "plane" "(-152 64 128) (-152 128 128) (-152 128 130)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 0 -1 56] 0.25" - "vaxis" "[0 1 0 -256] 0.25" + "id" "4917" + "plane" "(-88 -64 15) (-88 -64 26) (-76 -64 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4510" - "plane" "(-120 128 128) (-120 64 128) (-120 64 130)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 0 -1 56] 0.25" - "vaxis" "[0 -1 0 384] 0.25" + "id" "4916" + "plane" "(-88 -64 26) (-88 -41 26) (-76 -41 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4509" - "plane" "(-120 64 128) (-152 64 128) (-152 64 130)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 0 -1 56] 0.25" - "vaxis" "[-1 0 0 -352] 0.25" + "id" "4915" + "plane" "(-88 -51 15) (-88 -64 15) (-76 -64 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4508" - "plane" "(-120 128 130) (-152 128 130) (-152 128 128)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 0 -1 56] 0.25" - "vaxis" "[1 0 0 128] 0.25" + "id" "4914" + "plane" "(-88 -41 26) (-88 -51 15) (-76 -51 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -5105,69 +6889,69 @@ entity } solid { - "id" "28464" + "id" "29957" side { - "id" "4501" - "plane" "(-216 32 128) (-216 -1.16343e-005 128) (-184 -1.44318e-005 128)" - "material" "METAL/BLACK_WALL_METAL_005B" - "uaxis" "[1 0 0 480] 0.25" - "vaxis" "[0 1 0 384] 0.25" + "id" "4925" + "plane" "(-88 57 4.00001) (-88 64 4.00001) (-88 64 15)" + "material" "METAL/BLACK_WALL_METAL_005A_TOP" + "uaxis" "[0 -1 0 512] 0.25" + "vaxis" "[0 0 -1 512] 0.25" "rotation" "0" "lightmapscale" "16" - "smoothing_groups" "0" + "smoothing_groups" "1" } side { - "id" "4500" - "plane" "(-216 -1.16343e-005 130) (-216 32 130) (-184 32 130)" + "id" "4924" + "plane" "(-76 64 15) (-76 64 4) (-76 57 4)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4499" - "plane" "(-216 -1.16343e-005 128) (-216 32 128) (-216 32 130)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 0 -1 56] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "4923" + "plane" "(-88 64 15) (-88 64 4.00001) (-76 64 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4498" - "plane" "(-184 32 128) (-184 -1.44318e-005 128) (-184 -1.44318e-005 130)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 0 -1 56] 0.25" - "vaxis" "[0 -1 0 128] 0.25" + "id" "4922" + "plane" "(-88 51 15) (-88 64 15) (-76 64 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4497" - "plane" "(-184 -1.44318e-005 128) (-216 -1.16343e-005 128) (-216 -1.16343e-005 130)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 0 -1 56] 0.25" - "vaxis" "[-1 0 0 -224] 0.25" + "id" "4921" + "plane" "(-88 64 4.00001) (-88 57 4.00001) (-76 57 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4496" - "plane" "(-184 32 130) (-216 32 130) (-216 32 128)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 0 -1 56] 0.25" - "vaxis" "[1 0 0 352] 0.25" + "id" "4920" + "plane" "(-88 57 4.00001) (-88 51 15) (-76 51 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -5181,69 +6965,69 @@ entity } solid { - "id" "28368" + "id" "29958" side { - "id" "4453" - "plane" "(-120 -32 128) (-120 -96 128) (-88 -96 128)" - "material" "METAL/BLACK_WALL_METAL_005B" - "uaxis" "[1 0 0 480] 0.25" - "vaxis" "[0 1 0 384] 0.25" + "id" "4931" + "plane" "(-88 60 -7) (-88 64 -7) (-88 64 4.00001)" + "material" "METAL/BLACK_WALL_METAL_005A_TOP" + "uaxis" "[0 -1 0 512] 0.25" + "vaxis" "[0 0 -1 512] 0.25" "rotation" "0" "lightmapscale" "16" - "smoothing_groups" "0" + "smoothing_groups" "1" } side { - "id" "4452" - "plane" "(-120 -96 130) (-120 -32 130) (-88 -32 130)" + "id" "4930" + "plane" "(-76 64 4) (-76 64 -7) (-76 60 -7)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4451" - "plane" "(-120 -96 128) (-120 -32 128) (-120 -32 130)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 0 -1 56] 0.25" - "vaxis" "[0 1 0 384] 0.25" + "id" "4929" + "plane" "(-88 64 4.00001) (-88 64 -7) (-76 64 -7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4450" - "plane" "(-88 -32 128) (-88 -96 128) (-88 -96 130)" + "id" "4928" + "plane" "(-88 57 4.00001) (-88 64 4.00001) (-76 64 4)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -8] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4449" - "plane" "(-88 -96 128) (-120 -96 128) (-120 -96 130)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 0 -1 56] 0.25" - "vaxis" "[-1 0 0 -352] 0.25" + "id" "4927" + "plane" "(-88 64 -7) (-88 60 -7) (-76 60 -7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4448" - "plane" "(-88 -32 130) (-120 -32 130) (-120 -32 128)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 0 -1 56] 0.25" - "vaxis" "[1 0 0 480] 0.25" + "id" "4926" + "plane" "(-88 60 -7) (-88 57 4.00001) (-76 57 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -5257,69 +7041,69 @@ entity } solid { - "id" "28562" + "id" "29959" side { - "id" "4537" - "plane" "(-248 -96 128) (-248 -128 128) (-184 -128 128)" - "material" "METAL/BLACK_WALL_METAL_005B" - "uaxis" "[1 0 0 480] 0.25" - "vaxis" "[0 1 0 384] 0.25" + "id" "4937" + "plane" "(-88 61 -19) (-88 64 -19) (-88 64 -7)" + "material" "METAL/BLACK_WALL_METAL_005A_TOP" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" "rotation" "0" "lightmapscale" "16" - "smoothing_groups" "0" + "smoothing_groups" "1" } side { - "id" "4536" - "plane" "(-248 -128 130) (-248 -96 130) (-184 -96 130)" + "id" "4936" + "plane" "(-76 64 -7) (-76 64 -19) (-76 61 -19)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4535" - "plane" "(-248 -128 128) (-248 -96 128) (-248 -96 130)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 0 -1 56] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "4935" + "plane" "(-88 64 -7) (-88 64 -19) (-76 64 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4534" - "plane" "(-184 -96 128) (-184 -128 128) (-184 -128 130)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 0 -1 56] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "4934" + "plane" "(-88 60 -7) (-88 64 -7) (-76 64 -7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4533" - "plane" "(-184 -128 128) (-248 -128 128) (-248 -128 130)" + "id" "4933" + "plane" "(-88 64 -19) (-88 61 -19) (-76 61 -19)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 -56] 0.25" - "rotation" "90" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4532" - "plane" "(-184 -96 130) (-248 -96 130) (-248 -96 128)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 0 -1 56] 0.25" - "vaxis" "[1 0 0 480] 0.25" + "id" "4932" + "plane" "(-88 61 -19) (-88 60 -7) (-76 60 -7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -5333,69 +7117,69 @@ entity } solid { - "id" "28454" + "id" "29960" side { - "id" "4489" - "plane" "(-184 -32 128) (-184 -96 128) (-152 -96 128)" - "material" "METAL/BLACK_WALL_METAL_005B" - "uaxis" "[1 0 0 480] 0.25" - "vaxis" "[0 1 0 384] 0.25" + "id" "4943" + "plane" "(-88 24 37) (-88 64 37) (-88 64 43)" + "material" "METAL/BLACK_WALL_METAL_005A_TOP" + "uaxis" "[0 -1 0 512] 0.25" + "vaxis" "[0 0 -1 512] 0.25" "rotation" "0" "lightmapscale" "16" - "smoothing_groups" "0" + "smoothing_groups" "1" } side { - "id" "4488" - "plane" "(-184 -96 130) (-184 -32 130) (-152 -32 130)" + "id" "4942" + "plane" "(-76 64 43) (-76 64 37) (-76 24 37)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4487" - "plane" "(-184 -96 128) (-184 -32 128) (-184 -32 130)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 0 -1 56] 0.25" - "vaxis" "[0 1 0 384] 0.25" + "id" "4941" + "plane" "(-88 64 43) (-88 64 37) (-76 64 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4486" - "plane" "(-152 -32 128) (-152 -96 128) (-152 -96 130)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 0 -1 56] 0.25" - "vaxis" "[0 -1 0 -128] 0.25" + "id" "4940" + "plane" "(-88 64 37) (-88 24 37) (-76 24 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4485" - "plane" "(-152 -96 128) (-184 -96 128) (-184 -96 130)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 0 -1 56] 0.25" - "vaxis" "[-1 0 0 -96] 0.25" + "id" "4939" + "plane" "(-88 5.99998 43) (-88 64 43) (-76 64 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "4484" - "plane" "(-152 -32 130) (-184 -32 130) (-184 -32 128)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 0 1 56] 0.25" - "vaxis" "[-1 0 0 -96] 0.25" + "id" "4938" + "plane" "(-88 24 37) (-88 5.99998 43) (-76 5.99998 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -5409,69 +7193,69 @@ entity } solid { - "id" "14429" + "id" "29961" side { - "id" "3649" - "plane" "(-488 176 128) (-488 -160 128) (-360 -160 128)" - "material" "METAL/METALWALL_BTS_006A" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "270" + "id" "4949" + "plane" "(-88 -64 43) (-88 -64 37) (-88 -24 37)" + "material" "METAL/BLACK_WALL_METAL_005A_TOP" + "uaxis" "[0 -1 0 512] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" "lightmapscale" "16" - "smoothing_groups" "0" + "smoothing_groups" "1" } side { - "id" "3648" - "plane" "(-488 -160 187) (-488 176 187) (-360 176 187)" + "id" "4948" + "plane" "(-76 -24 37) (-76 -64 37) (-76 -64 43)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[-1 0 0 32] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3647" - "plane" "(-488 -160 128) (-488 176 128) (-488 176 187)" + "id" "4947" + "plane" "(-88 -64 37) (-88 -64 43) (-76 -64 43)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3646" - "plane" "(-360 176 128) (-360 -160 128) (-360 -160 187)" - "material" "METAL/METALWALL_BTS_006A" + "id" "4946" + "plane" "(-88 -24 37) (-88 -64 37) (-76 -64 37)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" - "rotation" "270" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3645" - "plane" "(-360 -160 128) (-488 -160 128) (-488 -160 187)" + "id" "4945" + "plane" "(-88 -64 43) (-88 -6.00002 43) (-76 -6.00002 43)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3644" - "plane" "(-360 176 187) (-488 176 187) (-488 176 128)" + "id" "4944" + "plane" "(-88 -6.00002 43) (-88 -24 37) (-76 -24 37)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -5485,10 +7269,100 @@ entity } editor { - "color" "0 180 0" + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 7000]" + } +} +entity +{ + "id" "29495" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_foliage/vine_large_leaves01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "origin" "-88 64 -64" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "28054" + "classname" "prop_static" + "angles" "0 180 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/anim_wp/framework/squarebeam_off.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "origin" "-248 96 128" + editor + { + "color" "147 212 0" + "groupid" "28367" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "28119" + "classname" "prop_static" + "angles" "0 180 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/anim_wp/framework/squarebeam_off.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "origin" "-248 -32 128" + editor + { + "color" "147 212 0" + "groupid" "28367" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "28123" + "classname" "prop_static" + "angles" "0 180 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/anim_wp/framework/squarebeam_off.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "origin" "-248 -96 128" + editor + { + "color" "147 212 0" + "groupid" "28367" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 2000]" + "logicalpos" "[0 500]" } } entity @@ -5591,7 +7465,7 @@ entity "rendercolor" "255 255 255" "skin" "0" "solid" "6" - "origin" "-376 158 32" + "origin" "-392 158 32" editor { "color" "255 255 0" @@ -5613,7 +7487,7 @@ entity "rendercolor" "255 255 255" "skin" "0" "solid" "6" - "origin" "-176 -120 128" + "origin" "-176 -128 128" editor { "color" "255 255 0" @@ -5659,12 +7533,13 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "505" - "angles" "-61.3924 64.7382 174.568" + "angles" "-61.3924 38.7382 174.568" "pitch" "-61.3924" "spawnflags" "0" "style" "0" - "origin" "-280 -32 175" + "origin" "-304 -48 175" editor { "color" "108 197 0" @@ -5688,6 +7563,7 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "505" "angles" "0 0 0" "spawnflags" "0" @@ -5759,7 +7635,7 @@ entity "rendercolor" "255 255 255" "skin" "0" "solid" "6" - "origin" "-280 -56 -136" + "origin" "-280 -64 -136" editor { "color" "255 255 0" @@ -5780,7 +7656,7 @@ entity "rendercolor" "255 255 255" "skin" "1" "solid" "6" - "origin" "-280 72 64" + "origin" "-280 64 64" editor { "color" "255 255 0" @@ -5801,7 +7677,7 @@ entity "rendercolor" "255 255 255" "skin" "0" "solid" "6" - "origin" "-280 56 -64" + "origin" "-280 48 -64" editor { "color" "255 255 0" @@ -5905,8 +7781,8 @@ entity { "id" "3938" "plane" "(-238 138 126) (-238 138 66) (-232 138 66)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[-1 0 0 -398] 0.25" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -14] 0.25" "vaxis" "[0 0 -1 -8] 0.25" "rotation" "0" "lightmapscale" "16" @@ -6209,9 +8085,9 @@ entity { "id" "4070" "plane" "(-238 138 62) (-238 138 2.00001) (-232 138 2.00001)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[-1 0 0 -398] 0.25" - "vaxis" "[0 0 -1 -264] 0.25" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -14] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -6525,8 +8401,8 @@ entity { "id" "4190" "plane" "(-106 138 126) (-106 138 66) (-100 138 66)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[-1 0 0 130] 0.25" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 2] 0.25" "vaxis" "[0 0 -1 -8] 0.25" "rotation" "0" "lightmapscale" "16" @@ -6829,9 +8705,9 @@ entity { "id" "4214" "plane" "(-106 138 62) (-106 138 2.00001) (-100 138 2.00001)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[-1 0 0 130] 0.25" - "vaxis" "[0 0 -1 -264] 0.25" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 2] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -7113,28 +8989,7 @@ entity "rendercolor" "255 255 255" "skin" "1" "solid" "6" - "origin" "-280 104 -32" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 -10268]" - } -} -entity -{ - "id" "16299" - "classname" "prop_static" - "angles" "-90 180 0" - "fademindist" "-1" - "fadescale" "1" - "model" "models/anim_wp/framework/squarebeam_off.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "1" - "solid" "6" - "origin" "-280 40 -32" + "origin" "-280 96 -32" editor { "color" "255 255 0" @@ -7213,7 +9068,7 @@ entity { "id" "18768" "classname" "prop_static" - "angles" "0 19 0" + "angles" "-5.67201 17.5971 -1.95982" "fademindist" "-1" "fadescale" "1" "model" "models/props_foliage/vine_cluster_loop01.mdl" @@ -7221,7 +9076,7 @@ entity "rendercolor" "255 255 255" "skin" "0" "solid" "6" - "origin" "-376 140 113.917" + "origin" "-392 116 125.917" editor { "color" "255 255 0" @@ -7237,7 +9092,7 @@ entity "angles" "5.47287e-008 -1.00179e-005 -12" "file" "instances/bee2/over/info_sign_detail.vmf" "targetname" "info_sign" - "origin" "-168 136 -32" + "origin" "-168 136 -64" editor { "color" "220 30 220" @@ -7301,7 +9156,7 @@ entity "OnFullyClosed" "@entrance_door_open_rlTrigger0-1" "OnOpen" "@wp_hole_3_chamOpen0-1" } - "origin" "-184 -132 -64" + "origin" "-184 -140 -64" editor { "color" "220 30 220" @@ -7320,7 +9175,7 @@ entity side { "id" "2144" - "plane" "(-120 -120 64) (-248 -120 64) (-248 -120 43)" + "plane" "(-120 -128 43) (-120 -128 64) (-248 -128 64)" "material" "METAL/BLACK_WALL_METAL_005B_TOP" "uaxis" "[-1 0 0 544] 0.25" "vaxis" "[0 0 -1 512] 0.25" @@ -7331,7 +9186,7 @@ entity side { "id" "2143" - "plane" "(-248 -144 43) (-248 -144 64) (-120 -144 64)" + "plane" "(-248 -152 43) (-248 -152 64) (-120 -152 64)" "material" "METAL/BLACK_WALL_METAL_002B" "uaxis" "[0 0 -1 -256] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -7342,9 +9197,9 @@ entity side { "id" "2142" - "plane" "(-120 -144 64) (-248 -144 64) (-248 -120 64)" + "plane" "(-120 -152 64) (-248 -152 64) (-248 -128 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[-1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -7353,10 +9208,10 @@ entity side { "id" "2141" - "plane" "(-120 -120 64) (-120 -120 43) (-120 -144 43)" + "plane" "(-120 -128 64) (-120 -128 43) (-120 -152 43)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -7364,10 +9219,10 @@ entity side { "id" "2140" - "plane" "(-248 -144 64) (-248 -144 43) (-248 -120 43)" + "plane" "(-248 -152 64) (-248 -152 43) (-248 -128 43)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -7375,9 +9230,9 @@ entity side { "id" "2139" - "plane" "(-120 -120 43) (-248 -120 43) (-248 -144 43)" + "plane" "(-120 -128 43) (-248 -128 43) (-248 -152 43)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -7396,7 +9251,7 @@ entity side { "id" "2150" - "plane" "(-235 -120 -53) (-248 -120 -53) (-248 -120 -64)" + "plane" "(-248 -128 -53) (-248 -128 -64) (-225 -128 -64)" "material" "METAL/BLACK_WALL_METAL_005B_TOP" "uaxis" "[-1 0 0 544] 0.25" "vaxis" "[0 0 -1 512] 0.25" @@ -7407,7 +9262,7 @@ entity side { "id" "2149" - "plane" "(-225 -144 -64) (-248 -144 -64) (-248 -144 -53)" + "plane" "(-225 -152 -64) (-248 -152 -64) (-248 -152 -53)" "material" "METAL/BLACK_WALL_METAL_002B" "uaxis" "[0 0 -1 -256] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -7418,9 +9273,9 @@ entity side { "id" "2148" - "plane" "(-225 -120 -64) (-248 -120 -64) (-248 -144 -64)" + "plane" "(-225 -128 -64) (-248 -128 -64) (-248 -152 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -7429,10 +9284,10 @@ entity side { "id" "2147" - "plane" "(-248 -144 -53) (-248 -144 -64) (-248 -120 -64)" + "plane" "(-248 -152 -53) (-248 -152 -64) (-248 -128 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -7440,9 +9295,9 @@ entity side { "id" "2146" - "plane" "(-235 -144 -53) (-248 -144 -53) (-248 -120 -53)" + "plane" "(-235 -152 -53) (-248 -152 -53) (-248 -128 -53)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -7451,10 +9306,10 @@ entity side { "id" "2145" - "plane" "(-235 -120 -53) (-225 -120 -64) (-225 -144 -64)" + "plane" "(-235 -128 -53) (-225 -128 -64) (-225 -152 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-0.672673 0 0.73994 18.9501] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -7472,7 +9327,7 @@ entity side { "id" "2156" - "plane" "(-143 -120 -64) (-120 -120 -64) (-120 -120 -53)" + "plane" "(-143 -128 -64) (-120 -128 -64) (-120 -128 -53)" "material" "METAL/BLACK_WALL_METAL_005B_TOP" "uaxis" "[-1 0 0 544] 0.25" "vaxis" "[0 0 -1 512] 0.25" @@ -7483,7 +9338,7 @@ entity side { "id" "2155" - "plane" "(-120 -144 -64) (-143 -144 -64) (-133 -144 -53)" + "plane" "(-120 -152 -53) (-120 -152 -64) (-143 -152 -64)" "material" "METAL/BLACK_WALL_METAL_002B" "uaxis" "[0 0 -1 -256] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -7494,9 +9349,9 @@ entity side { "id" "2154" - "plane" "(-120 -120 -64) (-143 -120 -64) (-143 -144 -64)" + "plane" "(-120 -128 -64) (-143 -128 -64) (-143 -152 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -7505,10 +9360,10 @@ entity side { "id" "2153" - "plane" "(-120 -120 -53) (-120 -120 -64) (-120 -144 -64)" + "plane" "(-120 -128 -53) (-120 -128 -64) (-120 -152 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -7516,9 +9371,9 @@ entity side { "id" "2152" - "plane" "(-120 -144 -53) (-133 -144 -53) (-133 -120 -53)" + "plane" "(-120 -152 -53) (-133 -152 -53) (-133 -128 -53)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -7527,10 +9382,10 @@ entity side { "id" "2151" - "plane" "(-133 -144 -53) (-143 -144 -64) (-143 -120 -64)" + "plane" "(-133 -152 -53) (-143 -152 -64) (-143 -128 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-0.672673 0 -0.73994 -39.8991] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -7548,7 +9403,7 @@ entity side { "id" "2162" - "plane" "(-127 -120 -42) (-120 -120 -42) (-120 -120 -31)" + "plane" "(-127 -128 -42) (-120 -128 -42) (-120 -128 -31)" "material" "METAL/BLACK_WALL_METAL_005B_TOP" "uaxis" "[-1 0 0 544] 0.25" "vaxis" "[0 0 -1 512] 0.25" @@ -7559,7 +9414,7 @@ entity side { "id" "2161" - "plane" "(-124 -144 -31) (-120 -144 -31) (-120 -144 -42)" + "plane" "(-120 -152 -31) (-120 -152 -42) (-127 -152 -42)" "material" "METAL/BLACK_WALL_METAL_002B" "uaxis" "[0 0 -1 -256] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -7570,10 +9425,10 @@ entity side { "id" "2160" - "plane" "(-120 -120 -31) (-120 -120 -42) (-120 -144 -42)" + "plane" "(-120 -128 -31) (-120 -128 -42) (-120 -152 -42)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -7581,9 +9436,9 @@ entity side { "id" "2159" - "plane" "(-120 -144 -31) (-124 -144 -31) (-124 -120 -31)" + "plane" "(-120 -152 -31) (-124 -152 -31) (-124 -128 -31)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -7592,9 +9447,9 @@ entity side { "id" "2158" - "plane" "(-120 -120 -42) (-127 -120 -42) (-127 -144 -42)" + "plane" "(-120 -128 -42) (-127 -128 -42) (-127 -152 -42)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -7603,10 +9458,10 @@ entity side { "id" "2157" - "plane" "(-124 -144 -31) (-127 -144 -42) (-127 -120 -42)" + "plane" "(-124 -152 -31) (-127 -152 -42) (-127 -128 -42)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-0.263117 0 -0.964764 -46.5598] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -7624,7 +9479,7 @@ entity side { "id" "2168" - "plane" "(-150 -120 32) (-120 -120 32) (-120 -120 37)" + "plane" "(-150 -128 32) (-120 -128 32) (-120 -128 37)" "material" "METAL/BLACK_WALL_METAL_005B_TOP" "uaxis" "[-1 0 0 544] 0.25" "vaxis" "[0 0 -1 512] 0.25" @@ -7635,7 +9490,7 @@ entity side { "id" "2167" - "plane" "(-160 -144 37) (-120 -144 37) (-120 -144 32)" + "plane" "(-120 -152 37) (-120 -152 32) (-150 -152 32)" "material" "METAL/BLACK_WALL_METAL_002B" "uaxis" "[0 0 -1 -256] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -7646,10 +9501,10 @@ entity side { "id" "2166" - "plane" "(-120 -120 37) (-120 -120 32) (-120 -144 32)" + "plane" "(-120 -128 37) (-120 -128 32) (-120 -152 32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -7657,9 +9512,9 @@ entity side { "id" "2165" - "plane" "(-120 -144 37) (-160 -144 37) (-160 -120 37)" + "plane" "(-120 -152 37) (-160 -152 37) (-160 -128 37)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -7668,9 +9523,9 @@ entity side { "id" "2164" - "plane" "(-120 -120 32) (-150 -120 32) (-150 -144 32)" + "plane" "(-120 -128 32) (-150 -128 32) (-150 -152 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -7679,9 +9534,9 @@ entity side { "id" "2163" - "plane" "(-150 -120 32) (-160 -120 37) (-160 -144 37)" + "plane" "(-150 -128 32) (-160 -128 37) (-160 -152 37)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[-0.894427 0 0.447214 47.1085] 0.25" "rotation" "0" "lightmapscale" "16" @@ -7700,7 +9555,7 @@ entity side { "id" "2174" - "plane" "(-143 -120 26) (-120 -120 26) (-120 -120 32)" + "plane" "(-143 -128 26) (-120 -128 26) (-120 -128 32)" "material" "METAL/BLACK_WALL_METAL_005B_TOP" "uaxis" "[-1 0 0 544] 0.25" "vaxis" "[0 0 -1 512] 0.25" @@ -7711,7 +9566,7 @@ entity side { "id" "2173" - "plane" "(-150 -144 32) (-120 -144 32) (-120 -144 26)" + "plane" "(-120 -152 32) (-120 -152 26) (-143 -152 26)" "material" "METAL/BLACK_WALL_METAL_002B" "uaxis" "[0 0 -1 -256] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -7722,10 +9577,10 @@ entity side { "id" "2172" - "plane" "(-120 -120 32) (-120 -120 26) (-120 -144 26)" + "plane" "(-120 -128 32) (-120 -128 26) (-120 -152 26)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -7733,9 +9588,9 @@ entity side { "id" "2171" - "plane" "(-120 -144 32) (-150 -144 32) (-150 -120 32)" + "plane" "(-120 -152 32) (-150 -152 32) (-150 -128 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -7744,9 +9599,9 @@ entity side { "id" "2170" - "plane" "(-120 -120 26) (-143 -120 26) (-143 -144 26)" + "plane" "(-120 -128 26) (-143 -128 26) (-143 -152 26)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -7755,9 +9610,9 @@ entity side { "id" "2169" - "plane" "(-143 -120 26) (-150 -120 32) (-150 -144 32)" + "plane" "(-143 -128 26) (-150 -128 32) (-150 -152 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[-0.759257 0 0.650791 30.8987] 0.25" "rotation" "0" "lightmapscale" "16" @@ -7776,7 +9631,7 @@ entity side { "id" "2180" - "plane" "(-133 -120 15) (-120 -120 15) (-120 -120 26)" + "plane" "(-133 -128 15) (-120 -128 15) (-120 -128 26)" "material" "METAL/BLACK_WALL_METAL_005B_TOP" "uaxis" "[-1 0 0 544] 0.25" "vaxis" "[0 0 -1 512] 0.25" @@ -7787,7 +9642,7 @@ entity side { "id" "2179" - "plane" "(-143 -144 26) (-120 -144 26) (-120 -144 15)" + "plane" "(-120 -152 26) (-120 -152 15) (-133 -152 15)" "material" "METAL/BLACK_WALL_METAL_002B" "uaxis" "[0 0 -1 -256] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -7798,10 +9653,10 @@ entity side { "id" "2178" - "plane" "(-120 -120 26) (-120 -120 15) (-120 -144 15)" + "plane" "(-120 -128 26) (-120 -128 15) (-120 -152 15)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -7809,9 +9664,9 @@ entity side { "id" "2177" - "plane" "(-120 -144 26) (-143 -144 26) (-143 -120 26)" + "plane" "(-120 -152 26) (-143 -152 26) (-143 -128 26)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -7820,9 +9675,9 @@ entity side { "id" "2176" - "plane" "(-120 -120 15) (-133 -120 15) (-133 -144 15)" + "plane" "(-120 -128 15) (-133 -128 15) (-133 -152 15)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -7831,10 +9686,10 @@ entity side { "id" "2175" - "plane" "(-143 -144 26) (-133 -144 15) (-133 -120 15)" + "plane" "(-143 -152 26) (-133 -152 15) (-133 -128 15)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0.672673 0 -0.73994 -18.9501] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -7852,7 +9707,7 @@ entity side { "id" "2186" - "plane" "(-235 -120 15) (-248 -120 15) (-248 -120 4.00001)" + "plane" "(-248 -128 15) (-248 -128 4) (-241 -128 4)" "material" "METAL/BLACK_WALL_METAL_005B_TOP" "uaxis" "[-1 0 0 544] 0.25" "vaxis" "[0 0 -1 512] 0.25" @@ -7863,7 +9718,7 @@ entity side { "id" "2185" - "plane" "(-241 -144 4.00001) (-248 -144 4.00001) (-248 -144 15)" + "plane" "(-241 -152 4) (-248 -152 4) (-248 -152 15)" "material" "METAL/BLACK_WALL_METAL_002B" "uaxis" "[0 0 -1 -256] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -7874,10 +9729,10 @@ entity side { "id" "2184" - "plane" "(-248 -144 15) (-248 -144 4.00001) (-248 -120 4.00001)" + "plane" "(-248 -152 15) (-248 -152 4) (-248 -128 4)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -7885,9 +9740,9 @@ entity side { "id" "2183" - "plane" "(-235 -144 15) (-248 -144 15) (-248 -120 15)" + "plane" "(-235 -152 15) (-248 -152 15) (-248 -128 15)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -7896,9 +9751,9 @@ entity side { "id" "2182" - "plane" "(-241 -120 4.00001) (-248 -120 4.00001) (-248 -144 4.00001)" + "plane" "(-241 -128 4) (-248 -128 4) (-248 -152 4)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -7907,10 +9762,10 @@ entity side { "id" "2181" - "plane" "(-235 -120 15) (-241 -120 4.00001) (-241 -144 4.00001)" + "plane" "(-235 -128 15) (-241 -128 4) (-241 -152 4)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0.478852 0 0.877895 17.4178] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -7928,7 +9783,7 @@ entity side { "id" "2192" - "plane" "(-241 -120 4.00001) (-248 -120 4.00001) (-248 -120 -6.99999)" + "plane" "(-248 -128 4) (-248 -128 -7) (-244 -128 -7)" "material" "METAL/BLACK_WALL_METAL_005B_TOP" "uaxis" "[-1 0 0 544] 0.25" "vaxis" "[0 0 -1 512] 0.25" @@ -7939,7 +9794,7 @@ entity side { "id" "2191" - "plane" "(-244 -144 -6.99999) (-248 -144 -6.99999) (-248 -144 4.00001)" + "plane" "(-244 -152 -7) (-248 -152 -7) (-248 -152 4)" "material" "METAL/BLACK_WALL_METAL_002B" "uaxis" "[0 0 -1 -256] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -7950,10 +9805,10 @@ entity side { "id" "2190" - "plane" "(-248 -144 4.00001) (-248 -144 -6.99999) (-248 -120 -6.99999)" + "plane" "(-248 -152 4) (-248 -152 -7) (-248 -128 -7)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -7961,9 +9816,9 @@ entity side { "id" "2189" - "plane" "(-241 -144 4.00001) (-248 -144 4.00001) (-248 -120 4.00001)" + "plane" "(-241 -152 4) (-248 -152 4) (-248 -128 4)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -7972,9 +9827,9 @@ entity side { "id" "2188" - "plane" "(-244 -120 -6.99999) (-248 -120 -6.99999) (-248 -144 -6.99999)" + "plane" "(-244 -128 -7) (-248 -128 -7) (-248 -152 -7)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -7983,10 +9838,10 @@ entity side { "id" "2187" - "plane" "(-241 -120 4.00001) (-244 -120 -6.99999) (-244 -144 -6.99999)" + "plane" "(-241 -128 4) (-244 -128 -7) (-244 -152 -7)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0.263117 0 0.964764 46.5598] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -8004,7 +9859,7 @@ entity side { "id" "2198" - "plane" "(-244 -120 -6.99999) (-248 -120 -6.99999) (-248 -120 -19)" + "plane" "(-248 -128 -7) (-248 -128 -19) (-245 -128 -19)" "material" "METAL/BLACK_WALL_METAL_005B_TOP" "uaxis" "[-1 0 0 544] 0.25" "vaxis" "[0 0 -1 512] 0.25" @@ -8015,7 +9870,7 @@ entity side { "id" "2197" - "plane" "(-245 -144 -19) (-248 -144 -19) (-248 -144 -6.99999)" + "plane" "(-245 -152 -19) (-248 -152 -19) (-248 -152 -7)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 -1 0] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -8026,10 +9881,10 @@ entity side { "id" "2196" - "plane" "(-248 -144 -6.99999) (-248 -144 -19) (-248 -120 -19)" + "plane" "(-248 -152 -7) (-248 -152 -19) (-248 -128 -19)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -8037,9 +9892,9 @@ entity side { "id" "2195" - "plane" "(-244 -144 -6.99999) (-248 -144 -6.99999) (-248 -120 -6.99999)" + "plane" "(-244 -152 -7) (-248 -152 -7) (-248 -128 -7)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -8048,9 +9903,9 @@ entity side { "id" "2194" - "plane" "(-245 -120 -19) (-248 -120 -19) (-248 -144 -19)" + "plane" "(-245 -128 -19) (-248 -128 -19) (-248 -152 -19)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -8059,10 +9914,10 @@ entity side { "id" "2193" - "plane" "(-244 -120 -6.99999) (-245 -120 -19) (-245 -144 -19)" + "plane" "(-244 -128 -7) (-245 -128 -19) (-245 -152 -19)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0.0830455 0 0.996546 60.4583] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -8080,7 +9935,7 @@ entity side { "id" "2204" - "plane" "(-245 -120 -19) (-248 -120 -19) (-248 -120 -31)" + "plane" "(-248 -128 -19) (-248 -128 -31) (-244 -128 -31)" "material" "METAL/BLACK_WALL_METAL_005B_TOP" "uaxis" "[-1 0 0 544] 0.25" "vaxis" "[0 0 -1 512] 0.25" @@ -8091,7 +9946,7 @@ entity side { "id" "2203" - "plane" "(-244 -144 -31) (-248 -144 -31) (-248 -144 -19)" + "plane" "(-244 -152 -31) (-248 -152 -31) (-248 -152 -19)" "material" "METAL/BLACK_WALL_METAL_002B" "uaxis" "[0 0 -1 -256] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -8102,10 +9957,10 @@ entity side { "id" "2202" - "plane" "(-248 -144 -19) (-248 -144 -31) (-248 -120 -31)" + "plane" "(-248 -152 -19) (-248 -152 -31) (-248 -128 -31)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -8113,9 +9968,9 @@ entity side { "id" "2201" - "plane" "(-245 -144 -19) (-248 -144 -19) (-248 -120 -19)" + "plane" "(-245 -152 -19) (-248 -152 -19) (-248 -128 -19)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -8124,9 +9979,9 @@ entity side { "id" "2200" - "plane" "(-244 -120 -31) (-248 -120 -31) (-248 -144 -31)" + "plane" "(-244 -128 -31) (-248 -128 -31) (-248 -152 -31)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -8135,10 +9990,10 @@ entity side { "id" "2199" - "plane" "(-245 -120 -19) (-244 -120 -31) (-244 -144 -31)" + "plane" "(-245 -128 -19) (-244 -128 -31) (-244 -152 -31)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-0.0830455 0 0.996546 1.77322] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -8156,7 +10011,7 @@ entity side { "id" "2210" - "plane" "(-244 -120 -31) (-248 -120 -31) (-248 -120 -42)" + "plane" "(-248 -128 -31) (-248 -128 -42) (-241 -128 -42)" "material" "METAL/BLACK_WALL_METAL_005B_TOP" "uaxis" "[-1 0 0 544] 0.25" "vaxis" "[0 0 -1 512] 0.25" @@ -8167,7 +10022,7 @@ entity side { "id" "2209" - "plane" "(-241 -144 -42) (-248 -144 -42) (-248 -144 -31)" + "plane" "(-241 -152 -42) (-248 -152 -42) (-248 -152 -31)" "material" "METAL/BLACK_WALL_METAL_002B" "uaxis" "[0 0 -1 -256] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -8178,10 +10033,10 @@ entity side { "id" "2208" - "plane" "(-248 -144 -31) (-248 -144 -42) (-248 -120 -42)" + "plane" "(-248 -152 -31) (-248 -152 -42) (-248 -128 -42)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -8189,9 +10044,9 @@ entity side { "id" "2207" - "plane" "(-244 -144 -31) (-248 -144 -31) (-248 -120 -31)" + "plane" "(-244 -152 -31) (-248 -152 -31) (-248 -128 -31)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -8200,9 +10055,9 @@ entity side { "id" "2206" - "plane" "(-241 -120 -42) (-248 -120 -42) (-248 -144 -42)" + "plane" "(-241 -128 -42) (-248 -128 -42) (-248 -152 -42)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -8211,10 +10066,10 @@ entity side { "id" "2205" - "plane" "(-244 -120 -31) (-241 -120 -42) (-241 -144 -42)" + "plane" "(-244 -128 -31) (-241 -128 -42) (-241 -152 -42)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-0.263117 0 0.964764 63.3993] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -8232,7 +10087,7 @@ entity side { "id" "2216" - "plane" "(-241 -120 -42) (-248 -120 -42) (-248 -120 -53)" + "plane" "(-248 -128 -42) (-248 -128 -53) (-235 -128 -53)" "material" "METAL/BLACK_WALL_METAL_005B_TOP" "uaxis" "[-1 0 0 544] 0.25" "vaxis" "[0 0 -1 512] 0.25" @@ -8243,7 +10098,7 @@ entity side { "id" "2215" - "plane" "(-235 -144 -53) (-248 -144 -53) (-248 -144 -42)" + "plane" "(-235 -152 -53) (-248 -152 -53) (-248 -152 -42)" "material" "METAL/BLACK_WALL_METAL_002B" "uaxis" "[0 0 -1 -256] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -8254,10 +10109,10 @@ entity side { "id" "2214" - "plane" "(-248 -144 -42) (-248 -144 -53) (-248 -120 -53)" + "plane" "(-248 -152 -42) (-248 -152 -53) (-248 -128 -53)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -8265,9 +10120,9 @@ entity side { "id" "2213" - "plane" "(-241 -144 -42) (-248 -144 -42) (-248 -120 -42)" + "plane" "(-241 -152 -42) (-248 -152 -42) (-248 -128 -42)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -8276,9 +10131,9 @@ entity side { "id" "2212" - "plane" "(-235 -120 -53) (-248 -120 -53) (-248 -144 -53)" + "plane" "(-235 -128 -53) (-248 -128 -53) (-248 -152 -53)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -8287,10 +10142,10 @@ entity side { "id" "2211" - "plane" "(-241 -120 -42) (-235 -120 -53) (-235 -144 -53)" + "plane" "(-241 -128 -42) (-235 -128 -53) (-235 -152 -53)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-0.478852 0 0.877895 48.0644] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -8308,7 +10163,7 @@ entity side { "id" "2222" - "plane" "(-133 -120 -53) (-120 -120 -53) (-120 -120 -42)" + "plane" "(-133 -128 -53) (-120 -128 -53) (-120 -128 -42)" "material" "METAL/BLACK_WALL_METAL_005B_TOP" "uaxis" "[-1 0 0 544] 0.25" "vaxis" "[0 0 -1 512] 0.25" @@ -8319,7 +10174,7 @@ entity side { "id" "2221" - "plane" "(-127 -144 -42) (-120 -144 -42) (-120 -144 -53)" + "plane" "(-120 -152 -42) (-120 -152 -53) (-133 -152 -53)" "material" "METAL/BLACK_WALL_METAL_002B" "uaxis" "[0 0 -1 -256] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -8330,10 +10185,10 @@ entity side { "id" "2220" - "plane" "(-120 -120 -42) (-120 -120 -53) (-120 -144 -53)" + "plane" "(-120 -128 -42) (-120 -128 -53) (-120 -152 -53)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -8341,9 +10196,9 @@ entity side { "id" "2219" - "plane" "(-120 -144 -42) (-127 -144 -42) (-127 -120 -42)" + "plane" "(-120 -152 -42) (-127 -152 -42) (-127 -128 -42)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -8352,9 +10207,9 @@ entity side { "id" "2218" - "plane" "(-120 -120 -53) (-133 -120 -53) (-133 -144 -53)" + "plane" "(-120 -128 -53) (-133 -128 -53) (-133 -152 -53)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -8363,10 +10218,10 @@ entity side { "id" "2217" - "plane" "(-127 -144 -42) (-133 -144 -53) (-133 -120 -53)" + "plane" "(-127 -152 -42) (-133 -152 -53) (-133 -128 -53)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-0.478852 0 -0.877895 -17.4178] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -8384,7 +10239,7 @@ entity side { "id" "2228" - "plane" "(-124 -120 -31) (-120 -120 -31) (-120 -120 -19)" + "plane" "(-124 -128 -31) (-120 -128 -31) (-120 -128 -19)" "material" "METAL/BLACK_WALL_METAL_005B_TOP" "uaxis" "[-1 0 0 544] 0.25" "vaxis" "[0 0 -1 512] 0.25" @@ -8395,7 +10250,7 @@ entity side { "id" "2227" - "plane" "(-123 -144 -19) (-120 -144 -19) (-120 -144 -31)" + "plane" "(-120 -152 -19) (-120 -152 -31) (-124 -152 -31)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 -1 0] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -8406,10 +10261,10 @@ entity side { "id" "2226" - "plane" "(-120 -120 -19) (-120 -120 -31) (-120 -144 -31)" + "plane" "(-120 -128 -19) (-120 -128 -31) (-120 -152 -31)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -8417,9 +10272,9 @@ entity side { "id" "2225" - "plane" "(-120 -144 -19) (-123 -144 -19) (-123 -120 -19)" + "plane" "(-120 -152 -19) (-123 -152 -19) (-123 -128 -19)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -8428,9 +10283,9 @@ entity side { "id" "2224" - "plane" "(-120 -120 -31) (-124 -120 -31) (-124 -144 -31)" + "plane" "(-120 -128 -31) (-124 -128 -31) (-124 -152 -31)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -8439,10 +10294,10 @@ entity side { "id" "2223" - "plane" "(-123 -144 -19) (-124 -144 -31) (-124 -120 -31)" + "plane" "(-123 -152 -19) (-124 -152 -31) (-124 -128 -31)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-0.0830455 0 -0.996546 -60.4583] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -8460,7 +10315,7 @@ entity side { "id" "2234" - "plane" "(-208 -120 37) (-248 -120 37) (-248 -120 32)" + "plane" "(-248 -128 37) (-248 -128 32) (-218 -128 32)" "material" "METAL/BLACK_WALL_METAL_005B_TOP" "uaxis" "[-1 0 0 544] 0.25" "vaxis" "[0 0 -1 512] 0.25" @@ -8471,7 +10326,7 @@ entity side { "id" "2233" - "plane" "(-218 -144 32) (-248 -144 32) (-248 -144 37)" + "plane" "(-218 -152 32) (-248 -152 32) (-248 -152 37)" "material" "METAL/BLACK_WALL_METAL_002B" "uaxis" "[0 0 -1 -256] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -8482,10 +10337,10 @@ entity side { "id" "2232" - "plane" "(-248 -144 37) (-248 -144 32) (-248 -120 32)" + "plane" "(-248 -152 37) (-248 -152 32) (-248 -128 32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -8493,9 +10348,9 @@ entity side { "id" "2231" - "plane" "(-208 -144 37) (-248 -144 37) (-248 -120 37)" + "plane" "(-208 -152 37) (-248 -152 37) (-248 -128 37)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -8504,9 +10359,9 @@ entity side { "id" "2230" - "plane" "(-218 -120 32) (-248 -120 32) (-248 -144 32)" + "plane" "(-218 -128 32) (-248 -128 32) (-248 -152 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -8515,9 +10370,9 @@ entity side { "id" "2229" - "plane" "(-208 -120 37) (-218 -120 32) (-218 -144 32)" + "plane" "(-208 -128 37) (-218 -128 32) (-218 -152 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[-0.894427 0 -0.447214 -53.8651] 0.25" "rotation" "0" "lightmapscale" "16" @@ -8536,7 +10391,7 @@ entity side { "id" "2240" - "plane" "(-218 -120 32) (-248 -120 32) (-248 -120 26)" + "plane" "(-248 -128 32) (-248 -128 26) (-225 -128 26)" "material" "METAL/BLACK_WALL_METAL_005B_TOP" "uaxis" "[-1 0 0 544] 0.25" "vaxis" "[0 0 -1 512] 0.25" @@ -8547,7 +10402,7 @@ entity side { "id" "2239" - "plane" "(-225 -144 26) (-248 -144 26) (-248 -144 32)" + "plane" "(-225 -152 26) (-248 -152 26) (-248 -152 32)" "material" "METAL/BLACK_WALL_METAL_002B" "uaxis" "[0 0 -1 -256] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -8558,10 +10413,10 @@ entity side { "id" "2238" - "plane" "(-248 -144 32) (-248 -144 26) (-248 -120 26)" + "plane" "(-248 -152 32) (-248 -152 26) (-248 -128 26)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -8569,9 +10424,9 @@ entity side { "id" "2237" - "plane" "(-218 -144 32) (-248 -144 32) (-248 -120 32)" + "plane" "(-218 -152 32) (-248 -152 32) (-248 -128 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -8580,9 +10435,9 @@ entity side { "id" "2236" - "plane" "(-225 -120 26) (-248 -120 26) (-248 -144 26)" + "plane" "(-225 -128 26) (-248 -128 26) (-248 -152 26)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -8591,9 +10446,9 @@ entity side { "id" "2235" - "plane" "(-218 -120 32) (-225 -120 26) (-225 -144 26)" + "plane" "(-218 -128 32) (-225 -128 26) (-225 -152 26)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[-0.759258 0 -0.65079 -46.306] 0.25" "rotation" "0" "lightmapscale" "16" @@ -8612,7 +10467,7 @@ entity side { "id" "2246" - "plane" "(-225 -120 26) (-248 -120 26) (-248 -120 15)" + "plane" "(-248 -128 26) (-248 -128 15) (-235 -128 15)" "material" "METAL/BLACK_WALL_METAL_005B_TOP" "uaxis" "[-1 0 0 544] 0.25" "vaxis" "[0 0 -1 512] 0.25" @@ -8623,7 +10478,7 @@ entity side { "id" "2245" - "plane" "(-235 -144 15) (-248 -144 15) (-248 -144 26)" + "plane" "(-235 -152 15) (-248 -152 15) (-248 -152 26)" "material" "METAL/BLACK_WALL_METAL_002B" "uaxis" "[0 0 -1 -256] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -8634,10 +10489,10 @@ entity side { "id" "2244" - "plane" "(-248 -144 26) (-248 -144 15) (-248 -120 15)" + "plane" "(-248 -152 26) (-248 -152 15) (-248 -128 15)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -8645,9 +10500,9 @@ entity side { "id" "2243" - "plane" "(-225 -144 26) (-248 -144 26) (-248 -120 26)" + "plane" "(-225 -152 26) (-248 -152 26) (-248 -128 26)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -8656,9 +10511,9 @@ entity side { "id" "2242" - "plane" "(-235 -120 15) (-248 -120 15) (-248 -144 15)" + "plane" "(-235 -128 15) (-248 -128 15) (-248 -152 15)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -8667,10 +10522,10 @@ entity side { "id" "2241" - "plane" "(-225 -120 26) (-235 -120 15) (-235 -144 15)" + "plane" "(-225 -128 26) (-235 -128 15) (-235 -152 15)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0.672673 0 0.73994 39.8991] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -8688,7 +10543,7 @@ entity side { "id" "2252" - "plane" "(-127 -120 4.00001) (-120 -120 4.00001) (-120 -120 15)" + "plane" "(-127 -128 4) (-120 -128 4) (-120 -128 15)" "material" "METAL/BLACK_WALL_METAL_005B_TOP" "uaxis" "[-1 0 0 544] 0.25" "vaxis" "[0 0 -1 512] 0.25" @@ -8699,7 +10554,7 @@ entity side { "id" "2251" - "plane" "(-133 -144 15) (-120 -144 15) (-120 -144 4.00001)" + "plane" "(-120 -152 15) (-120 -152 4) (-127 -152 4)" "material" "METAL/BLACK_WALL_METAL_002B" "uaxis" "[0 0 -1 -256] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -8710,10 +10565,10 @@ entity side { "id" "2250" - "plane" "(-120 -120 15) (-120 -120 4.00001) (-120 -144 4.00001)" + "plane" "(-120 -128 15) (-120 -128 4) (-120 -152 4)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -8721,9 +10576,9 @@ entity side { "id" "2249" - "plane" "(-120 -144 15) (-133 -144 15) (-133 -120 15)" + "plane" "(-120 -152 15) (-133 -152 15) (-133 -128 15)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -8732,9 +10587,9 @@ entity side { "id" "2248" - "plane" "(-120 -120 4.00001) (-127 -120 4.00001) (-127 -144 4.00001)" + "plane" "(-120 -128 4) (-127 -128 4) (-127 -152 4)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -8743,10 +10598,10 @@ entity side { "id" "2247" - "plane" "(-133 -144 15) (-127 -144 4.00001) (-127 -120 4.00001)" + "plane" "(-133 -152 15) (-127 -152 4) (-127 -128 4)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0.478852 0 -0.877895 -48.0644] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -8764,7 +10619,7 @@ entity side { "id" "2258" - "plane" "(-124 -120 -7) (-120 -120 -7) (-120 -120 4.00001)" + "plane" "(-124 -128 -7) (-120 -128 -7) (-120 -128 4)" "material" "METAL/BLACK_WALL_METAL_005B_TOP" "uaxis" "[-1 0 0 544] 0.25" "vaxis" "[0 0 -1 512] 0.25" @@ -8775,7 +10630,7 @@ entity side { "id" "2257" - "plane" "(-127 -144 4.00001) (-120 -144 4.00001) (-120 -144 -7)" + "plane" "(-120 -152 4) (-120 -152 -7) (-124 -152 -7)" "material" "METAL/BLACK_WALL_METAL_002B" "uaxis" "[0 0 -1 -256] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -8786,10 +10641,10 @@ entity side { "id" "2256" - "plane" "(-120 -120 4.00001) (-120 -120 -7) (-120 -144 -7)" + "plane" "(-120 -128 4) (-120 -128 -7) (-120 -152 -7)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -8797,9 +10652,9 @@ entity side { "id" "2255" - "plane" "(-120 -144 4.00001) (-127 -144 4.00001) (-127 -120 4.00001)" + "plane" "(-120 -152 4) (-127 -152 4) (-127 -128 4)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -8808,9 +10663,9 @@ entity side { "id" "2254" - "plane" "(-120 -120 -7) (-124 -120 -7) (-124 -144 -7)" + "plane" "(-120 -128 -7) (-124 -128 -7) (-124 -152 -7)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -8819,10 +10674,10 @@ entity side { "id" "2253" - "plane" "(-127 -144 4.00001) (-124 -144 -7) (-124 -120 -7)" + "plane" "(-127 -152 4) (-124 -152 -7) (-124 -128 -7)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0.263117 0 -0.964764 -63.3993] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -8840,7 +10695,7 @@ entity side { "id" "2264" - "plane" "(-123 -120 -19) (-120 -120 -19) (-120 -120 -7)" + "plane" "(-123 -128 -19) (-120 -128 -19) (-120 -128 -7)" "material" "METAL/BLACK_WALL_METAL_005B_TOP" "uaxis" "[-1 0 0 544] 0.25" "vaxis" "[0 0 -1 512] 0.25" @@ -8851,7 +10706,7 @@ entity side { "id" "2263" - "plane" "(-124 -144 -7) (-120 -144 -7) (-120 -144 -19)" + "plane" "(-120 -152 -7) (-120 -152 -19) (-123 -152 -19)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 -1 0] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -8862,10 +10717,10 @@ entity side { "id" "2262" - "plane" "(-120 -120 -7) (-120 -120 -19) (-120 -144 -19)" + "plane" "(-120 -128 -7) (-120 -128 -19) (-120 -152 -19)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -8873,9 +10728,9 @@ entity side { "id" "2261" - "plane" "(-120 -144 -7) (-124 -144 -7) (-124 -120 -7)" + "plane" "(-120 -152 -7) (-124 -152 -7) (-124 -128 -7)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -8884,9 +10739,9 @@ entity side { "id" "2260" - "plane" "(-120 -120 -19) (-123 -120 -19) (-123 -144 -19)" + "plane" "(-120 -128 -19) (-123 -128 -19) (-123 -152 -19)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -8895,10 +10750,10 @@ entity side { "id" "2259" - "plane" "(-124 -144 -7) (-123 -144 -19) (-123 -120 -19)" + "plane" "(-124 -152 -7) (-123 -152 -19) (-123 -128 -19)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0.0830455 0 -0.996546 -1.77322] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -8916,7 +10771,7 @@ entity side { "id" "2270" - "plane" "(-160 -120 37) (-120 -120 37) (-120 -120 43)" + "plane" "(-160 -128 37) (-120 -128 37) (-120 -128 43)" "material" "METAL/BLACK_WALL_METAL_005B_TOP" "uaxis" "[-1 0 0 544] 0.25" "vaxis" "[0 0 -1 512] 0.25" @@ -8927,7 +10782,7 @@ entity side { "id" "2269" - "plane" "(-178 -144 43) (-120 -144 43) (-120 -144 37)" + "plane" "(-120 -152 43) (-120 -152 37) (-160 -152 37)" "material" "METAL/BLACK_WALL_METAL_002B" "uaxis" "[0 0 -1 -256] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -8938,10 +10793,10 @@ entity side { "id" "2268" - "plane" "(-120 -120 43) (-120 -120 37) (-120 -144 37)" + "plane" "(-120 -128 43) (-120 -128 37) (-120 -152 37)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -8949,9 +10804,9 @@ entity side { "id" "2267" - "plane" "(-120 -120 37) (-160 -120 37) (-160 -144 37)" + "plane" "(-120 -128 37) (-160 -128 37) (-160 -152 37)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -8960,9 +10815,9 @@ entity side { "id" "2266" - "plane" "(-120 -144 43) (-178 -144 43) (-178 -120 43)" + "plane" "(-120 -152 43) (-178 -152 43) (-178 -128 43)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -8971,9 +10826,9 @@ entity side { "id" "2265" - "plane" "(-160 -120 37) (-178 -120 43) (-178 -144 43)" + "plane" "(-160 -128 37) (-178 -128 43) (-178 -152 43)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[-0.948683 0 0.316228 15.3122] 0.25" "rotation" "0" "lightmapscale" "16" @@ -8992,7 +10847,7 @@ entity side { "id" "2276" - "plane" "(-190 -120 43) (-248 -120 43) (-248 -120 37)" + "plane" "(-248 -128 43) (-248 -128 37) (-208 -128 37)" "material" "METAL/BLACK_WALL_METAL_005B_TOP" "uaxis" "[-1 0 0 544] 0.25" "vaxis" "[0 0 -1 512] 0.25" @@ -9003,7 +10858,7 @@ entity side { "id" "2275" - "plane" "(-208 -144 37) (-248 -144 37) (-248 -144 43)" + "plane" "(-207.988 -152 37) (-248 -152 37) (-248 -152 43)" "material" "METAL/BLACK_WALL_METAL_002B" "uaxis" "[0 0 -1 -256] 0.25" "vaxis" "[-1 0 0 32] 0.25" @@ -9014,10 +10869,10 @@ entity side { "id" "2274" - "plane" "(-248 -144 43) (-248 -144 37) (-248 -120 37)" + "plane" "(-248 -152 43) (-248 -152 37) (-248 -128 37)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -9025,9 +10880,9 @@ entity side { "id" "2273" - "plane" "(-208 -120 37) (-248 -120 37) (-248 -144 37)" + "plane" "(-208 -128 37) (-248 -128 37) (-248 -152 37)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -9036,9 +10891,9 @@ entity side { "id" "2272" - "plane" "(-190 -144 43) (-248 -144 43) (-248 -120 43)" + "plane" "(-190 -152 43) (-248 -152 43) (-248 -128 43)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -9047,9 +10902,9 @@ entity side { "id" "2271" - "plane" "(-190 -120 43) (-208 -120 37) (-208 -144 37)" + "plane" "(-190 -128 43) (-208 -128 37) (-208 -152 37)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 32] 0.25" "vaxis" "[-0.948683 0 -0.316228 -18.5965] 0.25" "rotation" "0" "lightmapscale" "16" @@ -9178,7 +11033,7 @@ entity "rendercolor" "255 255 255" "targetname" "@entrance_portal_chamber_side" "width" "64" - "origin" "-184 -136 7.62939e-006" + "origin" "-184 -144 7.62939e-006" editor { "color" "220 30 220" diff --git a/packages/styles/overgrown/resources/instances/over/items/cube/dropper_shaft_long.vmf b/packages/styles/overgrown/resources/instances/over/items/cube/dropper_shaft_long.vmf index da66b04c63..782c507c3e 100644 --- a/packages/styles/overgrown/resources/instances/over/items/cube/dropper_shaft_long.vmf +++ b/packages/styles/overgrown/resources/instances/over/items/cube/dropper_shaft_long.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8997" - "mapversion" "354" + "editorbuild" "9672" + "mapversion" "364" "formatversion" "100" "prefab" "0" } @@ -20,13 +20,13 @@ viewsettings "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "4" + "nGridSpacing" "2" "bShow3DGrid" "0" } world { "id" "1" - "mapversion" "354" + "mapversion" "364" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -646,7 +646,7 @@ hidden editor { "color" "0 180 0" - "visgroupshown" "1" + "visgroupshown" "0" "visgroupautoshown" "1" } } @@ -725,7 +725,7 @@ hidden editor { "color" "0 180 0" - "visgroupshown" "1" + "visgroupshown" "0" "visgroupautoshown" "1" } } @@ -804,7 +804,7 @@ hidden editor { "color" "0 180 0" - "visgroupshown" "1" + "visgroupshown" "0" "visgroupautoshown" "1" } } @@ -883,7 +883,7 @@ hidden editor { "color" "0 180 0" - "visgroupshown" "1" + "visgroupshown" "0" "visgroupautoshown" "1" } } @@ -962,7 +962,7 @@ hidden editor { "color" "0 180 0" - "visgroupshown" "1" + "visgroupshown" "0" "visgroupautoshown" "1" } } @@ -1041,7 +1041,7 @@ hidden editor { "color" "0 180 0" - "visgroupshown" "1" + "visgroupshown" "0" "visgroupautoshown" "1" } } @@ -1120,7 +1120,7 @@ hidden editor { "color" "0 180 0" - "visgroupshown" "1" + "visgroupshown" "0" "visgroupautoshown" "1" } } @@ -1199,7 +1199,7 @@ hidden editor { "color" "0 180 0" - "visgroupshown" "1" + "visgroupshown" "0" "visgroupautoshown" "1" } } @@ -1278,7 +1278,7 @@ hidden editor { "color" "0 180 0" - "visgroupshown" "1" + "visgroupshown" "0" "visgroupautoshown" "1" } } @@ -1357,7 +1357,7 @@ hidden editor { "color" "0 180 0" - "visgroupshown" "1" + "visgroupshown" "0" "visgroupautoshown" "1" } } @@ -1436,7 +1436,7 @@ hidden editor { "color" "0 180 0" - "visgroupshown" "1" + "visgroupshown" "0" "visgroupautoshown" "1" } } @@ -1515,7 +1515,7 @@ hidden editor { "color" "0 180 0" - "visgroupshown" "1" + "visgroupshown" "0" "visgroupautoshown" "1" } } @@ -1594,7 +1594,7 @@ hidden editor { "color" "0 180 0" - "visgroupshown" "1" + "visgroupshown" "0" "visgroupautoshown" "1" } } @@ -1673,7 +1673,7 @@ hidden editor { "color" "0 180 0" - "visgroupshown" "1" + "visgroupshown" "0" "visgroupautoshown" "1" } } @@ -1752,7 +1752,7 @@ hidden editor { "color" "0 180 0" - "visgroupshown" "1" + "visgroupshown" "0" "visgroupautoshown" "1" } } @@ -1831,7 +1831,7 @@ hidden editor { "color" "0 180 0" - "visgroupshown" "1" + "visgroupshown" "0" "visgroupautoshown" "1" } } @@ -1910,7 +1910,7 @@ hidden editor { "color" "0 180 0" - "visgroupshown" "1" + "visgroupshown" "0" "visgroupautoshown" "1" } } @@ -1989,7 +1989,7 @@ hidden editor { "color" "0 180 0" - "visgroupshown" "1" + "visgroupshown" "0" "visgroupautoshown" "1" } } @@ -2068,7 +2068,7 @@ hidden editor { "color" "0 180 0" - "visgroupshown" "1" + "visgroupshown" "0" "visgroupautoshown" "1" } } @@ -2147,7 +2147,7 @@ hidden editor { "color" "0 180 0" - "visgroupshown" "1" + "visgroupshown" "0" "visgroupautoshown" "1" } } @@ -2673,7 +2673,7 @@ entity "OnEndTouchAll" "cube_dropper_modelSetAnimationitem_dropper_close0.1-1" "OnEndTouchAll" "cube_dropper_box_reenter_clipEnable0-1" "OnEndTouchAll" "spawn_manFireUser20.2-1" - "OnEndTouchAll" "close_trigDisable0.2-1" + "OnEndTouchAll" "close_trigDisable0-1" "OnEndTouchAll" "cube_fadeEnable0.7-1" "OnEndTouchAll" "cube_dropper_modelSetDefaultAnimationitem_dropper_idle_closed0.15-1" } @@ -2776,7 +2776,7 @@ entity side { "id" "144" - "plane" "(-24 -32 -564) (24 -32 -564) (24 -24 -564)" + "plane" "(-22 -32 -564) (22 -32 -564) (22 -22 -564)" "material" "TOOLS/TOOLSINVISIBLE" "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 -1 0 -16] 0.25" @@ -2787,7 +2787,7 @@ entity side { "id" "143" - "plane" "(24 -24 44) (24 -24 -564) (24 -32 -564)" + "plane" "(22 -22 44) (22 -22 -564) (22 -32 -564)" "material" "TOOLS/TOOLSINVISIBLE" "uaxis" "[0 1 0 16] 0.25" "vaxis" "[0 0 -1 -16.3721] 0.275641" @@ -2798,7 +2798,7 @@ entity side { "id" "142" - "plane" "(-24 -24 44) (-24 -24 -564) (24 -24 -564)" + "plane" "(-22 -22 44) (-22 -22 -564) (22 -22 -564)" "material" "TOOLS/TOOLSINVISIBLE" "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 -16.3721] 0.275641" @@ -2809,7 +2809,7 @@ entity side { "id" "141" - "plane" "(24 -32 44) (24 -32 -564) (-24 -32 -564)" + "plane" "(22 -32 44) (22 -32 -564) (-22 -32 -564)" "material" "TOOLS/TOOLSINVISIBLE" "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 -16.3721] 0.275641" @@ -2820,7 +2820,7 @@ entity side { "id" "140" - "plane" "(-24 -32 44) (-24 -32 -564) (-24 -24 -564)" + "plane" "(-22 -32 44) (-22 -32 -564) (-22 -22 -564)" "material" "TOOLS/TOOLSINVISIBLE" "uaxis" "[0 1 0 16] 0.25" "vaxis" "[0 0 -1 -16.3721] 0.275641" @@ -2831,7 +2831,7 @@ entity side { "id" "139" - "plane" "(-24 -24 44) (24 -24 44) (24 -32 44)" + "plane" "(-22 -22 44) (22 -22 44) (22 -32 44)" "material" "TOOLS/TOOLSINVISIBLE" "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 -1 0 -16] 0.25" @@ -2852,7 +2852,7 @@ entity side { "id" "150" - "plane" "(-32 -24 -564) (-24 -24 -564) (-24 24 -564)" + "plane" "(-32 -32 -564) (-22 -32 -564) (-22 32 -564)" "material" "TOOLS/TOOLSINVISIBLE" "uaxis" "[1 0 0 16] 0.25" "vaxis" "[0 -1 0 16] 0.25" @@ -2863,7 +2863,7 @@ entity side { "id" "149" - "plane" "(-24 24 44) (-24 24 -564) (-24 -24 -564)" + "plane" "(-22 32 44) (-22 32 -564) (-22 -32 -564)" "material" "TOOLS/TOOLSINVISIBLE" "uaxis" "[0 1 0 -16] 0.25" "vaxis" "[0 0 -1 -16.3721] 0.275641" @@ -2874,7 +2874,7 @@ entity side { "id" "148" - "plane" "(-32 24 44) (-32 24 -564) (-24 24 -564)" + "plane" "(-32 32 44) (-32 32 -564) (-22 32 -564)" "material" "TOOLS/TOOLSINVISIBLE" "uaxis" "[1 0 0 16] 0.25" "vaxis" "[0 0 -1 -16.3721] 0.275641" @@ -2885,7 +2885,7 @@ entity side { "id" "147" - "plane" "(-24 -24 44) (-24 -24 -564) (-32 -24 -564)" + "plane" "(-22 -32 44) (-22 -32 -564) (-32 -32 -564)" "material" "TOOLS/TOOLSINVISIBLE" "uaxis" "[1 0 0 16] 0.25" "vaxis" "[0 0 -1 -16.3721] 0.275641" @@ -2896,7 +2896,7 @@ entity side { "id" "146" - "plane" "(-32 -24 44) (-32 -24 -564) (-32 24 -564)" + "plane" "(-32 -32 44) (-32 -32 -564) (-32 32 -564)" "material" "TOOLS/TOOLSINVISIBLE" "uaxis" "[0 1 0 -16] 0.25" "vaxis" "[0 0 -1 -16.3721] 0.275641" @@ -2907,7 +2907,7 @@ entity side { "id" "145" - "plane" "(-32 24 44) (-24 24 44) (-24 -24 44)" + "plane" "(-32 32 44) (-22 32 44) (-22 -32 44)" "material" "TOOLS/TOOLSINVISIBLE" "uaxis" "[1 0 0 16] 0.25" "vaxis" "[0 -1 0 16] 0.25" @@ -2928,7 +2928,7 @@ entity side { "id" "156" - "plane" "(-24 24 -564) (24 24 -564) (24 32 -564)" + "plane" "(-22 22 -564) (22 22 -564) (22 32 -564)" "material" "TOOLS/TOOLSINVISIBLE" "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 -1 0 16] 0.25" @@ -2939,7 +2939,7 @@ entity side { "id" "155" - "plane" "(24 32 44) (24 32 -564) (24 24 -564)" + "plane" "(22 32 44) (22 32 -564) (22 22 -564)" "material" "TOOLS/TOOLSINVISIBLE" "uaxis" "[0 1 0 -16] 0.25" "vaxis" "[0 0 -1 -16.3721] 0.275641" @@ -2950,7 +2950,7 @@ entity side { "id" "154" - "plane" "(-24 32 44) (-24 32 -564) (24 32 -564)" + "plane" "(-22 32 44) (-22 32 -564) (22 32 -564)" "material" "TOOLS/TOOLSINVISIBLE" "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 -16.3721] 0.275641" @@ -2961,7 +2961,7 @@ entity side { "id" "153" - "plane" "(24 24 44) (24 24 -564) (-24 24 -564)" + "plane" "(22 22 44) (22 22 -564) (-22 22 -564)" "material" "TOOLS/TOOLSINVISIBLE" "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 -16.3721] 0.275641" @@ -2972,7 +2972,7 @@ entity side { "id" "152" - "plane" "(-24 24 44) (-24 24 -564) (-24 32 -564)" + "plane" "(-22 22 44) (-22 22 -564) (-22 32 -564)" "material" "TOOLS/TOOLSINVISIBLE" "uaxis" "[0 1 0 -16] 0.25" "vaxis" "[0 0 -1 -16.3721] 0.275641" @@ -2983,7 +2983,7 @@ entity side { "id" "151" - "plane" "(-24 32 44) (24 32 44) (24 24 44)" + "plane" "(-22 32 44) (22 32 44) (22 22 44)" "material" "TOOLS/TOOLSINVISIBLE" "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 -1 0 16] 0.25" @@ -3004,7 +3004,7 @@ entity side { "id" "162" - "plane" "(24 -24 -564) (32 -24 -564) (32 24 -564)" + "plane" "(22 -32 -564) (32 -32 -564) (32 32 -564)" "material" "TOOLS/TOOLSINVISIBLE" "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 -1 0 16] 0.25" @@ -3015,7 +3015,7 @@ entity side { "id" "161" - "plane" "(32 24 44) (32 24 -564) (32 -24 -564)" + "plane" "(32 32 44) (32 32 -564) (32 -32 -564)" "material" "TOOLS/TOOLSINVISIBLE" "uaxis" "[0 1 0 -16] 0.25" "vaxis" "[0 0 -1 -16.3721] 0.275641" @@ -3026,7 +3026,7 @@ entity side { "id" "160" - "plane" "(24 24 44) (24 24 -564) (32 24 -564)" + "plane" "(22 32 44) (22 32 -564) (32 32 -564)" "material" "TOOLS/TOOLSINVISIBLE" "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 -16.3721] 0.275641" @@ -3037,7 +3037,7 @@ entity side { "id" "159" - "plane" "(32 -24 44) (32 -24 -564) (24 -24 -564)" + "plane" "(32 -32 44) (32 -32 -564) (22 -32 -564)" "material" "TOOLS/TOOLSINVISIBLE" "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 0 -1 -16.3721] 0.275641" @@ -3048,7 +3048,7 @@ entity side { "id" "158" - "plane" "(24 -24 44) (24 -24 -564) (24 24 -564)" + "plane" "(22 -32 44) (22 -32 -564) (22 32 -564)" "material" "TOOLS/TOOLSINVISIBLE" "uaxis" "[0 1 0 -16] 0.25" "vaxis" "[0 0 -1 -16.3721] 0.275641" @@ -3059,7 +3059,7 @@ entity side { "id" "157" - "plane" "(24 24 44) (32 24 44) (32 -24 44)" + "plane" "(22 32 44) (32 32 44) (32 -32 44)" "material" "TOOLS/TOOLSINVISIBLE" "uaxis" "[1 0 0 -16] 0.25" "vaxis" "[0 -1 0 16] 0.25" diff --git a/packages/styles/overgrown/resources/instances/over/items/cube/dropper_shaft_short.vmf b/packages/styles/overgrown/resources/instances/over/items/cube/dropper_shaft_short.vmf index 934b1d7d13..6eec400b43 100644 --- a/packages/styles/overgrown/resources/instances/over/items/cube/dropper_shaft_short.vmf +++ b/packages/styles/overgrown/resources/instances/over/items/cube/dropper_shaft_short.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8997" - "mapversion" "350" + "editorbuild" "9672" + "mapversion" "354" "formatversion" "100" "prefab" "0" } @@ -20,13 +20,13 @@ viewsettings "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "8" + "nGridSpacing" "4" "bShow3DGrid" "0" } world { "id" "1" - "mapversion" "350" + "mapversion" "354" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -490,249 +490,830 @@ world } } } -hidden +entity { - entity + "id" "6821" + "classname" "func_detail" + "disableX360" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + solid { - "id" "6379" - "classname" "func_detail" - hidden + "id" "6822" + side { - solid - { - "id" "6767" - side - { - "id" "2157" - "plane" "(-32 64 -64) (-16 64 -64) (-16 48 -64)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 256] 0.25" - "vaxis" "[0 -1 0 256] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2156" - "plane" "(-32 32 -72) (-32 32 -64) (-16 48 -64)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0.707107 0.707107 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2155" - "plane" "(-16 48 -72) (-16 48 -64) (-16 64 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2154" - "plane" "(-16 56 -72) (-16 64 -64) (-32 64 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -0.707107 -0.707107 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2153" - "plane" "(-32 56 -72) (-32 64 -64) (-32 32 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2152" - "plane" "(-32 32 -72) (-16 48 -72) (-16 56 -72)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } + "id" "2333" + "plane" "(-22 -32 -168) (22 -32 -168) (22 -22 -168)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "6768" - side - { - "id" "2163" - "plane" "(-0 48 -72) (0 48 -64) (16 48 -64)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2162" - "plane" "(16 48 -64) (-0 48 -64) (0 64 -64)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 256] 0.25" - "vaxis" "[0 -1 0 256] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2161" - "plane" "(16 56 -72) (16 64 -64) (-0 64 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -0.707107 -0.707107 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2160" - "plane" "(16 48 -72) (16 48 -64) (16 64 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2159" - "plane" "(-0 48 -64) (-0 48 -72) (-0 56 -72)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2158" - "plane" "(16 56 -72) (-0 56 -72) (0 48 -72)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } + "id" "2332" + "plane" "(22 -22 44) (22 -22 -168) (22 -32 -168)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 -16.3721] 0.275641" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "6769" - side - { - "id" "2169" - "plane" "(32 32 -64) (16 48 -64) (16 64 -64)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 256] 0.25" - "vaxis" "[0 -1 0 256] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2168" - "plane" "(16 48 -72) (16 48 -64) (32 32 -64)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0.707107 -0.707107 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2167" - "plane" "(16 56 -72) (16 64 -64) (16 48 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2166" - "plane" "(32 56 -72) (32 64 -64) (16 64 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -0.707107 -0.707107 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2165" - "plane" "(32 32 -72) (32 32 -64) (32 64 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2164" - "plane" "(32 56 -72) (16 56 -72) (16 48 -72)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - } + "id" "2331" + "plane" "(-22 -22 44) (-22 -22 -168) (22 -22 -168)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -16.3721] 0.275641" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2330" + "plane" "(22 -32 44) (22 -32 -168) (-22 -32 -168)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -16.3721] 0.275641" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2329" + "plane" "(-22 -32 44) (-22 -32 -168) (-22 -22 -168)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 -16.3721] 0.275641" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2328" + "plane" "(-22 -22 44) (22 -22 44) (22 -32 44)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6823" + side + { + "id" "2339" + "plane" "(-32 -32 -168) (-22 -32 -168) (-22 32 -168)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2338" + "plane" "(-22 32 44) (-22 32 -168) (-22 -32 -168)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16.3721] 0.275641" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2337" + "plane" "(-32 32 44) (-32 32 -168) (-22 32 -168)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -16.3721] 0.275641" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2336" + "plane" "(-22 -32 44) (-22 -32 -168) (-32 -32 -168)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -16.3721] 0.275641" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2335" + "plane" "(-32 -32 44) (-32 -32 -168) (-32 32 -168)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16.3721] 0.275641" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2334" + "plane" "(-32 32 44) (-22 32 44) (-22 -32 44)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6824" + side + { + "id" "2345" + "plane" "(-22 22 -168) (22 22 -168) (22 32 -168)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2344" + "plane" "(22 32 44) (22 32 -168) (22 22 -168)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16.3721] 0.275641" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2343" + "plane" "(-22 32 44) (-22 32 -168) (22 32 -168)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -16.3721] 0.275641" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2342" + "plane" "(22 22 44) (22 22 -168) (-22 22 -168)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -16.3721] 0.275641" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2341" + "plane" "(-22 22 44) (-22 22 -168) (-22 32 -168)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16.3721] 0.275641" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2340" + "plane" "(-22 32 44) (22 32 44) (22 22 44)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6825" + side + { + "id" "2351" + "plane" "(22 -32 -168) (32 -32 -168) (32 32 -168)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2350" + "plane" "(32 32 44) (32 32 -168) (32 -32 -168)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16.3721] 0.275641" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2349" + "plane" "(22 32 44) (22 32 -168) (32 32 -168)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -16.3721] 0.275641" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2348" + "plane" "(32 -32 44) (32 -32 -168) (22 -32 -168)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -16.3721] 0.275641" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2347" + "plane" "(22 -32 44) (22 -32 -168) (22 32 -168)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16.3721] 0.275641" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2346" + "plane" "(22 32 44) (32 32 44) (32 -32 44)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6826" + side + { + "id" "2356" + "plane" "(-22 -22 44) (-22 -16 44) (-16 -22 44)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2355" + "plane" "(-22 -16 -168) (-22 -22 -168) (-16 -22 -168)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2354" + "plane" "(-22 -22 -168) (-22 -16 -168) (-22 -16 44)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2353" + "plane" "(-16 -22 -168) (-22 -22 -168) (-22 -22 44)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2352" + "plane" "(-22 -16 -168) (-16 -22 -168) (-16 -22 44)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6827" + side + { + "id" "2361" + "plane" "(22 -22 44) (16 -22 44) (22 -16 44)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2360" + "plane" "(16 -22 -168) (22 -22 -168) (22 -16 -168)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2359" + "plane" "(22 -22 -168) (16 -22 -168) (16 -22 44)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2358" + "plane" "(22 -16 -168) (22 -22 -168) (22 -22 44)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2357" + "plane" "(16 -22 -168) (22 -16 -168) (22 -16 44)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6828" + side + { + "id" "2366" + "plane" "(16 22 44) (22 22 44) (22 16 44)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2365" + "plane" "(16 22 -168) (22 16 -168) (22 22 -168)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2364" + "plane" "(22 22 -168) (22 16 -168) (22 16 44)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2363" + "plane" "(16 22 -168) (22 22 -168) (22 22 44)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2362" + "plane" "(22 16 -168) (16 22 -168) (16 22 44)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6829" + side + { + "id" "2371" + "plane" "(-22 16 44) (-22 22 44) (-16 22 44)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2370" + "plane" "(-22 16 -168) (-16 22 -168) (-22 22 -168)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2369" + "plane" "(-22 22 -168) (-16 22 -168) (-16 22 44)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2368" + "plane" "(-22 16 -168) (-22 22 -168) (-22 22 44)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2367" + "plane" "(-16 22 -168) (-22 16 -168) (-22 16 44)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "6379" + "classname" "func_detail" + hidden + { + solid + { + "id" "6767" + side + { + "id" "2157" + "plane" "(-32 64 -64) (-16 64 -64) (-16 48 -64)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 -1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2156" + "plane" "(-32 32 -72) (-32 32 -64) (-16 48 -64)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2155" + "plane" "(-16 48 -72) (-16 48 -64) (-16 64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2154" + "plane" "(-16 56 -72) (-16 64 -64) (-32 64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -0.707107 -0.707107 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2153" + "plane" "(-32 56 -72) (-32 64 -64) (-32 32 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2152" + "plane" "(-32 32 -72) (-16 48 -72) (-16 56 -72)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "6768" + side + { + "id" "2163" + "plane" "(-0 48 -72) (0 48 -64) (16 48 -64)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2162" + "plane" "(16 48 -64) (-0 48 -64) (0 64 -64)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 -1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2161" + "plane" "(16 56 -72) (16 64 -64) (-0 64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -0.707107 -0.707107 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2160" + "plane" "(16 48 -72) (16 48 -64) (16 64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2159" + "plane" "(-0 48 -64) (-0 48 -72) (-0 56 -72)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2158" + "plane" "(16 56 -72) (-0 56 -72) (0 48 -72)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "6769" + side + { + "id" "2169" + "plane" "(32 32 -64) (16 48 -64) (16 64 -64)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 -1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2168" + "plane" "(16 48 -72) (16 48 -64) (32 32 -64)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[0.707107 -0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2167" + "plane" "(16 56 -72) (16 64 -64) (16 48 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2166" + "plane" "(32 56 -72) (32 64 -64) (16 64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -0.707107 -0.707107 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2165" + "plane" "(32 32 -72) (32 32 -64) (32 64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2164" + "plane" "(32 56 -72) (16 56 -72) (16 48 -72)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } hidden { solid @@ -807,7 +1388,7 @@ hidden editor { "color" "0 180 0" - "visgroupshown" "1" + "visgroupshown" "0" "visgroupautoshown" "1" } } @@ -886,7 +1467,7 @@ hidden editor { "color" "0 180 0" - "visgroupshown" "1" + "visgroupshown" "0" "visgroupautoshown" "1" } } @@ -965,7 +1546,7 @@ hidden editor { "color" "0 180 0" - "visgroupshown" "1" + "visgroupshown" "0" "visgroupautoshown" "1" } } @@ -1044,7 +1625,7 @@ hidden editor { "color" "0 180 0" - "visgroupshown" "1" + "visgroupshown" "0" "visgroupautoshown" "1" } } @@ -1123,7 +1704,7 @@ hidden editor { "color" "0 180 0" - "visgroupshown" "1" + "visgroupshown" "0" "visgroupautoshown" "1" } } @@ -1202,7 +1783,7 @@ hidden editor { "color" "0 180 0" - "visgroupshown" "1" + "visgroupshown" "0" "visgroupautoshown" "1" } } @@ -1281,7 +1862,7 @@ hidden editor { "color" "0 180 0" - "visgroupshown" "1" + "visgroupshown" "0" "visgroupautoshown" "1" } } @@ -1360,7 +1941,7 @@ hidden editor { "color" "0 180 0" - "visgroupshown" "1" + "visgroupshown" "0" "visgroupautoshown" "1" } } @@ -1396,256 +1977,19 @@ hidden { "id" "2221" "plane" "(-0 56 -72) (0 64 -64) (-16 64 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -0.707107 -0.707107 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2220" - "plane" "(-16 48 -64) (-16 48 -72) (-16 56 -72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2219" - "plane" "(-0 48 -72) (-0 48 -64) (-0 64 -64)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2218" - "plane" "(0 56 -72) (-16 56 -72) (-16 48 -72)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - } - hidden - { - solid - { - "id" "6779" - side - { - "id" "2229" - "plane" "(-0 -48 -72) (0 -48 -64) (-16 -48 -64)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2228" - "plane" "(0 -64 -64) (-16 -64 -64) (-16 -48 -64)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 256] 0.25" - "vaxis" "[0 -1 0 256] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2227" - "plane" "(-16 -56 -72) (-16 -64 -64) (-0 -64 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0.707107 -0.707107 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2226" - "plane" "(-16 -48 -72) (-16 -48 -64) (-16 -64 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2225" - "plane" "(-0 -48 -64) (-0 -48 -72) (-0 -56 -72)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2224" - "plane" "(0 -48 -72) (-16 -48 -72) (-16 -56 -72)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - } - hidden - { - solid - { - "id" "6780" - side - { - "id" "2235" - "plane" "(32 -64 -64) (16 -64 -64) (16 -48 -64)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 256] 0.25" - "vaxis" "[0 -1 0 256] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2234" - "plane" "(32 -32 -72) (32 -32 -64) (16 -48 -64)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-0.707107 -0.707107 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2233" - "plane" "(16 -48 -72) (16 -48 -64) (16 -64 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2232" - "plane" "(16 -56 -72) (16 -64 -64) (32 -64 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0.707107 -0.707107 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2231" - "plane" "(32 -56 -72) (32 -64 -64) (32 -32 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2230" - "plane" "(32 -32 -72) (16 -48 -72) (16 -56 -72)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - } - hidden - { - solid - { - "id" "6781" - side - { - "id" "2241" - "plane" "(32 -32 -64) (64 -32 -64) (64 -64 -64)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 256] 0.25" - "vaxis" "[0 -1 0 256] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2240" - "plane" "(56 -56 -72) (64 -64 -64) (64 -32 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-0.707107 0 -0.707107 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2239" - "plane" "(32 -56 -72) (32 -64 -64) (64 -64 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0.707107 -0.707107 0] 0.25" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -0.707107 -0.707107 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2238" - "plane" "(56 -32 -72) (64 -32 -64) (32 -32 -64)" + "id" "2220" + "plane" "(-16 48 -64) (-16 48 -72) (-16 56 -72)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1653,10 +1997,10 @@ hidden } side { - "id" "2237" - "plane" "(32 -32 -72) (32 -32 -64) (32 -64 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "2219" + "plane" "(-0 48 -72) (-0 48 -64) (-0 64 -64)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1664,9 +2008,9 @@ hidden } side { - "id" "2236" - "plane" "(32 -56 -72) (56 -56 -72) (56 -32 -72)" - "material" "METAL/BLACK_WALL_METAL_002B" + "id" "2218" + "plane" "(0 56 -72) (-16 56 -72) (-16 48 -72)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -1676,7 +2020,7 @@ hidden editor { "color" "0 180 0" - "visgroupshown" "1" + "visgroupshown" "0" "visgroupautoshown" "1" } } @@ -1685,46 +2029,46 @@ hidden { solid { - "id" "6782" + "id" "6779" side { - "id" "2247" - "plane" "(-32 -64 -64) (-64 -64 -64) (-64 -32 -64)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 256] 0.25" - "vaxis" "[0 -1 0 256] 0.25" + "id" "2229" + "plane" "(-0 -48 -72) (0 -48 -64) (-16 -48 -64)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2246" - "plane" "(-56 -56 -72) (-64 -64 -64) (-32 -64 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0.707107 -0.707107 0] 0.25" + "id" "2228" + "plane" "(0 -64 -64) (-16 -64 -64) (-16 -48 -64)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 -1 0 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2245" - "plane" "(-56 -32 -72) (-64 -32 -64) (-64 -64 -64)" + "id" "2227" + "plane" "(-16 -56 -72) (-16 -64 -64) (-0 -64 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0.707107 0 -0.707107 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0.707107 -0.707107 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2244" - "plane" "(-32 -56 -72) (-32 -64 -64) (-32 -32 -64)" + "id" "2226" + "plane" "(-16 -48 -72) (-16 -48 -64) (-16 -64 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1732,10 +2076,10 @@ hidden } side { - "id" "2243" - "plane" "(-32 -32 -72) (-32 -32 -64) (-64 -32 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "2225" + "plane" "(-0 -48 -64) (-0 -48 -72) (-0 -56 -72)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1743,9 +2087,9 @@ hidden } side { - "id" "2242" - "plane" "(-56 -32 -72) (-56 -56 -72) (-32 -56 -72)" - "material" "METAL/BLACK_WALL_METAL_002B" + "id" "2224" + "plane" "(0 -48 -72) (-16 -48 -72) (-16 -56 -72)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -1755,7 +2099,7 @@ hidden editor { "color" "0 180 0" - "visgroupshown" "1" + "visgroupshown" "0" "visgroupautoshown" "1" } } @@ -1764,57 +2108,57 @@ hidden { solid { - "id" "6783" + "id" "6780" side { - "id" "2253" - "plane" "(-48 -16 -72) (-48 -16 -64) (-48 0 -64)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "2235" + "plane" "(32 -64 -64) (16 -64 -64) (16 -48 -64)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 -1 0 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2252" - "plane" "(-64 -16 -64) (-64 0 -64) (-48 0 -64)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 256] 0.25" - "vaxis" "[0 -1 0 256] 0.25" + "id" "2234" + "plane" "(32 -32 -72) (32 -32 -64) (16 -48 -64)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[-0.707107 -0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2251" - "plane" "(-56 -0 -72) (-64 0 -64) (-64 -16 -64)" + "id" "2233" + "plane" "(16 -48 -72) (16 -48 -64) (16 -64 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0.707107 0 -0.707107 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2250" - "plane" "(-48 -16 -64) (-48 -16 -72) (-56 -16 -72)" + "id" "2232" + "plane" "(16 -56 -72) (16 -64 -64) (32 -64 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0.707107 -0.707107 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2249" - "plane" "(-48 0 -72) (-48 0 -64) (-64 0 -64)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-1 0 0 0] 0.25" + "id" "2231" + "plane" "(32 -56 -72) (32 -64 -64) (32 -32 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1822,9 +2166,9 @@ hidden } side { - "id" "2248" - "plane" "(-56 0 -72) (-56 -16 -72) (-48 -16 -72)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "id" "2230" + "plane" "(32 -32 -72) (16 -48 -72) (16 -56 -72)" + "material" "METAL/BLACK_WALL_METAL_002B" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -1834,7 +2178,7 @@ hidden editor { "color" "0 180 0" - "visgroupshown" "1" + "visgroupshown" "0" "visgroupautoshown" "1" } } @@ -1843,44 +2187,44 @@ hidden { solid { - "id" "6784" + "id" "6781" side { - "id" "2259" - "plane" "(-48 0 -72) (-48 0 -64) (-48 16 -64)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "2241" + "plane" "(32 -32 -64) (64 -32 -64) (64 -64 -64)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 -1 0 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2258" - "plane" "(-64 0 -64) (-64 16 -64) (-48 16 -64)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 256] 0.25" - "vaxis" "[0 -1 0 256] 0.25" + "id" "2240" + "plane" "(56 -56 -72) (64 -64 -64) (64 -32 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-0.707107 0 -0.707107 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2257" - "plane" "(-56 16 -72) (-64 16 -64) (-64 0 -64)" + "id" "2239" + "plane" "(32 -56 -72) (32 -64 -64) (64 -64 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0.707107 0 -0.707107 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0.707107 -0.707107 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2256" - "plane" "(-48 16 -72) (-48 16 -64) (-64 16 -64)" + "id" "2238" + "plane" "(56 -32 -72) (64 -32 -64) (32 -32 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1890,10 +2234,10 @@ hidden } side { - "id" "2255" - "plane" "(-48 0 -64) (-48 0 -72) (-56 0 -72)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[1 0 0 0] 0.25" + "id" "2237" + "plane" "(32 -32 -72) (32 -32 -64) (32 -64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1901,9 +2245,9 @@ hidden } side { - "id" "2254" - "plane" "(-56 16 -72) (-56 0 -72) (-48 0 -72)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "id" "2236" + "plane" "(32 -56 -72) (56 -56 -72) (56 -32 -72)" + "material" "METAL/BLACK_WALL_METAL_002B" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -1913,7 +2257,7 @@ hidden editor { "color" "0 180 0" - "visgroupshown" "1" + "visgroupshown" "0" "visgroupautoshown" "1" } } @@ -1922,46 +2266,46 @@ hidden { solid { - "id" "6785" + "id" "6782" side { - "id" "2265" - "plane" "(48 0 -72) (48 0 -64) (48 -16 -64)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "2247" + "plane" "(-32 -64 -64) (-64 -64 -64) (-64 -32 -64)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 -1 0 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2264" - "plane" "(48 -16 -64) (48 0 -64) (64 0 -64)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 256] 0.25" - "vaxis" "[0 -1 0 256] 0.25" + "id" "2246" + "plane" "(-56 -56 -72) (-64 -64 -64) (-32 -64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0.707107 -0.707107 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2263" - "plane" "(56 -16 -72) (64 -16 -64) (64 -0 -64)" + "id" "2245" + "plane" "(-56 -32 -72) (-64 -32 -64) (-64 -64 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-0.707107 0 -0.707107 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0.707107 0 -0.707107 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2262" - "plane" "(48 -16 -72) (48 -16 -64) (64 -16 -64)" + "id" "2244" + "plane" "(-32 -56 -72) (-32 -64 -64) (-32 -32 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1969,9 +2313,9 @@ hidden } side { - "id" "2261" - "plane" "(48 0 -64) (48 0 -72) (56 0 -72)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "id" "2243" + "plane" "(-32 -32 -72) (-32 -32 -64) (-64 -32 -64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -1980,9 +2324,9 @@ hidden } side { - "id" "2260" - "plane" "(48 0 -72) (48 -16 -72) (56 -16 -72)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "id" "2242" + "plane" "(-56 -32 -72) (-56 -56 -72) (-32 -56 -72)" + "material" "METAL/BLACK_WALL_METAL_002B" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -1992,7 +2336,7 @@ hidden editor { "color" "0 180 0" - "visgroupshown" "1" + "visgroupshown" "0" "visgroupautoshown" "1" } } @@ -2001,46 +2345,13 @@ hidden { solid { - "id" "6786" - side - { - "id" "2271" - "plane" "(48 16 -72) (48 16 -64) (48 0 -64)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2270" - "plane" "(48 0 -64) (48 16 -64) (64 16 -64)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 256] 0.25" - "vaxis" "[0 -1 0 256] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2269" - "plane" "(56 0 -72) (64 0 -64) (64 16 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-0.707107 0 -0.707107 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "6783" side { - "id" "2268" - "plane" "(48 16 -64) (48 16 -72) (56 16 -72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "2253" + "plane" "(-48 -16 -72) (-48 -16 -64) (-48 0 -64)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2048,306 +2359,348 @@ hidden } side { - "id" "2267" - "plane" "(48 0 -72) (48 0 -64) (64 0 -64)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "2252" + "plane" "(-64 -16 -64) (-64 0 -64) (-48 0 -64)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 -1 0 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2266" - "plane" "(48 16 -72) (48 0 -72) (56 0 -72)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "2251" + "plane" "(-56 -0 -72) (-64 0 -64) (-64 -16 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0.707107 0 -0.707107 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - editor + side { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - } - editor - { - "color" "0 180 0" - "visgroupid" "3" - "visgroupshown" "0" - "visgroupautoshown" "1" - "logicalpos" "[0 11500]" - } - } -} -entity -{ - "id" "5267" - "classname" "func_brush" - "disableflashlight" "1" - "disablereceiveshadows" "1" - "disableshadowdepth" "1" - "disableshadows" "1" - "drawinfastreflection" "0" - "fademindist" "-1" - "fadescale" "1" - "inputfilter" "0" - "invert_exclusion" "0" - "mingpulevel" "2" - "origin" "0 0 -116.5" - "renderamt" "255" - "rendercolor" "255 255 255" - "renderfx" "0" - "rendermode" "0" - "shadowdepthnocache" "0" - "solid" "6" - "solidbsp" "0" - "solidity" "1" - "spawnflags" "2" - "startdisabled" "1" - "targetname" "cube_fade" - "vrad_brush_cast_shadows" "0" - solid - { - "id" "5283" - side - { - "id" "1661" - "plane" "(32 -32 -96) (32 -32 -97) (-32 -32 -97)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.375" - "vaxis" "[0 0 -1 40.1133] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1660" - "plane" "(-32 32 -97) (32 32 -97) (32 32 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.375" - "vaxis" "[0 0 -1 40.1133] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1659" - "plane" "(32 32 -97) (-32 32 -97) (-32 -32 -97)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.375" - "vaxis" "[0 -1 0 0] 0.375" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1658" - "plane" "(32 32 -96) (32 32 -97) (32 -32 -97)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -0.00501251] 0.375" - "vaxis" "[0 0 -1 40.1133] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1657" - "plane" "(32 -32 -96) (-32 -32 -96) (-32 32 -96)" - "material" "BEE2/BLACK_FADE" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1656" - "plane" "(-32 -32 -96) (-32 -32 -97) (-32 32 -97)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.375" - "vaxis" "[0 0 -1 56] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "5279" - side - { - "id" "1721" - "plane" "(32 -32 -104) (32 -32 -105) (-32 -32 -105)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.375" - "vaxis" "[0 0 -1 40.1133] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1720" - "plane" "(-32 32 -105) (32 32 -105) (32 32 -104)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.375" - "vaxis" "[0 0 -1 40.1133] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1719" - "plane" "(32 32 -105) (-32 32 -105) (-32 -32 -105)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.375" - "vaxis" "[0 -1 0 0] 0.375" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1718" - "plane" "(32 32 -104) (32 32 -105) (32 -32 -105)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -0.00501251] 0.375" - "vaxis" "[0 0 -1 40.1133] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1717" - "plane" "(32 -32 -104) (-32 -32 -104) (-32 32 -104)" - "material" "BEE2/BLACK_FADE" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1716" - "plane" "(-32 -32 -104) (-32 -32 -105) (-32 32 -105)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.375" - "vaxis" "[0 0 -1 56] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "5275" - side - { - "id" "1703" - "plane" "(32 -32 -112) (32 -32 -113) (-32 -32 -113)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.375" - "vaxis" "[0 0 -1 40.1133] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1702" - "plane" "(-32 32 -113) (32 32 -113) (32 32 -112)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.375" - "vaxis" "[0 0 -1 40.1133] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1701" - "plane" "(32 32 -113) (-32 32 -113) (-32 -32 -113)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -16] 0.375" - "vaxis" "[0 -1 0 0] 0.375" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "id" "2250" + "plane" "(-48 -16 -64) (-48 -16 -72) (-56 -16 -72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2249" + "plane" "(-48 0 -72) (-48 0 -64) (-64 0 -64)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2248" + "plane" "(-56 0 -72) (-56 -16 -72) (-48 -16 -72)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "1700" - "plane" "(32 32 -112) (32 32 -113) (32 -32 -113)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -0.00501251] 0.375" - "vaxis" "[0 0 -1 40.1133] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "6784" + side + { + "id" "2259" + "plane" "(-48 0 -72) (-48 0 -64) (-48 16 -64)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2258" + "plane" "(-64 0 -64) (-64 16 -64) (-48 16 -64)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 -1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2257" + "plane" "(-56 16 -72) (-64 16 -64) (-64 0 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0.707107 0 -0.707107 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2256" + "plane" "(-48 16 -72) (-48 16 -64) (-64 16 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2255" + "plane" "(-48 0 -64) (-48 0 -72) (-56 0 -72)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2254" + "plane" "(-56 16 -72) (-56 0 -72) (-48 0 -72)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "1699" - "plane" "(32 -32 -112) (-32 -32 -112) (-32 32 -112)" - "material" "BEE2/BLACK_FADE" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 -1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "6785" + side + { + "id" "2265" + "plane" "(48 0 -72) (48 0 -64) (48 -16 -64)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2264" + "plane" "(48 -16 -64) (48 0 -64) (64 0 -64)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 -1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2263" + "plane" "(56 -16 -72) (64 -16 -64) (64 -0 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-0.707107 0 -0.707107 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2262" + "plane" "(48 -16 -72) (48 -16 -64) (64 -16 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2261" + "plane" "(48 0 -64) (48 0 -72) (56 0 -72)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2260" + "plane" "(48 0 -72) (48 -16 -72) (56 -16 -72)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } } - side + hidden { - "id" "1698" - "plane" "(-32 -32 -112) (-32 -32 -113) (-32 32 -113)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.375" - "vaxis" "[0 0 -1 56] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + solid + { + "id" "6786" + side + { + "id" "2271" + "plane" "(48 16 -72) (48 16 -64) (48 0 -64)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2270" + "plane" "(48 0 -64) (48 16 -64) (64 16 -64)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 -1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2269" + "plane" "(56 0 -72) (64 0 -64) (64 16 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-0.707107 0 -0.707107 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2268" + "plane" "(48 16 -64) (48 16 -72) (56 16 -72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2267" + "plane" "(48 0 -72) (48 0 -64) (64 0 -64)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2266" + "plane" "(48 16 -72) (48 0 -72) (56 0 -72)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } } editor { - "color" "220 30 220" - "visgroupshown" "1" + "color" "0 180 0" + "visgroupid" "3" + "visgroupshown" "0" "visgroupautoshown" "1" + "logicalpos" "[0 11500]" } } +} +entity +{ + "id" "5267" + "classname" "func_brush" + "disableflashlight" "1" + "disablereceiveshadows" "1" + "disableshadowdepth" "1" + "disableshadows" "1" + "drawinfastreflection" "0" + "fademindist" "-1" + "fadescale" "1" + "inputfilter" "0" + "invert_exclusion" "0" + "mingpulevel" "2" + "origin" "0 0 -116.5" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "solid" "6" + "solidbsp" "0" + "solidity" "1" + "spawnflags" "2" + "startdisabled" "1" + "targetname" "cube_fade" + "vrad_brush_cast_shadows" "0" solid { - "id" "5284" + "id" "5283" side { - "id" "1685" - "plane" "(32 -32 -136) (32 -32 -137) (-32 -32 -137)" + "id" "1661" + "plane" "(32 -32 -96) (32 -32 -97) (-32 -32 -97)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 -16] 0.375" "vaxis" "[0 0 -1 40.1133] 0.125" @@ -2357,8 +2710,8 @@ entity } side { - "id" "1684" - "plane" "(-32 32 -137) (32 32 -137) (32 32 -136)" + "id" "1660" + "plane" "(-32 32 -97) (32 32 -97) (32 32 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.375" "vaxis" "[0 0 -1 40.1133] 0.125" @@ -2368,8 +2721,8 @@ entity } side { - "id" "1683" - "plane" "(32 32 -137) (-32 32 -137) (-32 -32 -137)" + "id" "1659" + "plane" "(32 32 -97) (-32 32 -97) (-32 -32 -97)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 -16] 0.375" "vaxis" "[0 -1 0 0] 0.375" @@ -2379,8 +2732,8 @@ entity } side { - "id" "1682" - "plane" "(32 32 -136) (32 32 -137) (32 -32 -137)" + "id" "1658" + "plane" "(32 32 -96) (32 32 -97) (32 -32 -97)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 -0.00501251] 0.375" "vaxis" "[0 0 -1 40.1133] 0.125" @@ -2390,8 +2743,8 @@ entity } side { - "id" "1681" - "plane" "(32 -32 -136) (-32 -32 -136) (-32 32 -136)" + "id" "1657" + "plane" "(32 -32 -96) (-32 -32 -96) (-32 32 -96)" "material" "BEE2/BLACK_FADE" "uaxis" "[1 0 0 32] 0.25" "vaxis" "[0 -1 0 32] 0.25" @@ -2401,8 +2754,8 @@ entity } side { - "id" "1680" - "plane" "(-32 -32 -136) (-32 -32 -137) (-32 32 -137)" + "id" "1656" + "plane" "(-32 -32 -96) (-32 -32 -97) (-32 32 -97)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.375" "vaxis" "[0 0 -1 56] 0.125" @@ -2419,11 +2772,11 @@ entity } solid { - "id" "5271" + "id" "5279" side { - "id" "1733" - "plane" "(32 -32 -120) (32 -32 -121) (-32 -32 -121)" + "id" "1721" + "plane" "(32 -32 -104) (32 -32 -105) (-32 -32 -105)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 -16] 0.375" "vaxis" "[0 0 -1 40.1133] 0.125" @@ -2433,8 +2786,8 @@ entity } side { - "id" "1732" - "plane" "(-32 32 -121) (32 32 -121) (32 32 -120)" + "id" "1720" + "plane" "(-32 32 -105) (32 32 -105) (32 32 -104)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.375" "vaxis" "[0 0 -1 40.1133] 0.125" @@ -2444,8 +2797,8 @@ entity } side { - "id" "1731" - "plane" "(32 32 -121) (-32 32 -121) (-32 -32 -121)" + "id" "1719" + "plane" "(32 32 -105) (-32 32 -105) (-32 -32 -105)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 -16] 0.375" "vaxis" "[0 -1 0 0] 0.375" @@ -2455,8 +2808,8 @@ entity } side { - "id" "1730" - "plane" "(32 32 -120) (32 32 -121) (32 -32 -121)" + "id" "1718" + "plane" "(32 32 -104) (32 32 -105) (32 -32 -105)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 -0.00501251] 0.375" "vaxis" "[0 0 -1 40.1133] 0.125" @@ -2466,8 +2819,8 @@ entity } side { - "id" "1729" - "plane" "(32 -32 -120) (-32 -32 -120) (-32 32 -120)" + "id" "1717" + "plane" "(32 -32 -104) (-32 -32 -104) (-32 32 -104)" "material" "BEE2/BLACK_FADE" "uaxis" "[1 0 0 32] 0.25" "vaxis" "[0 -1 0 32] 0.25" @@ -2477,8 +2830,8 @@ entity } side { - "id" "1728" - "plane" "(-32 -32 -120) (-32 -32 -121) (-32 32 -121)" + "id" "1716" + "plane" "(-32 -32 -104) (-32 -32 -105) (-32 32 -105)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.375" "vaxis" "[0 0 -1 56] 0.125" @@ -2495,11 +2848,11 @@ entity } solid { - "id" "5288" + "id" "5275" side { - "id" "1697" - "plane" "(32 -32 -128) (32 -32 -129) (-32 -32 -129)" + "id" "1703" + "plane" "(32 -32 -112) (32 -32 -113) (-32 -32 -113)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 -16] 0.375" "vaxis" "[0 0 -1 40.1133] 0.125" @@ -2509,8 +2862,8 @@ entity } side { - "id" "1696" - "plane" "(-32 32 -129) (32 32 -129) (32 32 -128)" + "id" "1702" + "plane" "(-32 32 -113) (32 32 -113) (32 32 -112)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.375" "vaxis" "[0 0 -1 40.1133] 0.125" @@ -2520,8 +2873,8 @@ entity } side { - "id" "1695" - "plane" "(32 32 -129) (-32 32 -129) (-32 -32 -129)" + "id" "1701" + "plane" "(32 32 -113) (-32 32 -113) (-32 -32 -113)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 -16] 0.375" "vaxis" "[0 -1 0 0] 0.375" @@ -2531,8 +2884,8 @@ entity } side { - "id" "1694" - "plane" "(32 32 -128) (32 32 -129) (32 -32 -129)" + "id" "1700" + "plane" "(32 32 -112) (32 32 -113) (32 -32 -113)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 -0.00501251] 0.375" "vaxis" "[0 0 -1 40.1133] 0.125" @@ -2542,8 +2895,8 @@ entity } side { - "id" "1693" - "plane" "(32 -32 -128) (-32 -32 -128) (-32 32 -128)" + "id" "1699" + "plane" "(32 -32 -112) (-32 -32 -112) (-32 32 -112)" "material" "BEE2/BLACK_FADE" "uaxis" "[1 0 0 32] 0.25" "vaxis" "[0 -1 0 32] 0.25" @@ -2553,118 +2906,11 @@ entity } side { - "id" "1692" - "plane" "(-32 -32 -128) (-32 -32 -129) (-32 32 -129)" + "id" "1698" + "plane" "(-32 -32 -112) (-32 -32 -113) (-32 32 -113)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.375" - "vaxis" "[0 0 -1 56] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "comments" "This makes the cube fade in slowly, hiding the sudden spawn." - "logicalpos" "[357.819 4694.3]" - } -} -entity -{ - "id" "31" - "classname" "trigger_multiple" - "filtername" "cube_dropper_box_filter" - "origin" "0 0 -67" - "solid" "6" - "spawnflags" "8" - "StartDisabled" "0" - "targetname" "close_trig" - "wait" "1" - connections - { - "OnEndTouchAll" "cube_templateForceSpawn0.7-1" - "OnEndTouchAll" "box*AddOutputOnUser1 !self:Dissolve::0:10-1" - "OnEndTouchAll" "close_trigDisable0.2-1" - "OnEndTouchAll" "cube_dropper_modelSetAnimationitem_dropper_close0.1-1" - "OnEndTouchAll" "cube_dropper_box_reenter_clipEnable0-1" - "OnEndTouchAll" "close_trigDisable0.2-1" - "OnEndTouchAll" "cube_fadeEnable0.7-1" - "OnEndTouchAll" "cube_dropper_modelSetDefaultAnimationitem_dropper_idle_closed0.2-1" - } - solid - { - "id" "32" - side - { - "id" "138" - "plane" "(32 32 -180) (-32 32 -180) (-32 -32 -180)" - "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -0.00390625] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "137" - "plane" "(32 -32 46) (-32 -32 46) (-32 32 46)" - "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -0.00390625] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "136" - "plane" "(-32 32 -180) (32 32 -180) (32 32 46)" - "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0.00390625] 0.25" - "vaxis" "[0 0 -1 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "135" - "plane" "(32 -32 -180) (-32 -32 -180) (-32 -32 46)" - "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0.00390625] 0.25" - "vaxis" "[0 0 -1 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "134" - "plane" "(-32 -32 -180) (-32 32 -180) (-32 32 46)" - "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "133" - "plane" "(32 32 -180) (32 -32 -180) (32 -32 46)" - "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 8] 0.25" + "uaxis" "[0 1 0 0] 0.375" + "vaxis" "[0 0 -1 56] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2676,333 +2922,348 @@ entity "visgroupautoshown" "1" } } - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[3642.46 1395.5]" - } -} -entity -{ - "id" "841" - "classname" "func_detail" - "disableX360" "0" - "maxcpulevel" "0" - "maxgpulevel" "0" - "mincpulevel" "0" - "mingpulevel" "0" solid { - "id" "18" + "id" "5284" side { - "id" "144" - "plane" "(-24 -32 -168) (24 -32 -168) (24 -24 -168)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "id" "1685" + "plane" "(32 -32 -136) (32 -32 -137) (-32 -32 -137)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.375" + "vaxis" "[0 0 -1 40.1133] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "143" - "plane" "(24 -24 44) (24 -24 -168) (24 -32 -168)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 -16.3721] 0.275641" + "id" "1684" + "plane" "(-32 32 -137) (32 32 -137) (32 32 -136)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.375" + "vaxis" "[0 0 -1 40.1133] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "142" - "plane" "(-24 -24 44) (-24 -24 -168) (24 -24 -168)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 -16.3721] 0.275641" + "id" "1683" + "plane" "(32 32 -137) (-32 32 -137) (-32 -32 -137)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.375" + "vaxis" "[0 -1 0 0] 0.375" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "141" - "plane" "(24 -32 44) (24 -32 -168) (-24 -32 -168)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 -16.3721] 0.275641" + "id" "1682" + "plane" "(32 32 -136) (32 32 -137) (32 -32 -137)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -0.00501251] 0.375" + "vaxis" "[0 0 -1 40.1133] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "140" - "plane" "(-24 -32 44) (-24 -32 -168) (-24 -24 -168)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[0 0 -1 -16.3721] 0.275641" + "id" "1681" + "plane" "(32 -32 -136) (-32 -32 -136) (-32 32 -136)" + "material" "BEE2/BLACK_FADE" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "139" - "plane" "(-24 -24 44) (24 -24 44) (24 -32 44)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 -16] 0.25" + "id" "1680" + "plane" "(-32 -32 -136) (-32 -32 -137) (-32 32 -137)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.375" + "vaxis" "[0 0 -1 56] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 180 0" + "color" "220 30 220" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "19" + "id" "5271" side { - "id" "150" - "plane" "(-32 -24 -168) (-24 -24 -168) (-24 24 -168)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 -1 0 16] 0.25" + "id" "1733" + "plane" "(32 -32 -120) (32 -32 -121) (-32 -32 -121)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.375" + "vaxis" "[0 0 -1 40.1133] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "149" - "plane" "(-24 24 44) (-24 24 -168) (-24 -24 -168)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[0 0 -1 -16.3721] 0.275641" + "id" "1732" + "plane" "(-32 32 -121) (32 32 -121) (32 32 -120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.375" + "vaxis" "[0 0 -1 40.1133] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "148" - "plane" "(-32 24 44) (-32 24 -168) (-24 24 -168)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 0 -1 -16.3721] 0.275641" + "id" "1731" + "plane" "(32 32 -121) (-32 32 -121) (-32 -32 -121)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.375" + "vaxis" "[0 -1 0 0] 0.375" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "147" - "plane" "(-24 -24 44) (-24 -24 -168) (-32 -24 -168)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 0 -1 -16.3721] 0.275641" + "id" "1730" + "plane" "(32 32 -120) (32 32 -121) (32 -32 -121)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -0.00501251] 0.375" + "vaxis" "[0 0 -1 40.1133] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "146" - "plane" "(-32 -24 44) (-32 -24 -168) (-32 24 -168)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[0 0 -1 -16.3721] 0.275641" + "id" "1729" + "plane" "(32 -32 -120) (-32 -32 -120) (-32 32 -120)" + "material" "BEE2/BLACK_FADE" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "145" - "plane" "(-32 24 44) (-24 24 44) (-24 -24 44)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[1 0 0 16] 0.25" - "vaxis" "[0 -1 0 16] 0.25" + "id" "1728" + "plane" "(-32 -32 -120) (-32 -32 -121) (-32 32 -121)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.375" + "vaxis" "[0 0 -1 56] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 180 0" + "color" "220 30 220" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "20" + "id" "5288" side { - "id" "156" - "plane" "(-24 24 -168) (24 24 -168) (24 32 -168)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 16] 0.25" + "id" "1697" + "plane" "(32 -32 -128) (32 -32 -129) (-32 -32 -129)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.375" + "vaxis" "[0 0 -1 40.1133] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "155" - "plane" "(24 32 44) (24 32 -168) (24 24 -168)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[0 0 -1 -16.3721] 0.275641" + "id" "1696" + "plane" "(-32 32 -129) (32 32 -129) (32 32 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.375" + "vaxis" "[0 0 -1 40.1133] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "154" - "plane" "(-24 32 44) (-24 32 -168) (24 32 -168)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 -16.3721] 0.275641" + "id" "1695" + "plane" "(32 32 -129) (-32 32 -129) (-32 -32 -129)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.375" + "vaxis" "[0 -1 0 0] 0.375" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "153" - "plane" "(24 24 44) (24 24 -168) (-24 24 -168)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 -16.3721] 0.275641" + "id" "1694" + "plane" "(32 32 -128) (32 32 -129) (32 -32 -129)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -0.00501251] 0.375" + "vaxis" "[0 0 -1 40.1133] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "152" - "plane" "(-24 24 44) (-24 24 -168) (-24 32 -168)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[0 0 -1 -16.3721] 0.275641" + "id" "1693" + "plane" "(32 -32 -128) (-32 -32 -128) (-32 32 -128)" + "material" "BEE2/BLACK_FADE" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "151" - "plane" "(-24 32 44) (24 32 44) (24 24 44)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 16] 0.25" + "id" "1692" + "plane" "(-32 -32 -128) (-32 -32 -129) (-32 32 -129)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.375" + "vaxis" "[0 0 -1 56] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 180 0" + "color" "220 30 220" "visgroupshown" "1" "visgroupautoshown" "1" } } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "comments" "This makes the cube fade in slowly, hiding the sudden spawn." + "logicalpos" "[357.819 4694.3]" + } +} +entity +{ + "id" "31" + "classname" "trigger_multiple" + "filtername" "cube_dropper_box_filter" + "origin" "0 0 -67" + "solid" "6" + "spawnflags" "8" + "StartDisabled" "0" + "targetname" "close_trig" + "wait" "1" + connections + { + "OnEndTouchAll" "cube_templateForceSpawn0.7-1" + "OnEndTouchAll" "box*AddOutputOnUser1 !self:Dissolve::0:10-1" + "OnEndTouchAll" "close_trigDisable0-1" + "OnEndTouchAll" "cube_dropper_modelSetAnimationitem_dropper_close0.1-1" + "OnEndTouchAll" "cube_dropper_box_reenter_clipEnable0-1" + "OnEndTouchAll" "cube_fadeEnable0.7-1" + "OnEndTouchAll" "cube_dropper_modelSetDefaultAnimationitem_dropper_idle_closed0.2-1" + "OnEndTouchAll" "close_trigDisable0.2-1" + "OnEndTouchAll" "spawn_manFireUser20.2-1" + } solid { - "id" "21" + "id" "32" side { - "id" "162" - "plane" "(24 -24 -168) (32 -24 -168) (32 24 -168)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 16] 0.25" + "id" "138" + "plane" "(32 32 -180) (-32 32 -180) (-32 -32 -180)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -0.00390625] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "161" - "plane" "(32 24 44) (32 24 -168) (32 -24 -168)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[0 0 -1 -16.3721] 0.275641" + "id" "137" + "plane" "(32 -32 46) (-32 -32 46) (-32 32 46)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -0.00390625] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "160" - "plane" "(24 24 44) (24 24 -168) (32 24 -168)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 -16.3721] 0.275641" + "id" "136" + "plane" "(-32 32 -180) (32 32 -180) (32 32 46)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 0.00390625] 0.25" + "vaxis" "[0 0 -1 8] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "159" - "plane" "(32 -24 44) (32 -24 -168) (24 -24 -168)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 0 -1 -16.3721] 0.275641" + "id" "135" + "plane" "(32 -32 -180) (-32 -32 -180) (-32 -32 46)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 0.00390625] 0.25" + "vaxis" "[0 0 -1 8] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "158" - "plane" "(24 -24 44) (24 -24 -168) (24 24 -168)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[0 1 0 -16] 0.25" - "vaxis" "[0 0 -1 -16.3721] 0.275641" + "id" "134" + "plane" "(-32 -32 -180) (-32 32 -180) (-32 32 46)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 8] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "157" - "plane" "(24 24 44) (32 24 44) (32 -24 44)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[1 0 0 -16] 0.25" - "vaxis" "[0 -1 0 16] 0.25" + "id" "133" + "plane" "(32 32 -180) (32 -32 -180) (32 -32 46)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 8] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 180 0" + "color" "220 30 220" "visgroupshown" "1" "visgroupautoshown" "1" } } editor { - "color" "0 180 0" + "color" "220 30 220" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "logicalpos" "[3642.46 1395.5]" } } cameras diff --git a/packages/styles/overgrown/resources/instances/over/items/laser/catcher_center.vmf b/packages/styles/overgrown/resources/instances/over/items/laser/catcher_center.vmf index 2d745f8217..0af6ab05f7 100644 --- a/packages/styles/overgrown/resources/instances/over/items/laser/catcher_center.vmf +++ b/packages/styles/overgrown/resources/instances/over/items/laser/catcher_center.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "7552" - "mapversion" "49" + "editorbuild" "9672" + "mapversion" "52" "formatversion" "100" "prefab" "0" } @@ -14,13 +14,13 @@ viewsettings "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "8" + "nGridSpacing" "4" "bShow3DGrid" "0" } world { "id" "1" - "mapversion" "49" + "mapversion" "52" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -33,7 +33,7 @@ world side { "id" "273" - "plane" "(-32 32 -96) (32 32 -96) (32 -32 -96)" + "plane" "(-32 -32 -96) (-32 32 -96) (32 32 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -44,7 +44,7 @@ world side { "id" "274" - "plane" "(-32 -32 -97) (32 -32 -97) (32 32 -97)" + "plane" "(-32 32 -100) (-32 -32 -100) (32 -32 -100)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -55,7 +55,7 @@ world side { "id" "275" - "plane" "(-32 32 -96) (-32 -32 -96) (-32 -32 -97)" + "plane" "(-32 -32 -100) (-32 32 -100) (-32 32 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -66,7 +66,7 @@ world side { "id" "276" - "plane" "(32 32 -97) (32 -32 -97) (32 -32 -96)" + "plane" "(32 32 -100) (32 -32 -100) (32 -32 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -77,7 +77,7 @@ world side { "id" "277" - "plane" "(32 32 -96) (-32 32 -96) (-32 32 -97)" + "plane" "(-32 32 -100) (32 32 -100) (32 32 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -88,7 +88,7 @@ world side { "id" "278" - "plane" "(32 -32 -97) (-32 -32 -97) (-32 -32 -96)" + "plane" "(32 -32 -100) (-32 -32 -100) (-32 -32 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -109,7 +109,7 @@ world side { "id" "213" - "plane" "(-33 32 -96) (-33 -32 -96) (-32 -32 -96)" + "plane" "(-36 -32 -96) (-32 -32 -96) (-32 32 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -120,7 +120,7 @@ world side { "id" "214" - "plane" "(-33 -32 -96) (-33 32 -96) (-33 32 -65)" + "plane" "(-36 -32 -96) (-36 32 -96) (-36 32 -68)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -142,7 +142,7 @@ world side { "id" "216" - "plane" "(-33 32 -96) (-32 32 -96) (-32 32 -64)" + "plane" "(-36 32 -96) (-32 32 -96) (-32 32 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -153,7 +153,7 @@ world side { "id" "217" - "plane" "(-32 -32 -96) (-33 -32 -96) (-33 -32 -65)" + "plane" "(-32 -32 -96) (-36 -32 -96) (-36 -32 -68)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -164,7 +164,7 @@ world side { "id" "218" - "plane" "(-33 -32 -65) (-33 32 -65) (-32 32 -64)" + "plane" "(-36 32 -68) (-32 32 -64) (-32 -32 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -185,7 +185,7 @@ world side { "id" "248" - "plane" "(33 -32 -96) (33 32 -96) (32 32 -96)" + "plane" "(32 -32 -96) (36 -32 -96) (36 32 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -196,7 +196,7 @@ world side { "id" "247" - "plane" "(33 32 -96) (33 -32 -96) (33 -32 -65)" + "plane" "(36 32 -96) (36 -32 -96) (36 -32 -68)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -218,7 +218,7 @@ world side { "id" "245" - "plane" "(33 -32 -96) (32 -32 -96) (32 -32 -64)" + "plane" "(36 -32 -96) (32 -32 -96) (32 -32 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -229,7 +229,7 @@ world side { "id" "244" - "plane" "(32 32 -96) (33 32 -96) (33 32 -65)" + "plane" "(32 32 -96) (36 32 -96) (36 32 -68)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -240,7 +240,7 @@ world side { "id" "243" - "plane" "(33 32 -65) (33 -32 -65) (32 -32 -64)" + "plane" "(36 -32 -68) (32 -32 -64) (32 32 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -261,7 +261,7 @@ world side { "id" "254" - "plane" "(-32 -33 -96) (32 -33 -96) (32 -32 -96)" + "plane" "(32 -36 -96) (32 -32 -96) (-32 -32 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -272,7 +272,7 @@ world side { "id" "253" - "plane" "(32 -33 -96) (-32 -33 -96) (-32 -33 -65)" + "plane" "(-32 -36 -68) (32 -36 -68) (32 -36 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -283,7 +283,7 @@ world side { "id" "252" - "plane" "(-32 -32 -96) (32 -32 -96) (32 -32 -64)" + "plane" "(32 -32 -64) (-32 -32 -64) (-32 -32 -96)" "material" "METAL/METALWALL_BTS_006A" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -294,7 +294,7 @@ world side { "id" "251" - "plane" "(-32 -33 -96) (-32 -32 -96) (-32 -32 -64)" + "plane" "(-32 -32 -64) (-32 -36 -68) (-32 -36 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -305,7 +305,7 @@ world side { "id" "250" - "plane" "(32 -32 -96) (32 -33 -96) (32 -33 -65)" + "plane" "(32 -36 -68) (32 -32 -64) (32 -32 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -316,7 +316,7 @@ world side { "id" "249" - "plane" "(32 -33 -65) (-32 -33 -65) (-32 -32 -64)" + "plane" "(32 -32 -64) (32 -36 -68) (-32 -36 -68)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -337,7 +337,7 @@ world side { "id" "260" - "plane" "(32 33 -96) (-32 33 -96) (-32 32 -96)" + "plane" "(-32 36 -96) (-32 32 -96) (32 32 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -348,7 +348,7 @@ world side { "id" "259" - "plane" "(-32 33 -96) (32 33 -96) (32 33 -65)" + "plane" "(-32 36 -96) (32 36 -96) (32 36 -68)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -370,7 +370,7 @@ world side { "id" "257" - "plane" "(32 33 -96) (32 32 -96) (32 32 -64)" + "plane" "(32 36 -96) (32 32 -96) (32 32 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -381,7 +381,7 @@ world side { "id" "256" - "plane" "(-32 32 -96) (-32 33 -96) (-32 33 -65)" + "plane" "(-32 32 -96) (-32 36 -96) (-32 36 -68)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -392,7 +392,7 @@ world side { "id" "255" - "plane" "(-32 33 -65) (32 33 -65) (32 32 -64)" + "plane" "(32 36 -68) (32 32 -64) (-32 32 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -421,13 +421,15 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "96" + "angles" "0 0 0" "spawnflags" "0" "style" "0" "origin" "0 0 -48" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 1500]" @@ -439,12 +441,6 @@ entity "classname" "func_noportal_volume" "origin" "0 0 -79.5" "spawnflags" "0" - "targetname" "output" - connections - { - "OnUser1" "proxyProxyRelay0-1" - "OnUser2" "proxyProxyRelay0-1" - } solid { "id" "243" @@ -540,7 +536,9 @@ entity "rendercolor" "255 255 255" "skin" "2" "SkinType" "1" - "targetname" "laser_catcher" + "solid" "6" + "src_fix_skins" "1" + "targetname" "catcher" connections { "OnUnpowered" "!selfSkin20-1" @@ -557,20 +555,6 @@ entity "logicalpos" "[0 1500]" } } -entity -{ - "id" "137" - "classname" "func_instance_io_proxy" - "targetname" "proxy" - "origin" "0 0 -32" - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 9000]" - } -} cameras { "activecamera" "-1" diff --git a/packages/styles/overgrown/resources/instances/over/items/laser/emitter_center.vmf b/packages/styles/overgrown/resources/instances/over/items/laser/emitter_center.vmf index d3460dc7e4..d9bfa486fe 100644 --- a/packages/styles/overgrown/resources/instances/over/items/laser/emitter_center.vmf +++ b/packages/styles/overgrown/resources/instances/over/items/laser/emitter_center.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8973" - "mapversion" "103" + "editorbuild" "9672" + "mapversion" "104" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "103" + "mapversion" "104" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -510,7 +510,7 @@ entity "rendercolor" "255 255 255" "skin" "1" "solid" "6" - "StartState" "$start_disabled" + "StartState" "!$start_enabled" "targetname" "laser" "origin" "0 0 -80" editor diff --git a/packages/styles/overgrown/resources/instances/over/items/laser/emitter_center_floor.vmf b/packages/styles/overgrown/resources/instances/over/items/laser/emitter_center_floor.vmf index a3acd750f8..27c085a161 100644 --- a/packages/styles/overgrown/resources/instances/over/items/laser/emitter_center_floor.vmf +++ b/packages/styles/overgrown/resources/instances/over/items/laser/emitter_center_floor.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8973" - "mapversion" "115" + "editorbuild" "9672" + "mapversion" "116" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "115" + "mapversion" "116" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -1298,7 +1298,7 @@ entity "rendercolor" "255 255 255" "skin" "1" "solid" "6" - "StartState" "$start_disabled" + "StartState" "!$start_enabled" "targetname" "laser" "origin" "0 0 -112" editor diff --git a/packages/styles/overgrown/resources/instances/over/items/laser/emitter_offset.vmf b/packages/styles/overgrown/resources/instances/over/items/laser/emitter_offset.vmf index 591803a844..c4fc732078 100644 --- a/packages/styles/overgrown/resources/instances/over/items/laser/emitter_offset.vmf +++ b/packages/styles/overgrown/resources/instances/over/items/laser/emitter_offset.vmf @@ -2,7 +2,7 @@ versioninfo { "editorversion" "400" "editorbuild" "9672" - "mapversion" "111" + "mapversion" "112" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "111" + "mapversion" "112" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -624,7 +624,7 @@ entity "rendercolor" "255 255 255" "skin" "1" "solid" "6" - "StartState" "$start_disabled" + "StartState" "!$start_enabled" "targetname" "laser" "origin" "0.0999985 0 -80" editor diff --git a/packages/styles/overgrown/resources/instances/over/items/laser/emitter_offset_floor.vmf b/packages/styles/overgrown/resources/instances/over/items/laser/emitter_offset_floor.vmf index a527a0dfa9..b73539cfaa 100644 --- a/packages/styles/overgrown/resources/instances/over/items/laser/emitter_offset_floor.vmf +++ b/packages/styles/overgrown/resources/instances/over/items/laser/emitter_offset_floor.vmf @@ -2,7 +2,7 @@ versioninfo { "editorversion" "400" "editorbuild" "9672" - "mapversion" "133" + "mapversion" "134" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "133" + "mapversion" "134" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -1269,7 +1269,7 @@ entity "rendercolor" "255 255 255" "skin" "1" "solid" "6" - "StartState" "$start_disabled" + "StartState" "!$start_enabled" "targetname" "laser" "origin" "2.5 0 -112" editor diff --git a/packages/styles/overgrown/resources/instances/over/items/stairs.vmf b/packages/styles/overgrown/resources/instances/over/items/stairs.vmf index 1c66e6001f..9e1eb038ca 100644 --- a/packages/styles/overgrown/resources/instances/over/items/stairs.vmf +++ b/packages/styles/overgrown/resources/instances/over/items/stairs.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "7378" - "mapversion" "89" + "editorbuild" "9672" + "mapversion" "90" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "89" + "mapversion" "90" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -28,6 +28,82 @@ world "maxpropscreenwidth" "-1" "skyname" "sky_day01_01" solid + { + "id" "2923" + side + { + "id" "653" + "plane" "(-60 -60 -64) (188 -60 -64) (188 -60 -128)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 24] 0.266667" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "652" + "plane" "(-60 60 -128) (188 60 -128) (188 60 -64)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 24] 0.266667" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "651" + "plane" "(-60 -60 -64) (-60 -60 -128) (-60 60 -128)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 0 1 -24] 0.266667" + "vaxis" "[0 1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "650" + "plane" "(188 60 -64) (188 60 -128) (188 -60 -128)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 0 1 -24] 0.266667" + "vaxis" "[0 1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "649" + "plane" "(188 -60 -64) (-60 -60 -64) (-60 60 -64)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "648" + "plane" "(188 60 -128) (-60 60 -128) (-60 -60 -128)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 132 165" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid { "id" "2633" side @@ -235,493 +311,6 @@ world } } entity -{ - "id" "2665" - "classname" "func_brush" - "disableflashlight" "0" - "disablereceiveshadows" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "drawinfastreflection" "0" - "InputFilter" "0" - "invert_exclusion" "0" - "origin" "64 0 -66.5" - "renderamt" "255" - "rendercolor" "255 255 255" - "renderfx" "0" - "rendermode" "0" - "shadowdepthnocache" "0" - "solidbsp" "0" - "Solidity" "0" - "spawnflags" "2" - "StartDisabled" "0" - "vrad_brush_cast_shadows" "0" - solid - { - "id" "2646" - side - { - "id" "557" - "plane" "(-64 64 -68) (-64 -64 -68) (192 -64 -68)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "556" - "plane" "(192 -64 -65) (-64 -64 -65) (-64 64 -65)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[0 1 0 0] 0.234375" - "vaxis" "[1 0 0 55.741] 0.242187" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "555" - "plane" "(-64 -64 -68) (-64 64 -68) (-64 64 -65)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "554" - "plane" "(192 -64 -68) (-64 -64 -68) (-64 -64 -65)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "553" - "plane" "(192 64 -68) (192 -64 -68) (192 -64 -65)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "552" - "plane" "(-64 64 -68) (192 64 -68) (192 64 -65)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[-1 0 0 0] 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" "2842" - side - { - "id" "617" - "plane" "(188 -59 -128) (188 -60 -128) (188 -60 -68)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -8] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "616" - "plane" "(-60 -60 -128) (188 -60 -128) (188 -59 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "615" - "plane" "(-60 -59 -68) (188 -59 -68) (188 -60 -68)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "614" - "plane" "(-60 -59 -128) (188 -59 -128) (188 -59 -68)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -8] 0.25" - "vaxis" "[1 0 0 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "613" - "plane" "(188 -60 -68) (188 -60 -128) (-60 -60 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 8] 0.25" - "vaxis" "[1 0 0 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "612" - "plane" "(-60 -60 -128) (-60 -59 -128) (-60 -59 -68)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 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" "2843" - side - { - "id" "623" - "plane" "(192 60 -128) (192 -60 -128) (192 -60 -127)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -8] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "622" - "plane" "(-60 -60 -128) (192 -60 -128) (192 60 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "621" - "plane" "(-60 60 -127) (192 60 -127) (192 -60 -127)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "620" - "plane" "(-60 60 -128) (192 60 -128) (192 60 -127)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -8] 0.25" - "vaxis" "[1 0 0 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "619" - "plane" "(192 -60 -127) (192 -60 -128) (-60 -60 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 8] 0.25" - "vaxis" "[1 0 0 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "618" - "plane" "(-60 -60 -128) (-60 60 -128) (-60 60 -127)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 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" "2844" - side - { - "id" "629" - "plane" "(188 60 -128) (188 59 -128) (188 59 -68)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -8] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "628" - "plane" "(-60 59 -128) (188 59 -128) (188 60 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "627" - "plane" "(-60 60 -68) (188 60 -68) (188 59 -68)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "626" - "plane" "(-60 60 -128) (188 60 -128) (188 60 -68)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -8] 0.25" - "vaxis" "[1 0 0 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "625" - "plane" "(188 59 -68) (188 59 -128) (-60 59 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 8] 0.25" - "vaxis" "[1 0 0 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "624" - "plane" "(-60 59 -128) (-60 60 -128) (-60 60 -68)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 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" "2703" - side - { - "id" "611" - "plane" "(-60 60 -128) (-60 60 -68) (-60 -60 -68)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 8] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "610" - "plane" "(-59 -60 -128) (-59 -60 -68) (-59 60 -68)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -8] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "609" - "plane" "(-60 60 -128) (-60 -60 -128) (-59 -60 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 36] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "608" - "plane" "(-59 60 -68) (-59 -60 -68) (-60 -60 -68)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 36] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "607" - "plane" "(-60 60 -68) (-60 60 -128) (-59 60 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -8] 0.25" - "vaxis" "[1 0 0 36] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "606" - "plane" "(-59 -60 -68) (-59 -60 -128) (-60 -60 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 8] 0.25" - "vaxis" "[1 0 0 36] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "2699" - side - { - "id" "599" - "plane" "(187 60 -128) (187 60 -68) (187 -60 -68)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 8] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "598" - "plane" "(188 -60 -128) (188 -60 -68) (188 60 -68)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -8] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "597" - "plane" "(187 60 -128) (187 -60 -128) (188 -60 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "596" - "plane" "(188 60 -68) (188 -60 -68) (187 -60 -68)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "595" - "plane" "(187 60 -68) (187 60 -128) (188 60 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -8] 0.25" - "vaxis" "[1 0 0 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "594" - "plane" "(188 -60 -68) (188 -60 -128) (187 -60 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 8] 0.25" - "vaxis" "[1 0 0 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "comments" "Stop from falling inside, and block portals on the exterior if gel falls into the holes." - "logicalpos" "[0 500]" - } -} -entity { "id" "1994" "classname" "prop_dynamic" @@ -742,6 +331,7 @@ entity "mindxlevel" "0" "model" "models/bee2/props_overgrown/arm_stairs.mdl" "PerformanceMode" "0" + "physdamagescale" "1.0" "pressuredelay" "0" "RandomAnimation" "0" "renderamt" "255" @@ -781,6 +371,7 @@ entity { "id" "1185" "classname" "math_counter" + "angles" "0 0 0" "max" "$connectioncount" "targetname" "counter" connections @@ -791,7 +382,7 @@ entity "origin" "48 -16 -48" editor { - "color" "220 30 220" + "color" "0 100 250" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 0]" @@ -801,6 +392,7 @@ entity { "id" "1187" "classname" "logic_branch" + "angles" "0 0 0" "InitialValue" "$start_deployed" "targetname" "branch_toggle" connections @@ -813,7 +405,7 @@ entity "origin" "48 16 -48" editor { - "color" "220 30 220" + "color" "0 100 250" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 0]" @@ -823,6 +415,7 @@ entity { "id" "15" "classname" "func_door" + "angles" "0 0 0" "disablereceiveshadows" "0" "disableshadows" "0" "dmg" "0" @@ -955,6 +548,7 @@ entity { "id" "712" "classname" "logic_auto" + "angles" "0 0 0" "spawnflags" "1" connections { @@ -964,7 +558,7 @@ entity "origin" "64 0 -48" editor { - "color" "220 30 220" + "color" "0 100 250" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 0]" diff --git a/packages/styles/overgrown/resources/instances/over/items/track/bottom.vmf b/packages/styles/overgrown/resources/instances/over/items/track/bottom.vmf index 29bde741a6..5d4cdff5af 100644 --- a/packages/styles/overgrown/resources/instances/over/items/track/bottom.vmf +++ b/packages/styles/overgrown/resources/instances/over/items/track/bottom.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "7335" - "mapversion" "27" + "editorbuild" "9672" + "mapversion" "29" "formatversion" "100" "prefab" "0" } @@ -14,13 +14,13 @@ viewsettings "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "4" + "nGridSpacing" "8" "bShow3DGrid" "0" } world { "id" "1" - "mapversion" "27" + "mapversion" "29" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -29,460 +29,472 @@ world "skyname" "sky_black_nofog" solid { - "id" "107" + "id" "92" side { - "id" "245" - "plane" "(-24 24 -92) (-24 24 -72) (64 24 -72)" - "material" "METAL/BLACK_WALL_METAL_005C" - "uaxis" "[1 0 0 659] 0.25" - "vaxis" "[0 0 -1 -243.235] 0.25" + "id" "172" + "plane" "(64 32 -72) (64 -32 -72) (64 -32 -64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "244" - "plane" "(64 24 -72) (-24 24 -72) (-32 32 -64)" - "material" "METAL/BLACK_WALL_METAL_005C" - "uaxis" "[1 0 0 659] 0.25" - "vaxis" "[0 -0.707107 -0.707107 -91] 0.25" + "id" "171" + "plane" "(-32 -32 -72) (-32 32 -72) (-32 32 -64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "243" - "plane" "(64 24 -92) (64 24 -72) (64 32 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "170" + "plane" "(-32 32 -72) (64 32 -72) (64 32 -64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "242" - "plane" "(-24 24 -72) (-24 24 -92) (-32 32 -92)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "169" + "plane" "(64 -32 -72) (-32 -32 -72) (-32 -32 -64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "241" - "plane" "(-32 32 -92) (-24 24 -92) (64 24 -92)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "168" + "plane" "(-32 -32 -72) (64 -32 -72) (64 32 -72)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "240" - "plane" "(64 32 -92) (64 32 -64) (-32 32 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "167" + "plane" "(-32 32 -64) (64 32 -64) (64 -32 -64)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 224 185" + "color" "0 255 100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "110" + "id" "3" side { - "id" "251" - "plane" "(64 -24 -92) (64 -24 -72) (-24 -24 -72)" - "material" "METAL/BLACK_WALL_METAL_005C" - "uaxis" "[1 0 0 659] 0.25" - "vaxis" "[0 0 1 61.2355] 0.25" + "id" "42" + "plane" "(-32 -32 -96) (64 -32 -96) (64 32 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "250" - "plane" "(-24 -24 -72) (64 -24 -72) (64 -32 -64)" + "id" "41" + "plane" "(-32 32 -92) (64 32 -92) (64 -32 -92)" "material" "METAL/BLACK_WALL_METAL_005C" - "uaxis" "[1 0 0 659] 0.25" - "vaxis" "[0 -0.707107 0.707107 90.5096] 0.25" + "uaxis" "[0 -1 0 256] 0.25" + "vaxis" "[1 0 0 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "249" - "plane" "(64 -24 -72) (64 -24 -92) (64 -32 -92)" + "id" "40" + "plane" "(64 32 -96) (64 -32 -96) (64 -32 -92)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "248" - "plane" "(-24 -24 -92) (-24 -24 -72) (-32 -32 -64)" + "id" "39" + "plane" "(64 -32 -96) (-32 -32 -96) (-32 -32 -92)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "247" - "plane" "(64 -24 -92) (-24 -24 -92) (-32 -32 -92)" + "id" "38" + "plane" "(-32 32 -96) (64 32 -96) (64 32 -92)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "246" - "plane" "(-32 -32 -92) (-32 -32 -64) (64 -32 -64)" + "id" "37" + "plane" "(-32 -32 -96) (-32 32 -96) (-32 32 -92)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 163 224" + "color" "0 225 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "113" + "id" "7" side { - "id" "257" - "plane" "(-24 -24 -92) (-24 -24 -72) (-24 24 -72)" - "material" "METAL/BLACK_WALL_METAL_005C" - "uaxis" "[0 1 0 658.745] 0.25" - "vaxis" "[0 0 -1 -242.745] 0.25" + "id" "66" + "plane" "(64 32 -92) (64 -32 -92) (64 -32 -64)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "256" - "plane" "(-24 24 -72) (-24 -24 -72) (-32 -32 -64)" - "material" "METAL/BLACK_WALL_METAL_005C" - "uaxis" "[0 1 0 658.745] 0.25" - "vaxis" "[0.707107 0 -0.707107 -90.5097] 0.25" + "id" "65" + "plane" "(-32 -32 -92) (-32 32 -92) (-32 32 -64)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "255" - "plane" "(-24 -24 -72) (-24 -24 -92) (-32 -32 -92)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "64" + "plane" "(-32 32 -92) (64 32 -92) (64 32 -64)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "254" - "plane" "(-24 24 -92) (-24 24 -72) (-32 32 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "63" + "plane" "(64 -32 -92) (-32 -32 -92) (-32 -32 -64)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "253" - "plane" "(-32 -32 -92) (-24 -24 -92) (-24 24 -92)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "62" + "plane" "(-32 -32 -92) (64 -32 -92) (64 32 -92)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "252" - "plane" "(-32 32 -92) (-32 32 -64) (-32 -32 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "61" + "plane" "(-32 32 -64) (64 32 -64) (64 -32 -64)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 188 149" + "color" "0 255 100" "visgroupshown" "1" "visgroupautoshown" "1" } } +} +entity +{ + "id" "120" + "classname" "func_detail" solid { - "id" "92" + "id" "107" side { - "id" "172" - "plane" "(64 32 -72) (64 -32 -72) (64 -32 -64)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "id" "263" + "plane" "(-24 24 -92) (-24 24 -72) (64 24 -72)" + "material" "METAL/BLACK_WALL_METAL_005C" + "uaxis" "[1 0 0 659] 0.25" + "vaxis" "[0 0 -1 -243.235] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "171" - "plane" "(-32 -32 -72) (-32 32 -72) (-32 32 -64)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "id" "262" + "plane" "(64 24 -72) (-24 24 -72) (-32 32 -64)" + "material" "METAL/BLACK_WALL_METAL_005C" + "uaxis" "[1 0 0 659] 0.25" + "vaxis" "[0 -0.707107 -0.707107 -91] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "170" - "plane" "(-32 32 -72) (64 32 -72) (64 32 -64)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" + "id" "261" + "plane" "(64 24 -92) (64 24 -72) (64 32 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "169" - "plane" "(64 -32 -72) (-32 -32 -72) (-32 -32 -64)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" + "id" "260" + "plane" "(-24 24 -72) (-24 24 -92) (-32 32 -92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "168" - "plane" "(-32 -32 -72) (64 -32 -72) (64 32 -72)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" + "id" "259" + "plane" "(-32 32 -92) (-24 24 -92) (64 24 -92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "167" - "plane" "(-32 32 -64) (64 32 -64) (64 -32 -64)" - "material" "TOOLS/TOOLSHINT" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" + "id" "258" + "plane" "(64 32 -92) (64 32 -64) (-32 32 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 100" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "3" + "id" "113" side { - "id" "42" - "plane" "(-24 -24 -96) (64 -24 -96) (64 24 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "269" + "plane" "(-24 -24 -92) (-24 -24 -72) (-24 24 -72)" + "material" "METAL/BLACK_WALL_METAL_005C" + "uaxis" "[0 1 0 658.745] 0.25" + "vaxis" "[0 0 -1 -242.745] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "41" - "plane" "(-24 24 -92) (64 24 -92) (64 -24 -92)" + "id" "268" + "plane" "(-24 24 -72) (-24 -24 -72) (-32 -32 -64)" "material" "METAL/BLACK_WALL_METAL_005C" - "uaxis" "[0 -1 0 256] 0.25" - "vaxis" "[1 0 0 -256] 0.25" + "uaxis" "[0 1 0 658.745] 0.25" + "vaxis" "[0.707107 0 -0.707107 -90.5097] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "40" - "plane" "(64 24 -96) (64 -24 -96) (64 -24 -92)" + "id" "267" + "plane" "(-24 -24 -72) (-24 -24 -92) (-32 -32 -92)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "39" - "plane" "(64 -24 -96) (-24 -24 -96) (-24 -24 -92)" + "id" "266" + "plane" "(-24 24 -92) (-24 24 -72) (-32 32 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "38" - "plane" "(-24 24 -96) (64 24 -96) (64 24 -92)" + "id" "265" + "plane" "(-32 -32 -92) (-24 -24 -92) (-24 24 -92)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "37" - "plane" "(-24 -24 -96) (-24 24 -96) (-24 24 -92)" + "id" "264" + "plane" "(-32 32 -92) (-32 32 -64) (-32 -32 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 225 222" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "7" + "id" "110" side { - "id" "66" - "plane" "(64 32 -92) (64 -32 -92) (64 -32 -64)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "id" "275" + "plane" "(64 -24 -92) (64 -24 -72) (-24 -24 -72)" + "material" "METAL/BLACK_WALL_METAL_005C" + "uaxis" "[1 0 0 659] 0.25" + "vaxis" "[0 0 1 61.2355] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "65" - "plane" "(-32 -32 -92) (-32 32 -92) (-32 32 -64)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "id" "274" + "plane" "(-24 -24 -72) (64 -24 -72) (64 -32 -64)" + "material" "METAL/BLACK_WALL_METAL_005C" + "uaxis" "[1 0 0 659] 0.25" + "vaxis" "[0 -0.707107 0.707107 90.5096] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "64" - "plane" "(-32 32 -92) (64 32 -92) (64 32 -64)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" + "id" "273" + "plane" "(64 -24 -72) (64 -24 -92) (64 -32 -92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "63" - "plane" "(64 -32 -92) (-32 -32 -92) (-32 -32 -64)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" + "id" "272" + "plane" "(-24 -24 -92) (-24 -24 -72) (-32 -32 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "62" - "plane" "(-32 -32 -92) (64 -32 -92) (64 32 -92)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" + "id" "271" + "plane" "(64 -24 -92) (-24 -24 -92) (-32 -32 -92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "61" - "plane" "(-32 32 -64) (64 32 -64) (64 -32 -64)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" + "id" "270" + "plane" "(-32 -32 -92) (-32 -32 -64) (64 -32 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 255 100" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } } entity { diff --git a/packages/styles/overgrown/resources/instances/over/items/track/single.vmf b/packages/styles/overgrown/resources/instances/over/items/track/single.vmf index 58013b5bab..a0148865aa 100644 --- a/packages/styles/overgrown/resources/instances/over/items/track/single.vmf +++ b/packages/styles/overgrown/resources/instances/over/items/track/single.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8419" - "mapversion" "26" + "editorbuild" "9672" + "mapversion" "28" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "26" + "mapversion" "28" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" diff --git a/packages/styles/overgrown/resources/instances/over/items/track/top.vmf b/packages/styles/overgrown/resources/instances/over/items/track/top.vmf index dab914f11c..0efa875f60 100644 --- a/packages/styles/overgrown/resources/instances/over/items/track/top.vmf +++ b/packages/styles/overgrown/resources/instances/over/items/track/top.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "7335" - "mapversion" "15" + "editorbuild" "9672" + "mapversion" "16" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "15" + "mapversion" "16" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -45,7 +45,7 @@ world { "id" "224" "plane" "(32 -32 -92) (-64 -32 -92) (-64 32 -92)" - "material" "METAL/BLACK_WALL_METAL_002C" + "material" "METAL/BLACK_WALL_METAL_005C" "uaxis" "[1 0 0 256] 0.25" "vaxis" "[0 -1 0 -256] 0.25" "rotation" "0" @@ -103,156 +103,162 @@ world "visgroupautoshown" "1" } } - solid + hidden { - "id" "67" - side - { - "id" "183" - "plane" "(32 32 -72) (32 -32 -72) (32 -32 -64)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "182" - "plane" "(-64 -32 -72) (-64 32 -72) (-64 32 -64)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "181" - "plane" "(-64 32 -72) (32 32 -72) (32 32 -64)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side + solid { - "id" "180" - "plane" "(32 -32 -72) (-64 -32 -72) (-64 -32 -64)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "179" - "plane" "(-64 -32 -72) (32 -32 -72) (32 32 -72)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "178" - "plane" "(-64 32 -64) (32 32 -64) (32 -32 -64)" - "material" "TOOLS/TOOLSHINT" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 147 208" - "visgroupshown" "1" - "visgroupautoshown" "1" + "id" "67" + side + { + "id" "183" + "plane" "(32 32 -72) (32 -32 -72) (32 -32 -64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "182" + "plane" "(-64 -32 -72) (-64 32 -72) (-64 32 -64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "181" + "plane" "(-64 32 -72) (32 32 -72) (32 32 -64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "180" + "plane" "(32 -32 -72) (-64 -32 -72) (-64 -32 -64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "179" + "plane" "(-64 -32 -72) (32 -32 -72) (32 32 -72)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "178" + "plane" "(-64 32 -64) (32 32 -64) (32 -32 -64)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 147 208" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } } - solid + hidden { - "id" "9" - side - { - "id" "72" - "plane" "(32 32 -64) (32 32 -92) (32 -32 -92)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "71" - "plane" "(-64 -32 -64) (-64 -32 -92) (-64 32 -92)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "70" - "plane" "(-64 32 -64) (-64 32 -92) (32 32 -92)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "69" - "plane" "(32 -32 -64) (32 -32 -92) (-64 -32 -92)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "68" - "plane" "(-64 32 -92) (-64 -32 -92) (32 -32 -92)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "67" - "plane" "(-64 -32 -64) (-64 32 -64) (32 32 -64)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 147 208" - "visgroupshown" "1" - "visgroupautoshown" "1" + solid + { + "id" "9" + side + { + "id" "72" + "plane" "(32 32 -64) (32 32 -92) (32 -32 -92)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "71" + "plane" "(-64 -32 -64) (-64 -32 -92) (-64 32 -92)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "70" + "plane" "(-64 32 -64) (-64 32 -92) (32 32 -92)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "69" + "plane" "(32 -32 -64) (32 -32 -92) (-64 -32 -92)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "68" + "plane" "(-64 32 -92) (-64 -32 -92) (32 -32 -92)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "67" + "plane" "(-64 -32 -64) (-64 32 -64) (32 32 -64)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 147 208" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } } } @@ -525,3 +531,7 @@ cordons { "active" "0" } +quickhide +{ + "count" "2" +} diff --git a/packages/styles/overgrown/resources/models/BEE2/props_clean/frame_testchamber/frame_concave.dx90.vtx b/packages/styles/overgrown/resources/models/BEE2/props_clean/frame_testchamber/frame_concave.dx90.vtx new file mode 100644 index 0000000000..3d354b35df Binary files /dev/null and b/packages/styles/overgrown/resources/models/BEE2/props_clean/frame_testchamber/frame_concave.dx90.vtx differ diff --git a/packages/styles/overgrown/resources/models/BEE2/props_clean/frame_testchamber/frame_concave.mdl b/packages/styles/overgrown/resources/models/BEE2/props_clean/frame_testchamber/frame_concave.mdl new file mode 100644 index 0000000000..d34fea9838 Binary files /dev/null and b/packages/styles/overgrown/resources/models/BEE2/props_clean/frame_testchamber/frame_concave.mdl differ diff --git a/packages/styles/overgrown/resources/models/BEE2/props_clean/frame_testchamber/frame_concave.phy b/packages/styles/overgrown/resources/models/BEE2/props_clean/frame_testchamber/frame_concave.phy new file mode 100644 index 0000000000..d469a8c62f Binary files /dev/null and b/packages/styles/overgrown/resources/models/BEE2/props_clean/frame_testchamber/frame_concave.phy differ diff --git a/packages/styles/overgrown/resources/models/BEE2/props_clean/frame_testchamber/frame_concave.vvd b/packages/styles/overgrown/resources/models/BEE2/props_clean/frame_testchamber/frame_concave.vvd new file mode 100644 index 0000000000..451361c4af Binary files /dev/null and b/packages/styles/overgrown/resources/models/BEE2/props_clean/frame_testchamber/frame_concave.vvd differ diff --git a/packages/styles/overgrown/resources/models/BEE2/props_clean/frame_testchamber/frame_convex.dx90.vtx b/packages/styles/overgrown/resources/models/BEE2/props_clean/frame_testchamber/frame_convex.dx90.vtx new file mode 100644 index 0000000000..4c396d45a0 Binary files /dev/null and b/packages/styles/overgrown/resources/models/BEE2/props_clean/frame_testchamber/frame_convex.dx90.vtx differ diff --git a/packages/styles/overgrown/resources/models/BEE2/props_clean/frame_testchamber/frame_convex.mdl b/packages/styles/overgrown/resources/models/BEE2/props_clean/frame_testchamber/frame_convex.mdl new file mode 100644 index 0000000000..abf767a79e Binary files /dev/null and b/packages/styles/overgrown/resources/models/BEE2/props_clean/frame_testchamber/frame_convex.mdl differ diff --git a/packages/styles/overgrown/resources/models/BEE2/props_clean/frame_testchamber/frame_convex.phy b/packages/styles/overgrown/resources/models/BEE2/props_clean/frame_testchamber/frame_convex.phy new file mode 100644 index 0000000000..4d9e5a5771 Binary files /dev/null and b/packages/styles/overgrown/resources/models/BEE2/props_clean/frame_testchamber/frame_convex.phy differ diff --git a/packages/styles/overgrown/resources/models/BEE2/props_clean/frame_testchamber/frame_convex.vvd b/packages/styles/overgrown/resources/models/BEE2/props_clean/frame_testchamber/frame_convex.vvd new file mode 100644 index 0000000000..78800827eb Binary files /dev/null and b/packages/styles/overgrown/resources/models/BEE2/props_clean/frame_testchamber/frame_convex.vvd differ diff --git a/packages/styles/overgrown/styles/over/vbsp_config.cfg b/packages/styles/overgrown/styles/over/vbsp_config.cfg index 5249e1dfd7..f191d5b807 100644 --- a/packages/styles/overgrown/styles/over/vbsp_config.cfg +++ b/packages/styles/overgrown/styles/over/vbsp_config.cfg @@ -105,8 +105,6 @@ "Edge" "anim_wp/framework/squarebeams_rusty_01" "panel_edge" "anim_wp/framework/squarebeams_rusty_01" - "Grating" "metal/underground_metalgrate002a" - "Glass" "BEE2/overgrown/glass" "Goo" "nature/toxicslime_a1_intro5" } "Antlines" @@ -161,7 +159,6 @@ "remove_exit_signs" "0" "generate_tidelines" "1" "goo_mist" "1" - "grating_template" "BEE2_GRATING_TEMPLATE_SQUARE" "StaticPan" "instances/BEE2/over/static_panel/" } diff --git a/packages/styles/overgrown/voice/announcer_apoc.cfg b/packages/styles/overgrown/voice/announcer_apoc.cfg index 918bbe2d82..b8e3bf0ae1 100644 --- a/packages/styles/overgrown/voice/announcer_apoc.cfg +++ b/packages/styles/overgrown/voice/announcer_apoc.cfg @@ -247,8 +247,7 @@ "Trans" "Announcer: Before re-entering a relaxation vault at the conclusion of testing, please take a moment to write down the results of your test. An Aperture Science Reintegration Associate will revive you for an interview when society has been rebuilt." "Choreo" "npc/announcer/prehub20.vcd" } - - + "Line" { "Name" "Evacuation Preparation" @@ -256,8 +255,16 @@ "Trans" "Announcer: Please prepare for emergency evacuation." "Choreo" "npc/announcer/evacuationmisc01.vcd" } - - "Line_SP" + + "Line" + { + "Name" "Restrooms Unlocked" + "ID" "EXIT_RESTROOMS" + "Trans" "Announcer: By completing all test courses, you have achieved Level C security clearance. You may now access all testing courses and three of Aperture Science's 176 restrooms." + "Choreo" "npc/announcer/mp_hub_return07.vcd" + } + + "Line" { "Name" "Technical Difficulties" "ID" "EXIT_GEN_TECH_DIFF" @@ -265,8 +272,8 @@ "Trans" "Announcer: Because of the technical difficulties we are currently experiencing, your test environment is unsupervised." "Choreo" "ann_apoc/exit_tech_diff.vmf" } - - "Line_COOP" + + "Line" { "Name" "Personality Construct Voltage" "ID" "EXIT_GEN_VOLTAGE" @@ -274,7 +281,7 @@ "Choreo" "npc/announcer/testchamber03.vcd" } } - + "Quote" { "Priority" "1" @@ -314,13 +321,6 @@ "Trans" "Announcer: Good. This completes the gymnastic portion of your mandatory physical and mental wellness exercise." "Choreo" "npc/announcer/openingexercise04.vcd" } - "Line_COOP" - { - "Name" "Restrooms Unlocked" - "ID" "EXIT_BLUEGEL" - "Trans" "Announcer: By completing all test courses, you have achieved Level C security clearance. You may now access all testing courses and three of Aperture Science's 176 restrooms." - "Choreo" "npc/announcer/mp_hub_return07.vcd" - } } "Quote" @@ -335,7 +335,7 @@ "Trans" "Announcer: Good. If you feel that a lethal military android has not respected your rights as detailed in the Laws of Robotics, please note it on your self-reporting form. A future Aperture Science Entitlement Associate will initiate the appropriate grievance-filing paperwork." "Choreo" "npc/announcer/testchamber06.vcd" } - "Line_SP" + "Line" { "Name" "Animal Kings" "ID" "EXIT_ANIMAL_KING" diff --git a/packages/styles/p1_style/info.txt b/packages/styles/p1_style/info.txt index 2e83bc7294..da729f896b 100644 --- a/packages/styles/p1_style/info.txt +++ b/packages/styles/p1_style/info.txt @@ -39,17 +39,36 @@ "Skybox" "BEE2_PORTAL_1" } } - + "CorridorGroup" { "ID" "BEE2_PORTAL_1" + + "Options" + { + "DOORLESS" + { + "Name" "Open Entrance" + "var" "$doorless" + "default" "0" + + "Description" "Allow singleplayer entrances to generate without a door or fizzler. This matches the original game, but may break some puzzles by allowing portal surfaces in the corridor to be used." + "Values" + { + "1" "Yes" + "0" "No" + } + } + } + "sp_entry" { "instance" "instances/BEE2/p1/elevator_sp/entrance_corridor_1.vmf" "name" "Left Turn" "authors" "Carl Kenner" "image" "BEE2_PORTAL_1:corr/p1/sp_entry/1.jpg" - "DefaultIndex" "1" + + "Option" "DOORLESS" "Fixups" { "$fizz_size" "160" @@ -68,7 +87,8 @@ "" "Some panels are missing, showing a vactube which contains a cube, contains gel, or is shattered depending on the contents of the chamber." } "image" "BEE2_PORTAL_1:corr/p1/sp_entry/2.jpg" - "DefaultIndex" "2" + + "Option" "DOORLESS" "Fixups" { "$fizz_size" "256" @@ -81,7 +101,8 @@ "name" "Left Small" "authors" "Carl Kenner" "image" "BEE2_PORTAL_1:corr/p1/sp_entry/6.jpg" - "DefaultIndex" "6" + + "Option" "DOORLESS" "Fixups" { "$fizz_size" "128" @@ -95,7 +116,8 @@ "authors" "TeamSpen210" "Description" "A wide open corridor with portalable walls." "image" "BEE2_PORTAL_1:corr/p1/sp_entry/7.jpg" - "DefaultIndex" "7" + + "Option" "DOORLESS" "Fixups" { "$fizz_size" "128" @@ -113,7 +135,6 @@ "image" "BEE2_PORTAL_1:corr/p1/sp_entry/down_piston_2.jpg" "image" "BEE2_PORTAL_1:corr/p1/sp_entry/down_piston_3.jpg" "image" "BEE2_PORTAL_1:corr/p1/sp_entry/down_piston_4.jpg" - "DefaultIndex" "1" "Fixups" { "$door_type" "remove" @@ -127,7 +148,6 @@ "authors" "Carl Kenner" "Description" "A straight corridor to the exit with non-portalable walls." "image" "BEE2_PORTAL_1:corr/p1/sp_exit/1.jpg" - "DefaultIndex" "1" "Fixups" { "$door_type" "norm" @@ -142,7 +162,6 @@ "authors" "Carl Kenner" "Description" "A straight corridor to the exit with portalable walls." "image" "BEE2_PORTAL_1:corr/p1/sp_exit/2.jpg" - "DefaultIndex" "2" "Fixups" { "$door_type" "norm" @@ -157,7 +176,6 @@ "authors" "Carl Kenner" "Description" "A right turn corridor with non-portalable walls." "image" "BEE2_PORTAL_1:corr/p1/sp_exit/3.jpg" - "DefaultIndex" "3" "Fixups" { "$door_type" "norm" @@ -176,7 +194,6 @@ "" "Changes the exit to a vertical door instead of a standard door." } "image" "BEE2_PORTAL_1:corr/p1/sp_exit/4.jpg" - "DefaultIndex" "4" "config" "exit_door/corr_vert_door.cfg" "Fixups" { @@ -194,11 +211,10 @@ "image" "corr/p1/coop_entry/horiz_2.jpg" "instance" "instances/BEE2/p1/elevator_coop/spawn_room.vmf" - "DefaultIndex" "1" "Fixups" { "$atlas_pos" "-144 -32 312" - "$atlas_ang" "1 0 0" + "$atlas_ang" "0 0 0" } } @@ -209,7 +225,6 @@ "authors" "TeamSpen210" "Description" "A straight corridor to the exit, with a short set of stairs in the middle." "image" "BEE2_PORTAL_1:corr/p1/coop/1.jpg" - "DefaultIndex" "1" "Fixups" { "$door_type" "norm" @@ -225,7 +240,6 @@ "authors" "TeamSpen210" "Description" "A large open corridor with portalable walls." "image" "BEE2_PORTAL_1:corr/p1/coop/2.jpg" - "DefaultIndex" "2" "Fixups" { "$door_type" "norm" @@ -246,7 +260,6 @@ "" "If turrets are in the map, they retract." } "image" "BEE2_PORTAL_1:corr/p1/coop/3.jpg" - "DefaultIndex" "3" "Fixups" { "$door_type" "norm" @@ -262,7 +275,6 @@ "authors" "TeamSpen210" "Description" "A non-portalable corridor which turns off to the left." "image" "BEE2_PORTAL_1:corr/p1/coop/4.jpg" - "DefaultIndex" "4" "Fixups" { "$door_type" "norm" @@ -337,15 +349,6 @@ "Style" "BEE2_PORTAL_1" } -"StyleVar" - { - "ID" "P1_DOORLESS_ENTRY" - "Name" "Open P1 Entrance" - "Description" "Allow Portal 1 singleplayer entrances to generate without a door or fizzler. This matches the original game, but may break some puzzles by allowing portal surfaces in the corridor to be used." - "Enabled" "1" - "Style" "BEE2_PORTAL_1" - } - "Overrides" { "StyleVar" @@ -712,7 +715,11 @@ { "Styles" { - "BEE2_PORTAL_1" "glass" + "BEE2_PORTAL_1" + { + "Base" "BEE2_CLEAN" + "Config" "glass.cfg" + } } } } diff --git a/packages/styles/p1_style/items/angled_pan/vbsp_config.cfg b/packages/styles/p1_style/items/angled_pan/vbsp_config.cfg index 1c0cc42eb0..5c89412286 100644 --- a/packages/styles/p1_style/items/angled_pan/vbsp_config.cfg +++ b/packages/styles/p1_style/items/angled_pan/vbsp_config.cfg @@ -28,7 +28,7 @@ } "ElseSwitch" { - "Flag" "instvar" + "Test" "instvar" "$animation ramp_30_deg_open" { @@ -137,7 +137,7 @@ "Changeinstance" "instances/BEE2/p1/items/angled_pan/common.vmf" "Switch" { - "Flag" "instvar" + "Test" "instvar" "$animation ramp_30_deg_open" { "AddOverlay" "instances/BEE2/p1/items/angled_pan/rotate_30.vmf" diff --git a/packages/styles/p1_style/items/coop_exit/editoritems.vmf b/packages/styles/p1_style/items/coop_exit/editoritems.vmf new file mode 100644 index 0000000000..d8a98d5301 --- /dev/null +++ b/packages/styles/p1_style/items/coop_exit/editoritems.vmf @@ -0,0 +1,135 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "2" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "16" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "2" + "classname" "worldspawn" + "skyname" "sky_black_nofog" + "maxpropscreenwidth" "-1" + "detailvbsp" "detail.vbsp" + "detailmaterial" "detail/detailsprites" + "maxblobcount" "250" +} +entity +{ + "id" "9" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grating" "0" + "coll_oob" "1" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "2" + side + { + "id" "1" + "plane" "(-124 -124 -68) (124 -124 -68) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2" + "plane" "(-124 124 -572) (124 124 -572) (124 124 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3" + "plane" "(-124 -124 -68) (-124 -124 -572) (-124 124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4" + "plane" "(124 124 -68) (124 124 -572) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5" + "plane" "(124 -124 -68) (-124 -124 -68) (-124 124 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6" + "plane" "(124 124 -572) (-124 124 -572) (-124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/styles/p1_style/items/coop_exit/vbsp_config.cfg b/packages/styles/p1_style/items/coop_exit/vbsp_config.cfg index 1cc2ac9cb0..6812dbf3a0 100644 --- a/packages/styles/p1_style/items/coop_exit/vbsp_config.cfg +++ b/packages/styles/p1_style/items/coop_exit/vbsp_config.cfg @@ -35,7 +35,8 @@ "StyleVar" "RestartOnExit" "Result" { - "addOverlay" "instances/BEE2/clean/elevator_coop/preview_mode.vmf" + // Trigger restart when @map_won is triggered. + "addoverlay" "instances/BEE2/logic/exit_preview.vmf" } } "Condition" diff --git a/packages/styles/p1_style/items/coop_spawn/vbsp_config.cfg b/packages/styles/p1_style/items/coop_spawn/vbsp_config.cfg index ed35e809db..5896137f33 100644 --- a/packages/styles/p1_style/items/coop_spawn/vbsp_config.cfg +++ b/packages/styles/p1_style/items/coop_spawn/vbsp_config.cfg @@ -10,7 +10,7 @@ "ATLAS_SpawnPoint" { "Origin" "$atlas_pos" - "Facing" "$atlas_ang" + "Angles" "$atlas_ang" } } "Condition" diff --git a/packages/styles/p1_style/items/entry_door/vbsp_config.cfg b/packages/styles/p1_style/items/entry_door/vbsp_config.cfg index 14771c8a7f..8e94395721 100644 --- a/packages/styles/p1_style/items/entry_door/vbsp_config.cfg +++ b/packages/styles/p1_style/items/entry_door/vbsp_config.cfg @@ -8,7 +8,7 @@ "InstVar" "$door_type = norm" "Condition" { - "stylevar" "P1_DOORLESS_ENTRY" + "InstVar" "$doorless = 1" "Result" { "AddOverlay" "" @@ -21,10 +21,7 @@ // add the fizzler, except in Tag "Condition" { - "NOT" - { - "game" "aptag" - } + "!game" "aptag" "Result" { "AddOverlay" diff --git a/packages/styles/p1_style/items/exit_door/editoritems.vmf b/packages/styles/p1_style/items/exit_door/editoritems.vmf new file mode 100644 index 0000000000..d8a98d5301 --- /dev/null +++ b/packages/styles/p1_style/items/exit_door/editoritems.vmf @@ -0,0 +1,135 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "2" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "16" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "2" + "classname" "worldspawn" + "skyname" "sky_black_nofog" + "maxpropscreenwidth" "-1" + "detailvbsp" "detail.vbsp" + "detailmaterial" "detail/detailsprites" + "maxblobcount" "250" +} +entity +{ + "id" "9" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grating" "0" + "coll_oob" "1" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "2" + side + { + "id" "1" + "plane" "(-124 -124 -68) (124 -124 -68) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2" + "plane" "(-124 124 -572) (124 124 -572) (124 124 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3" + "plane" "(-124 -124 -68) (-124 -124 -572) (-124 124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4" + "plane" "(124 124 -68) (124 124 -572) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5" + "plane" "(124 -124 -68) (-124 -124 -68) (-124 124 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6" + "plane" "(124 124 -572) (-124 124 -572) (-124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/styles/p1_style/items/exit_door/vbsp_config.cfg b/packages/styles/p1_style/items/exit_door/vbsp_config.cfg index f07b1080c8..6a93e07a6a 100644 --- a/packages/styles/p1_style/items/exit_door/vbsp_config.cfg +++ b/packages/styles/p1_style/items/exit_door/vbsp_config.cfg @@ -13,8 +13,8 @@ "Type" "AND" "InvertVar" "$start_open" "SpawnFire" "dynamic" - "Enable_Cmd" "exit_door,Open,,0.00,-1" - "Disable_Cmd" "exit_door,Close,,0.00,-1" + "Enable_Cmd" "exit_door,TurnOn,,0.00,-1" + "Disable_Cmd" "exit_door,TurnOff,,0.00,-1" } } } @@ -84,12 +84,8 @@ "StyleVar" "RestartOnExit" "Result" { - "addOverlay" - { - "File" "instances/BEE2/clean/elevator_sp/exit_door_preview.vmf" - // TODO: remove this rotation once the clean corridors have also been reoriented - "rotation" "270 180 0" - } + // Trigger restart when @map_won is triggered. + "addoverlay" "instances/BEE2/logic/exit_preview.vmf" } } } diff --git a/packages/styles/p1_style/items/glass.cfg b/packages/styles/p1_style/items/glass.cfg new file mode 100644 index 0000000000..4e4c1f24ef --- /dev/null +++ b/packages/styles/p1_style/items/glass.cfg @@ -0,0 +1,217 @@ +"BarrierFrames" + { + "BEE2_MODERN_P1_PLASTICWALL" + { + // Straight points along the X axis, attached to the Z plane. + "Horiz" + { + "Straight" + { + // This must be 64 units long in the template. + "template" "BEE2_BARRIER_PLASTICWALL_FRAME_HORIZ" + } + + "CornerSize" "4" + + "ConcaveCorner" + { + "template" "BEE2_BARRIER_PLASTICWALL_FRAME_CONCAVE_CORNER_WALL" + } + } + "vert" + { + "Straight" + { + "template" "BEE2_BARRIER_PLASTICWALL_FRAME_VERT" + } + + "CornerSize" "0" + + "ConcaveCorner" + { + "template" "BEE2_BARRIER_PLASTICWALL_FRAME_CONCAVE_CORNER_WALL" + } + } + "flat" + { + "Straight" + { + "template" "BEE2_BARRIER_PLASTICWALL_FRAME_HORIZ" + } + + // Deliberately overlap these, VBSP will pick one or the other. + "CornerSize" "0" + + "ConcaveCorner" + { + "template" "BEE2_BARRIER_PLASTICWALL_FRAME_CONCAVE_CORNER_FLAT" + } + } + } + } + + +"Barriers" + { + "VALVE_GLASS" + { + "Frame" "BEE2_MODERN_P1_PLASTICWALL" + + "mergeable" "1" // Instance name does not matter. + "error_tex" "glass" + + // If we don't have P1 frames, try these others. + "HoleVariant" "THIN_MODERN_P1_PLASTICWALL" + "HoleVariant" "THIN_MODERN_PETI" + "HoleVariant" "THIN_MODERN_TESTCHAMBER" + + "Floorbeam" + { + // Special P1 feature. + "template" "BEE2_P1_GLASS_BEAM" + "min" "32" + "max" "128" + "step" "8" + } + + "Brush" + { + "offset" "3" + "thickness" "2" + "carve_by_hole" "1" + + // Glass is horizontal on walls, but diagonal on floor/ceiling. + "template" "BEE2_P1_GLASS_TEMPLATE" + } + "Brush" + { + "offset" "0" + "thickness" "4" + "carve_by_hole" "1" + + "material" "BEE2/glass_player_clip" + "side_mat" "BEE2/glass_player_clip" + "StaticPlayerClip" "1" + } + "Brush" // Cut visleafs along the plane, to help with depth sorting. + { + "offset" "0" + "thickness" "4" + "carve_by_hole" "0" + "world" "1" + + "material" "tools/toolshint" + "side_mat" "tools/toolsskip" + } + "Collide" + { + "offset" "0" + "thickness" "4" + "carve_by_hole" "1" + "contents" "glass" + } + } + "VALVE_GRATING" + { + "Frame" "BEE2_MODERN_P1_PLASTICWALL" + + "mergeable" "1" // Instance name does not matter. + "error_tex" "grating" + + "HoleVariant" "THIN_MODERN_P1_PLASTICWALL" + "HoleVariant" "THIN_MODERN_PETI" + "HoleVariant" "THIN_MODERN_TESTCHAMBER" + + "Brush" + { + "offset" "3" + "thickness" "2" + "carve_by_hole" "1" + + "template" "BEE2_P1_GRATING_TEMPLATE" + + "keys" + { + "classname" "func_brush" + "renderfx" "14" // Constant Glow + "solidity" "1" // Never Solid + } + } + "Brush" + { + "offset" "0" + "thickness" "8" + "carve_by_hole" "1" + + "material" "BEE2/grate_player_clip" + "side_mat" "BEE2/grate_player_clip" + "StaticPlayerClip" "1" + } + "Brush" + { + "offset" "3" + "thickness" "2" + "carve_by_hole" "1" + + "material" "tools/toolstrigger" + "tooltexture" "1" + + "keys" + { + "classname" "func_clip_vphysics" + "filtername" "@grating_filter" + } + } + "Brush" // Cut visleafs along the plane, to help with depth sorting. + { + "offset" "0" + "thickness" "8" + "carve_by_hole" "0" + "world" "1" + + "material" "tools/toolshint" + "side_mat" "tools/toolsskip" + } + "Collide" + { + "offset" "0" + "thickness" "8" + "carve_by_hole" "1" + "contents" "grating" + } + } + } + + +"Conditions" + { + "Condition" + { + "instance" "[glass_128]" + "Condition" + { + "instvar" "$barrier_type glass" + "Result" + { + "Has" "glass" + } + } + "Condition" + { + "instvar" "$barrier_type grating" + "Result" + { + "Has" "grating" + } + } + } + "Condition" + { + "Priority" "200" + "instance" "[glass_128]" + "Result" + { + "ChangeInstance" "" + } + } + } diff --git a/packages/styles/p1_style/items/glass/editoritems.txt b/packages/styles/p1_style/items/glass/editoritems.txt deleted file mode 100644 index 4d81522f3c..0000000000 --- a/packages/styles/p1_style/items/glass/editoritems.txt +++ /dev/null @@ -1,125 +0,0 @@ -"Item" -{ - "Type" "ITEM_BARRIER" - "ItemClass" "ItemBarrier" - "Editor" - { - "SubTypeProperty" "BarrierType" - "SubType" - { - "Name" "PORTAL2_PuzzleEditor_Item_glass" - "Model" - { - "ModelName" "glass_handle.3ds" - } - "Palette" - { - "Tooltip" "PORTAL2_PuzzleEditor_Palette_glass" - "Image" "palette/glass.png" - "Position" "1 3 0" - } - } - "SubType" - { - "Name" "PORTAL2_PuzzleEditor_Item_grating" - "Model" - { - "ModelName" "glass_handle.3ds" - } - "Palette" - { - "Tooltip" "PORTAL2_PuzzleEditor_Palette_grating" - "Image" "palette/grating.png" - "Position" "1 3 0" - } - } - "MovementHandle" "HANDLE_4_DIRECTIONS" - "CanAnchorOnBarriers" "1" - "OccupiesVoxel" "0" - } - "Properties" - { - "BarrierType" - { - "DefaultValue" "0" - "Index" "0" - } - } - "Exporting" - { - "Instances" - { - "0" - { - "Name" "instances/BEE2/p1/items/barrier/segment.vmf" - "EntityCount" "1" - "BrushCount" "2" - "BrushSideCount" "12" - } - "1" - { - "Name" "instances/BEE2/p1/items/barrier/left_corner.vmf" - "EntityCount" "0" - } - "2" - { - "Name" "instances/BEE2/p1/items/barrier/left_straight.vmf" - "EntityCount" "0" - } - "3" - { - "Name" "instances/BEE2/p1/items/barrier/left_short.vmf" - "EntityCount" "0" - } - "4" - { - "Name" "instances/BEE2/p1/items/barrier/left_convex_corner.vmf" - "EntityCount" "0" - } - "5" - { - "Name" "instances/BEE2/p1/items/barrier/right_corner.vmf" - "EntityCount" "0" - } - "6" - { - "Name" "instances/BEE2/p1/items/barrier/right_straight.vmf" - "EntityCount" "0" - } - "7" - { - "Name" "instances/BEE2/p1/items/barrier/right_short.vmf" - "EntityCount" "0" - } - "8" - { - "Name" "instances/BEE2/p1/items/barrier/right_convex_corner.vmf" - "EntityCount" "0" - } - } - "TargetName" "g" - "Offset" "64 64 64" - } -} - -"Item" -{ - "Type" "ITEM_BARRIER_EXTENT" - "ItemClass" "ItemBarrierExtent" - "Editor" - { - "SubType" - { - "Model" - { - "ModelName" "handle_grip_trianglesmall.3ds" - "TextureName" "buttonweight.png" - } - } - "MovementHandle" "HANDLE_NONE" - "OccupiesVoxel" "0" - "Deletable" "0" - "Copyable" "0" - "PseudoHandle" "1" - } -} \ No newline at end of file diff --git a/packages/styles/p1_style/items/glass/properties.txt b/packages/styles/p1_style/items/glass/properties.txt deleted file mode 100644 index 0e880ec662..0000000000 --- a/packages/styles/p1_style/items/glass/properties.txt +++ /dev/null @@ -1,13 +0,0 @@ -"Properties" - { - "Authors" "Valve" - "Tags" "Portal 2;Geometry" - "infoURL" "https:/\/developer.valvesoftware.com/wiki/Portal_2_Puzzle_Maker/Glass" - "all_icon" "palette/grouped/glass_grating.vtf" - "all_name" "[[VALVE_GEOMETRY]] GLASS / GRATING" - "Icon" - { - "0" "VALVE_GEOMETRY:clean/glass.png" - "1" "VALVE_GEOMETRY:clean/grating.png" - } - } diff --git a/packages/styles/p1_style/items/glass/vbsp_config.cfg b/packages/styles/p1_style/items/glass/vbsp_config.cfg deleted file mode 100644 index 02403fb3b8..0000000000 --- a/packages/styles/p1_style/items/glass/vbsp_config.cfg +++ /dev/null @@ -1,36 +0,0 @@ -"Conditions" - { - "Condition" - { - "instance" "[glass_frames]" - "Not" - { - "instance" "[glass_convex_corner]" // I don't think these even appear in maps anyway! - } - "Direction" - { - "direction" "up" - "from_dir" "+y" - "allow_inverse" "1" // Also allow down - } - "Result" - { - "Condition" - { - "InstFlag" "right" - "Result" - { - "rename" "instances/BEE2/p1/items/barrier/vert_right.vmf" - } - } - "Condition" - { - "instFlag" "left" - "Result" - { - "rename" "instances/BEE2/p1/items/barrier/vert_left.vmf" - } - } - } - } - } \ No newline at end of file diff --git a/packages/styles/p1_style/items/glass_pan/vbsp_config.cfg b/packages/styles/p1_style/items/glass_pan/vbsp_config.cfg index 512b757294..8e624bbfae 100644 --- a/packages/styles/p1_style/items/glass_pan/vbsp_config.cfg +++ b/packages/styles/p1_style/items/glass_pan/vbsp_config.cfg @@ -18,7 +18,7 @@ } "Switch" { - "Flag" "instvar" + "Test" "instvar" "$animation ramp_30_deg_open" { "AddOverlay" "instances/BEE2/p1/items/angled_pan/rotate_30.vmf" @@ -46,7 +46,7 @@ } "ElseSwitch" { - "Flag" "instvar" + "Test" "instvar" "$animation ramp_30_deg_open" { "ChangeInstance" "instances/BEE2/p1/static_panel/30_glass.vmf" diff --git a/packages/styles/p1_style/items/indicator_panel.cfg b/packages/styles/p1_style/items/indicator_panel.cfg index 63bafe8983..f9ef63f12b 100644 --- a/packages/styles/p1_style/items/indicator_panel.cfg +++ b/packages/styles/p1_style/items/indicator_panel.cfg @@ -21,8 +21,8 @@ "basic_start_cmd" "pan,Start,,0.00,-1" "basic_stop_cmd" "pan,Reset,,0.00,-1" - "adv_countup_cmd" "pan,RunScriptCode,CountUp($$),0.00,-1" - "adv_countdown_cmd" "pan,RunScriptCode,CountDown($$),0.00,-1" + "adv_countup_cmd" "pan,RunScriptCode,CountUp($time),0.00,-1" + "adv_countdown_cmd" "pan,RunScriptCode,CountDown($time),0.00,-1" "adv_resetfull_cmd" "pan,CallScriptFunction,SetFull,0.00,-1" "adv_resetempty_cmd" "pan,CallScriptFunction,SetEmpty,0.00,-1" "blue_cmd" "pan,Skin,0,0.0,-1" diff --git a/packages/styles/p1_style/items/ped_button/vbsp_config.cfg b/packages/styles/p1_style/items/ped_button/vbsp_config.cfg index d257a128bf..ccabd84e72 100644 --- a/packages/styles/p1_style/items/ped_button/vbsp_config.cfg +++ b/packages/styles/p1_style/items/ped_button/vbsp_config.cfg @@ -6,10 +6,7 @@ "instance" "" "Result" { - "Has" - { - "PedestalButton" "1" - } + "Has" "PedestalButton" } "Condition" { @@ -22,8 +19,8 @@ { "OR" { - "instvar" "timer_delay 99999999999" - "instvar" "timer_delay 0" + "instvar" "$timer_delay > 30" + "instvar" "$timer_delay = 0" } "Result" { @@ -36,17 +33,11 @@ "Orientation" "floor" "Result" { - "OverlayInst" - { - "File" "instances/BEE2/p1/items/button/ped_base_floor.vmf" - } + "OverlayInst" "instances/BEE2/p1/items/button/ped_base_floor.vmf" } "Else" { - "OverlayInst" - { - "File" "instances/BEE2/p1/items/button/ped_base_wall.vmf" - } + "OverlayInst" "instances/BEE2/p1/items/button/ped_base_wall.vmf" } } } diff --git a/packages/styles/p1_style/items/track_plat.cfg b/packages/styles/p1_style/items/track_plat.cfg index a631b1f435..44a3bf1cc6 100644 --- a/packages/styles/p1_style/items/track_plat.cfg +++ b/packages/styles/p1_style/items/track_plat.cfg @@ -10,7 +10,7 @@ // 0, 1, 2, 3, 4, 6 "Result" { - "SetInstVar" "$is_glass 1" + "SetInstVar" "$is_glass 1" // Used if both cube type checks fail. // Randomly choose either attachment. "Random" { @@ -50,6 +50,7 @@ } } } + // Note, if 1-block long, all fixup variables are unset. "Condition" { "instvar" "$cube_type >= 3" @@ -84,36 +85,35 @@ "instance" "" "Condition" { - "instance" "" + "instance" "" "Result" { - "ChangeIOType" - { - "Type" "AND" - "SpawnFire" "always" - "invertVar" "$start_active" - "Enable_Cmd" "move_rl,Trigger,,0.00,-1" - "Disable_Cmd" "move_rl,FireUser1,,0.00,-1" - } + // Never starts active. + "SetInstVar" "$start_active 0" } } "Condition" { - "instance" "" + "instance" "" + // If autodrop is set, player presence is required. + "InstVar" "$disable_autodrop == 1" "Result" { - "ChangeIOType" + // This adds an item with a virtual input to the platform, + // giving us exactly the behaviour we want. + "AttachInputOverlay" { - "Type" "AND" - "invertVar" "0" - "Enable_Cmd" "track_lift_movelinear,FireUser2,,0.00,-1" - "Disable_Cmd" "track_lift_movelinear,FireUser1,,0.00,-1" + "File" "instances/BEE2/clean/items/track/trigger.vmf" + "name_suffix" "player" + "input_conf" + { + "Out_Activate" "instance:trigger;OnStartTouch" + "Out_Deactivate" "instance:trigger;OnEndTouchAll" + } } } } - // -- ORIGINAL -- - "Condition" { "instance" "" @@ -156,8 +156,10 @@ { // After as much as possible, transfer the brush platform to the correct // position. + // We also need to include the singular track, because the track and platform + // are combined when 1 block long. Unfortunately they're always glass. "Priority" "500" - "instance" "" + "instance" "" "Condition" { "InstVar" "$is_glass 1" @@ -341,6 +343,22 @@ } } } + "Condition" + { + "instance" "" + "Condition" + { + "instVar" "$anchor right" + "Result" + { + "setinstVar" "$temp BEE2_TRACK_SCAFFOLD_P1_TOP_SINGLE:lower" + } + "Else" + { + "setinstVar" "$temp BEE2_TRACK_SCAFFOLD_P1_TOP_SINGLE:upper" + } + } + } "Result" { "TemplateBrush" diff --git a/packages/styles/p1_style/resources/instances/p1/elevator_coop/exit_door.vmf b/packages/styles/p1_style/resources/instances/p1/elevator_coop/exit_door.vmf index ae40c2c5f8..1b09b8ddf4 100644 --- a/packages/styles/p1_style/resources/instances/p1/elevator_coop/exit_door.vmf +++ b/packages/styles/p1_style/resources/instances/p1/elevator_coop/exit_door.vmf @@ -477,7 +477,6 @@ entity { "OnUser1" "door_leftClose0-1" "OnUser3" "@voice_allexitTrigger0-1" - "OnUser3" "@map_finishedTrigger0.5-1" "OnUser3" "@exit_radioPlaySound01" "OnUser3" "@exit_airlockFireUser20-1" "OnUser1" "door_rightClose0-1" diff --git a/packages/styles/p1_style/resources/instances/p1/elevator_sp/exit_door_vert.vmf b/packages/styles/p1_style/resources/instances/p1/elevator_sp/exit_door_vert.vmf index f8e4ae4572..701a10da93 100644 --- a/packages/styles/p1_style/resources/instances/p1/elevator_sp/exit_door_vert.vmf +++ b/packages/styles/p1_style/resources/instances/p1/elevator_sp/exit_door_vert.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8997" - "mapversion" "263" + "editorbuild" "9672" + "mapversion" "279" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "263" + "mapversion" "279" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -29,12 +29,261 @@ world "skyname" "sky_day01_01" } entity +{ + "id" "63415" + "classname" "comp_relay" + "ctrl_type" "0" + "ctrl_value" "1" + "delay" "0.0" + "targetname" "exit_door" + connections + { + "OnTurnedOn" "door_trigFireUser10-1" + "OnTurnedOn" "door_close_manSetStateAFalse0-1" + "OnTurnedOff" "door_close_manSetStateATrue0-1" + } + "origin" "-64 -16 -32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "63434" + "classname" "logic_coop_manager" + "angles" "0 0 0" + "defaultplayerstatea" "!$start_open" + "defaultplayerstateb" "1" + "targetname" "door_close_man" + connections + { + "OnChangeToAllTrue" "doorClose0-1" + "OnChangeToAllTrue" "door_clipEnable0-1" + } + "origin" "-64 0 -16" + editor + { + "color" "0 100 250" + "visgroupshown" "1" + "visgroupautoshown" "1" + "comments" "A = wants to close, B = door clear." + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "63514" + "classname" "trigger_multiple" + "origin" "-80 0 0" + "spawnflags" "9" + "startdisabled" "0" + "targetname" "close_trig" + "wait" "1" + connections + { + "OnStartTouch" "door_close_manSetStateBFalse0-1" + "OnEndTouchAll" "door_close_manSetStateBTrue0-1" + } + solid + { + "id" "63515" + side + { + "id" "3764" + "plane" "(-86 63 64) (-86 63 -64) (-74 63 -64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 34.6667] 0.375" + "vaxis" "[0 0 -1 -63.7968] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3763" + "plane" "(-74 -63 64) (-74 -63 -64) (-86 -63 -64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 34.6667] 0.375" + "vaxis" "[0 0 -1 -63.7968] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3762" + "plane" "(-86 -63 64) (-86 -63 -64) (-86 63 -64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 1 0 -36] 0.2625" + "vaxis" "[0 0 -1 -62.7968] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3761" + "plane" "(-74 63 64) (-74 63 -64) (-74 -63 -64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 36] 0.2625" + "vaxis" "[0 0 -1 -62.7968] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3760" + "plane" "(-74 63 -64) (-86 63 -64) (-86 -63 -64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 34.6667] 0.375" + "vaxis" "[0 1 0 -36] 0.2625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3759" + "plane" "(-74 -63 64) (-86 -63 64) (-86 63 64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 -34.6667] 0.375" + "vaxis" "[0 1 0 -36] 0.2625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -8768]" + } +} +entity +{ + "id" "63394" + "classname" "func_brush" + "_minlight" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "drawinfastreflection" "0" + "invert_exclusion" "0" + "origin" "-80 0 0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "solidbsp" "0" + "solidity" "0" + "spawnflags" "2" + "startdisabled" "0" + "targetname" "door_clip" + "vrad_brush_cast_shadows" "0" + solid + { + "id" "63392" + side + { + "id" "3752" + "plane" "(-86 -63 64) (-74 -63 64) (-74 -63 -64)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 -42.6667] 0.375" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3751" + "plane" "(-86 63 -64) (-74 63 -64) (-74 63 64)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 -42.6667] 0.375" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3750" + "plane" "(-86 -63 64) (-86 -63 -64) (-86 63 -64)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.2625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3749" + "plane" "(-74 63 64) (-74 63 -64) (-74 -63 -64)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.2625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3748" + "plane" "(-74 -63 64) (-86 -63 64) (-86 63 64)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 -42.6667] 0.375" + "vaxis" "[0 1 0 0] 0.2625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3747" + "plane" "(-74 63 -64) (-86 63 -64) (-86 -63 -64)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 -42.6667] 0.375" + "vaxis" "[0 1 0 0] 0.2625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity { "id" "63224" "classname" "func_areaportal" "portalversion" "1" "startopen" "0" - "target" "exit_door" + "target" "door" "targetname" "door_portal" solid { @@ -121,22 +370,6 @@ entity } } entity -{ - "id" "63372" - "classname" "info_target" - "angles" "-90 180 0" - "spawnflags" "1" - "targetname" "door_light" - "origin" "-79 1.65229e-005 0" - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 8000]" - } -} -entity { "id" "63036" "classname" "trigger_once" @@ -144,14 +377,16 @@ entity "solid" "6" "spawnflags" "4097" "StartDisabled" "0" + "targetname" "door_trig" connections { - "OnTrigger" "exit_doorClose0-1" - "OnTrigger" "counterKill0-1" - "OnTrigger" "@musicKill0.01-1" - "OnTrigger" "@musicStopSound0-1" + "OnTrigger" "doorClose0.01-1" + "OnTrigger" "@music_stopTrigger0-1" "OnTrigger" "@map_wonTrigger0-1" "OnTrigger" "@voice_exitTrigger0-1" + "OnUser1" "doorOpen0-1" + "OnTrigger" "door_manClose0-1" + "OnTrigger" "door_close_manKill0-1" } solid { @@ -234,6 +469,7 @@ entity "color" "220 30 220" "visgroupshown" "1" "visgroupautoshown" "1" + "comments" "By routing the open input through this, it is automatically cut off when locking." "logicalpos" "[0 5500]" } } @@ -244,13 +480,11 @@ entity "angles" "0 0 0" "disableshadows" "1" "drawinfastreflection" "1" - "fademindist" "-1" - "fadescale" "1" - "lightingorigin" "door_light" + "lightingorigin" "door_clip" "MaxAnimTime" "10" "MinAnimTime" "5" "model" "models/props/door_02.mdl" - "parentname" "exit_door" + "parentname" "door" "physdamagescale" "1.0" "renderamt" "255" "rendercolor" "255 255 255" @@ -293,13 +527,15 @@ entity "spawnpos" "$start_open" "speed" "250" "startclosesound" "BEE2.P1.button_up" - "targetname" "exit_door" + "targetname" "door" "unlocked_sentence" "0" "wait" "-1" connections { "OnOpen" "exit_doorSetSpeed750-1" "OnClose" "exit_doorSetSpeed2000-1" + "OnOpen" "door_clipDisable0-1" + "OnClose" "door_clipEnable0-1" } solid { @@ -307,9 +543,9 @@ entity side { "id" "3542" - "plane" "(-84 60 64) (-84 60 -64) (-76 60 -64)" + "plane" "(-86 63 64) (-86 63 -64) (-74 63 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 56] 0.25" + "uaxis" "[-1 0 0 34.6667] 0.375" "vaxis" "[0 0 -1 -63.7968] 0.25" "rotation" "0" "lightmapscale" "16" @@ -318,9 +554,9 @@ entity side { "id" "3541" - "plane" "(-76 -60 64) (-76 -60 -64) (-84 -60 -64)" + "plane" "(-74 -63 64) (-74 -63 -64) (-86 -63 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 56] 0.25" + "uaxis" "[-1 0 0 34.6667] 0.375" "vaxis" "[0 0 -1 -63.7968] 0.25" "rotation" "0" "lightmapscale" "16" @@ -329,9 +565,9 @@ entity side { "id" "3540" - "plane" "(-84 -60 64) (-84 -60 -64) (-84 60 -64)" + "plane" "(-86 -63 64) (-86 -63 -64) (-86 63 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -36] 0.25" + "uaxis" "[0 1 0 -36] 0.2625" "vaxis" "[0 0 -1 -62.7968] 0.25" "rotation" "0" "lightmapscale" "16" @@ -340,9 +576,9 @@ entity side { "id" "3539" - "plane" "(-76 60 64) (-76 60 -64) (-76 -60 -64)" + "plane" "(-74 63 64) (-74 63 -64) (-74 -63 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 36] 0.25" + "uaxis" "[0 -1 0 36] 0.2625" "vaxis" "[0 0 -1 -62.7968] 0.25" "rotation" "0" "lightmapscale" "16" @@ -351,10 +587,10 @@ entity side { "id" "3538" - "plane" "(-76 60 -64) (-84 60 -64) (-84 -60 -64)" + "plane" "(-74 63 -64) (-86 63 -64) (-86 -63 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 56] 0.25" - "vaxis" "[0 1 0 -36] 0.25" + "uaxis" "[-1 0 0 34.6667] 0.375" + "vaxis" "[0 1 0 -36] 0.2625" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -362,10 +598,10 @@ entity side { "id" "3537" - "plane" "(-76 -60 64) (-84 -60 64) (-84 60 64)" + "plane" "(-74 -63 64) (-86 -63 64) (-86 63 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -56] 0.25" - "vaxis" "[0 1 0 -36] 0.25" + "uaxis" "[1 0 0 -34.6667] 0.375" + "vaxis" "[0 1 0 -36] 0.2625" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1082,210 +1318,12 @@ entity } } entity -{ - "id" "6850" - "classname" "trigger_multiple" - "origin" "-80 0 0" - "solid" "6" - "spawnflags" "4097" - "StartDisabled" "0" - "wait" "1" - connections - { - "OnStartTouch" "@relay_leaving_levelEnable0-1" - "OnEndTouch" "@relay_leaving_levelDisable0-1" - "OnStartTouch" "radio_soundPlaySound0-1" - } - solid - { - "id" "6851" - side - { - "id" "1920" - "plane" "(-480 64 -64) (-88 64 -64) (-88 64 64)" - "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 -4] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1919" - "plane" "(-88 -64.036 -64) (-480 -64.0361 -64) (-480 -64.0361 64)" - "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 -31.9962] 0.25" - "vaxis" "[0 0 -1 -4] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1918" - "plane" "(-88 -64.0362 64) (-480 -64.0363 64) (-480 64 64)" - "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 -31.9962] 0.25" - "vaxis" "[0 -1 0 63.8535] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1917" - "plane" "(-88 64 -64) (-480 64 -64) (-480 -64.037 -64)" - "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 -31.9962] 0.25" - "vaxis" "[0 -1 0 63.8535] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1916" - "plane" "(-88 64 64) (-88 64 -64) (-88 -64.0356 -64)" - "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 0 1 3.85535] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1915" - "plane" "(-480 -64.0356 64) (-480 -64.0356 -64) (-480 64 -64)" - "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 0 1 36] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 5500]" - } -} -entity -{ - "id" "6483" - "classname" "trigger_multiple" - "origin" "-168 0 0" - "solid" "6" - "spawnflags" "4097" - "StartDisabled" "1" - "targetname" "@preview_restart_trigger" - "wait" "3" - connections - { - "OnTrigger" "@clientcommandCommandrestart_level2-1" - "OnTrigger" "@preview_complete_messageDisplay0-1" - } - solid - { - "id" "6468" - side - { - "id" "1908" - "plane" "(-160 64 -64) (-160 -64 -64) (-160 -64 64)" - "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1907" - "plane" "(-176 -64 -64) (-176 64 -64) (-176 64 64)" - "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1906" - "plane" "(-176 64 -64) (-176 -64 -64) (-160 -64 -64)" - "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1905" - "plane" "(-176 -64 64) (-176 64 64) (-160 64 64)" - "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1904" - "plane" "(-160 -64 64) (-160 -64 -64) (-176 -64 -64)" - "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1903" - "plane" "(-176 64 64) (-176 64 -64) (-160 64 -64)" - "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 500]" - } -} -entity { "id" "6002" "classname" "func_instance_parms" "parm1" "$connectioncount integer 1" "parm2" "$start_open integer 0" - "origin" "-64 1.78342e-005 -16" + "origin" "-64 16 -32" editor { "color" "220 30 220" diff --git a/packages/styles/p1_style/resources/instances/p1/items/barrier/left_corner.vmf b/packages/styles/p1_style/resources/instances/p1/items/barrier/left_corner.vmf deleted file mode 100644 index a47208cbaa..0000000000 --- a/packages/styles/p1_style/resources/instances/p1/items/barrier/left_corner.vmf +++ /dev/null @@ -1,202 +0,0 @@ -versioninfo -{ - "editorversion" "400" - "editorbuild" "6432" - "mapversion" "67" - "formatversion" "100" - "prefab" "0" -} -visgroups -{ -} -viewsettings -{ - "bSnapToGrid" "1" - "bShowGrid" "1" - "bShowLogicalGrid" "0" - "nGridSpacing" "2" - "bShow3DGrid" "0" -} -world -{ - "id" "1" - "mapversion" "67" - "classname" "worldspawn" - "detailmaterial" "detail/detailsprites" - "detailvbsp" "detail.vbsp" - "maxblobcount" "250" - "maxpropscreenwidth" "-1" - "skyname" "sky_black_nofog" -} -entity -{ - "id" "654" - "classname" "func_detail" - solid - { - "id" "857" - side - { - "id" "70" - "plane" "(64 -56 -60) (63.6919 -63.6919 -60) (60 -60 -60)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[0 1 0 -0.4] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "69" - "plane" "(64 -56 -64) (64 0 -64) (60 0 -64)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[0 1 0 -0.4] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "68" - "plane" "(60 -60 -60) (60 -60 -64) (60 0 -64)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[0 1 0 -0.4] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "67" - "plane" "(64 0 -60) (64 0 -64) (64 -56 -64)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[0 1 0 -0.4] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "66" - "plane" "(60 0 -60) (60 0 -64) (64 0 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "65" - "plane" "(63.6919 -63.6919 -60) (63.695 -63.6914 -64) (60 -60 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -0.4] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "64" - "plane" "(64 -56 -60) (64 -56 -64) (63.695 -63.6914 -64)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[0.0540615 0.998538 0 -14.579] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "858" - side - { - "id" "75" - "plane" "(60 -64 -60) (60 -60 -60) (63.692 -63.692 -60)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0.4] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "74" - "plane" "(63.6914 -63.6914 -64) (60 -60 -64) (60 -64 -64)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0.4] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "73" - "plane" "(60 -64 -60) (60 -64 -64) (60 -60 -64)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[0 1 0 -0.4] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "72" - "plane" "(60 -60 -60) (60 -60 -64) (63.6914 -63.6914 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -0.4] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "71" - "plane" "(63.692 -63.692 -60) (63.6914 -63.6914 -64) (60 -64 -64)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[-0.996538 0.0831333 0 4.01568] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -cameras -{ - "activecamera" "-1" -} -cordons -{ - "active" "0" -} diff --git a/packages/styles/p1_style/resources/instances/p1/items/barrier/left_short.vmf b/packages/styles/p1_style/resources/instances/p1/items/barrier/left_short.vmf deleted file mode 100644 index 13bc9d727b..0000000000 --- a/packages/styles/p1_style/resources/instances/p1/items/barrier/left_short.vmf +++ /dev/null @@ -1,137 +0,0 @@ -versioninfo -{ - "editorversion" "400" - "editorbuild" "6432" - "mapversion" "63" - "formatversion" "100" - "prefab" "0" -} -visgroups -{ -} -viewsettings -{ - "bSnapToGrid" "1" - "bShowGrid" "1" - "bShowLogicalGrid" "0" - "nGridSpacing" "1" - "bShow3DGrid" "0" -} -world -{ - "id" "1" - "mapversion" "63" - "classname" "worldspawn" - "detailmaterial" "detail/detailsprites" - "detailvbsp" "detail.vbsp" - "maxblobcount" "250" - "maxpropscreenwidth" "-1" - "skyname" "sky_black_nofog" -} -entity -{ - "id" "634" - "classname" "func_detail" - solid - { - "id" "678" - side - { - "id" "42" - "plane" "(60 0 -60) (64 0 -60) (64 -56 -60)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "41" - "plane" "(60 -60 -64) (63.9 -60 -64) (64 -56 -64)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "40" - "plane" "(60 0 -64) (60 0 -60) (60 -60 -60)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "39" - "plane" "(64 -56 -64) (64 -56 -60) (64 0 -60)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38" - "plane" "(64 0 -64) (64 0 -60) (60 0 -60)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37" - "plane" "(60 -60 -64) (60 -60 -60) (63.9 -60 -60)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36" - "plane" "(63.9 -60 -64) (63.9 -60 -60) (64 -56 -60)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 500]" - } -} -cameras -{ - "activecamera" "-1" -} -cordons -{ - "active" "0" -} diff --git a/packages/styles/p1_style/resources/instances/p1/items/barrier/left_straight.vmf b/packages/styles/p1_style/resources/instances/p1/items/barrier/left_straight.vmf deleted file mode 100644 index a88e99d116..0000000000 --- a/packages/styles/p1_style/resources/instances/p1/items/barrier/left_straight.vmf +++ /dev/null @@ -1,126 +0,0 @@ -versioninfo -{ - "editorversion" "400" - "editorbuild" "5685" - "mapversion" "64" - "formatversion" "100" - "prefab" "0" -} -visgroups -{ -} -viewsettings -{ - "bSnapToGrid" "1" - "bShowGrid" "1" - "bShowLogicalGrid" "0" - "nGridSpacing" "4" - "bShow3DGrid" "0" -} -world -{ - "id" "1" - "mapversion" "64" - "classname" "worldspawn" - "detailmaterial" "detail/detailsprites" - "detailvbsp" "detail.vbsp" - "maxblobcount" "250" - "maxpropscreenwidth" "-1" - "skyname" "sky_black_nofog" -} -entity -{ - "id" "634" - "classname" "func_detail" - solid - { - "id" "632" - side - { - "id" "24" - "plane" "(60 -64 -60) (64 -64 -60) (64 -64 -64)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "25" - "plane" "(60 0 -64) (64 0 -64) (64 0 -60)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -56] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "26" - "plane" "(60 -64 -60) (60 -64 -64) (60 0 -64)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "27" - "plane" "(64 0 -60) (64 0 -64) (64 -64 -64)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "28" - "plane" "(64 -64 -60) (60 -64 -60) (60 0 -60)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "29" - "plane" "(64 0 -64) (60 0 -64) (60 -64 -64)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -cameras -{ - "activecamera" "-1" -} -cordons -{ - "active" "0" -} diff --git a/packages/styles/p1_style/resources/instances/p1/items/barrier/right_corner.vmf b/packages/styles/p1_style/resources/instances/p1/items/barrier/right_corner.vmf deleted file mode 100644 index aecf435fb6..0000000000 --- a/packages/styles/p1_style/resources/instances/p1/items/barrier/right_corner.vmf +++ /dev/null @@ -1,202 +0,0 @@ -versioninfo -{ - "editorversion" "400" - "editorbuild" "6432" - "mapversion" "72" - "formatversion" "100" - "prefab" "0" -} -visgroups -{ -} -viewsettings -{ - "bSnapToGrid" "1" - "bShowGrid" "1" - "bShowLogicalGrid" "0" - "nGridSpacing" "4" - "bShow3DGrid" "0" -} -world -{ - "id" "1" - "mapversion" "72" - "classname" "worldspawn" - "detailmaterial" "detail/detailsprites" - "detailvbsp" "detail.vbsp" - "maxblobcount" "250" - "maxpropscreenwidth" "-1" - "skyname" "sky_black_nofog" -} -entity -{ - "id" "814" - "classname" "func_detail" - solid - { - "id" "1109" - side - { - "id" "103" - "plane" "(64 0 -64) (60 0 -64) (60 0 -60)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -56] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "102" - "plane" "(60 0 -64) (60 60 -64) (60 60 -60)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[0 -1 0 -0.4] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "101" - "plane" "(64 0 -64) (64 0 -60) (64 56 -60)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[0 -1 0 -0.4] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "100" - "plane" "(60 0 -60) (60 60 -60) (63.7682 63.7645 -60)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[0 -1 0 -0.4] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "99" - "plane" "(60 0 -64) (64 0 -64) (64 56 -64)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[0 -1 0 -0.4] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "98" - "plane" "(60 60 -64) (63.7664 63.7646 -64) (63.7682 63.7645 -60)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0.4] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "97" - "plane" "(64 56 -64) (64 56 -60) (63.7682 63.7645 -60)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[0.0623809 -0.998052 0 -16.8369] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "1110" - side - { - "id" "108" - "plane" "(60 64 -64) (60 64 -60) (60 60 -60)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[0 -1 0 -0.4] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "107" - "plane" "(60 60 -60) (60 64 -60) (63.7656 63.7656 -60)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.4] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "106" - "plane" "(60 60 -64) (63.7647 63.7647 -64) (60 64 -64)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0.4] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "105" - "plane" "(60 60 -64) (60 60 -60) (63.7656 63.7656 -60)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0.4] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "104" - "plane" "(60 64 -64) (63.7647 63.7647 -64) (63.7656 63.7656 -60)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 1500]" - } -} -cameras -{ - "activecamera" "-1" -} -cordons -{ - "active" "0" -} diff --git a/packages/styles/p1_style/resources/instances/p1/items/barrier/right_short.vmf b/packages/styles/p1_style/resources/instances/p1/items/barrier/right_short.vmf deleted file mode 100644 index 4c9fc5fff3..0000000000 --- a/packages/styles/p1_style/resources/instances/p1/items/barrier/right_short.vmf +++ /dev/null @@ -1,125 +0,0 @@ -versioninfo -{ - "editorversion" "400" - "editorbuild" "6432" - "mapversion" "65" - "formatversion" "100" - "prefab" "0" -} -visgroups -{ -} -viewsettings -{ - "bSnapToGrid" "1" - "bShowGrid" "1" - "bShowLogicalGrid" "0" - "nGridSpacing" "1" - "bShow3DGrid" "0" -} -world -{ - "id" "1" - "mapversion" "65" - "classname" "worldspawn" - "detailmaterial" "detail/detailsprites" - "detailvbsp" "detail.vbsp" - "maxblobcount" "250" - "maxpropscreenwidth" "-1" - "skyname" "sky_black_nofog" - solid - { - "id" "809" - side - { - "id" "49" - "plane" "(64 -0 -64) (60 -0 -64) (60 -0 -60)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "48" - "plane" "(60 60 -64) (63.9 60 -64) (63.9 60 -60)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "47" - "plane" "(60 -0 -64) (60 60 -64) (60 60 -60)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[0 -1 0 112] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "46" - "plane" "(64 -0 -64) (64 -0 -60) (64 56 -60)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[0 -1 0 112] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "45" - "plane" "(60 -0 -60) (60 60 -60) (63.9 60 -60)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "44" - "plane" "(60 60 -64) (60 -0 -64) (64 -0 -64)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "43" - "plane" "(63.9 60 -64) (64 56 -64) (64 56 -60)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[0.0250006 -1 0 105.53] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 116 129" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } -} -cameras -{ - "activecamera" "-1" -} -cordons -{ - "active" "0" -} diff --git a/packages/styles/p1_style/resources/instances/p1/items/barrier/right_straight.vmf b/packages/styles/p1_style/resources/instances/p1/items/barrier/right_straight.vmf deleted file mode 100644 index 9eac18fca1..0000000000 --- a/packages/styles/p1_style/resources/instances/p1/items/barrier/right_straight.vmf +++ /dev/null @@ -1,126 +0,0 @@ -versioninfo -{ - "editorversion" "400" - "editorbuild" "5685" - "mapversion" "64" - "formatversion" "100" - "prefab" "0" -} -visgroups -{ -} -viewsettings -{ - "bSnapToGrid" "1" - "bShowGrid" "1" - "bShowLogicalGrid" "0" - "nGridSpacing" "4" - "bShow3DGrid" "0" -} -world -{ - "id" "1" - "mapversion" "64" - "classname" "worldspawn" - "detailmaterial" "detail/detailsprites" - "detailvbsp" "detail.vbsp" - "maxblobcount" "250" - "maxpropscreenwidth" "-1" - "skyname" "sky_black_nofog" -} -entity -{ - "id" "634" - "classname" "func_detail" - solid - { - "id" "632" - side - { - "id" "24" - "plane" "(60 -1.90735e-006 -60) (64 -1.90735e-006 -60) (64 -1.90735e-006 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "25" - "plane" "(60 64 -64) (64 64 -64) (64 64 -60)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "26" - "plane" "(60 -1.90735e-006 -60) (60 -1.90735e-006 -64) (60 64 -64)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "27" - "plane" "(64 64 -60) (64 64 -64) (64 -1.90735e-006 -64)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "28" - "plane" "(64 -1.90735e-006 -60) (60 -1.90735e-006 -60) (60 64 -60)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "29" - "plane" "(64 64 -64) (60 64 -64) (60 -1.90735e-006 -64)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 500]" - } -} -cameras -{ - "activecamera" "-1" -} -cordons -{ - "active" "0" -} diff --git a/packages/styles/p1_style/resources/instances/p1/items/barrier/segment.vmf b/packages/styles/p1_style/resources/instances/p1/items/barrier/segment.vmf deleted file mode 100644 index 19ec21139e..0000000000 --- a/packages/styles/p1_style/resources/instances/p1/items/barrier/segment.vmf +++ /dev/null @@ -1,206 +0,0 @@ -versioninfo -{ - "editorversion" "400" - "editorbuild" "6432" - "mapversion" "55" - "formatversion" "100" - "prefab" "0" -} -visgroups -{ -} -viewsettings -{ - "bSnapToGrid" "1" - "bShowGrid" "1" - "bShowLogicalGrid" "0" - "nGridSpacing" "1" - "bShow3DGrid" "0" -} -world -{ - "id" "1" - "mapversion" "55" - "classname" "worldspawn" - "detailmaterial" "detail/detailsprites" - "detailvbsp" "detail.vbsp" - "maxblobcount" "250" - "maxpropscreenwidth" "-1" - "skyname" "sky_black_nofog" - solid - { - "id" "71" - side - { - "id" "60" - "plane" "(-60 64 -64) (-64 64 -64) (-64 -64 -64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 -36] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "59" - "plane" "(-64 64 -64) (-60 64 -64) (-60 64 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[-1 0 0 -36] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "58" - "plane" "(-60 64 64) (-60 64 -64) (-60 -64 -64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "57" - "plane" "(-64 64 64) (-60 64 64) (-60 -64 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 -36] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "56" - "plane" "(-60 -64 64) (-60 -64 -64) (-64 -64 -64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[-1 0 0 -36] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "55" - "plane" "(-64 -64 -64) (-64 64 -64) (-64 64 64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 254 231" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } -} -entity -{ - "id" "75" - "classname" "func_clip_vphysics" - "filtername" "@filter_paint_bomb" - "origin" "-62 0 0" - "StartDisabled" "0" - "targetname" "@glass" - solid - { - "id" "72" - side - { - "id" "78" - "plane" "(-60 64 -64) (-64 64 -64) (-64 -64 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 28] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "77" - "plane" "(-64 64 -64) (-60 64 -64) (-60 64 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[-1 0 0 28] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "76" - "plane" "(-60 64 64) (-60 64 -64) (-60 -64 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "75" - "plane" "(-64 64 64) (-60 64 64) (-60 -64 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 28] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "74" - "plane" "(-60 -64 64) (-60 -64 -64) (-64 -64 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[-1 0 0 28] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "73" - "plane" "(-64 -64 -64) (-64 64 -64) (-64 64 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 1000]" - } -} -cameras -{ - "activecamera" "-1" -} -cordons -{ - "active" "0" -} diff --git a/packages/styles/p1_style/resources/instances/p1/items/barrier/vert_left.vmf b/packages/styles/p1_style/resources/instances/p1/items/barrier/vert_left.vmf deleted file mode 100644 index bdbb14b2b7..0000000000 --- a/packages/styles/p1_style/resources/instances/p1/items/barrier/vert_left.vmf +++ /dev/null @@ -1,354 +0,0 @@ -versioninfo -{ - "editorversion" "400" - "editorbuild" "7552" - "mapversion" "82" - "formatversion" "100" - "prefab" "0" -} -visgroups -{ -} -viewsettings -{ - "bSnapToGrid" "1" - "bShowGrid" "1" - "bShowLogicalGrid" "0" - "nGridSpacing" "2" - "bShow3DGrid" "0" -} -world -{ - "id" "1" - "mapversion" "82" - "classname" "worldspawn" - "detailmaterial" "detail/detailsprites" - "detailvbsp" "detail.vbsp" - "maxblobcount" "250" - "maxpropscreenwidth" "-1" - "skyname" "sky_black_nofog" - solid - { - "id" "906" - side - { - "id" "101" - "plane" "(56 -68 -58) (56 -68 -62) (56 -64 -64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "100" - "plane" "(64 -64 -56) (64 -64 -64) (64 -68 -62)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "99" - "plane" "(64 -68 -58) (64 -68 -62) (56 -68 -62)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[1 0 0 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "98" - "plane" "(56 -64 -56) (56 -64 -64) (64 -64 -64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[1 0 0 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "97" - "plane" "(56 -64 -64) (56 -68 -62) (64 -68 -62)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "96" - "plane" "(56 -68 -58) (56 -64 -56) (64 -64 -56)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 200 253" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } -} -entity -{ - "id" "651" - "classname" "func_detail" - solid - { - "id" "694" - side - { - "id" "65" - "plane" "(56 -24 -56) (56 0 -56) (64 0 -56)" - "material" "PLASTIC/PLASTICWALL003A" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 -1 0 32] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "64" - "plane" "(56 0 -64) (56 -24 -64) (64 -24 -64)" - "material" "PLASTIC/PLASTICWALL003A" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 -1 0 32] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "63" - "plane" "(56 -24 -64) (56 0 -64) (56 0 -56)" - "material" "PLASTIC/PLASTICWALL001A" - "uaxis" "[0 1 0 -40] 0.1" - "vaxis" "[0 0 -1 170] 0.133333" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "62" - "plane" "(64 0 -64) (64 -24 -64) (64 -24 -56)" - "material" "PLASTIC/PLASTICWALL001A" - "uaxis" "[0 1 0 -40] 0.1" - "vaxis" "[0 0 -1 170] 0.133333" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "61" - "plane" "(56 0 -64) (64 0 -64) (64 0 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.333334" - "vaxis" "[0 0 -1 0] 0.333333" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "60" - "plane" "(64 -24 -64) (56 -24 -64) (56 -24 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.5" - "vaxis" "[0 0 -1 4] 0.333333" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "693" - side - { - "id" "59" - "plane" "(56 -64 -56) (56 -40 -56) (64 -40 -56)" - "material" "PLASTIC/PLASTICWALL003A" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 -1 0 0] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "58" - "plane" "(56 -40 -64) (56 -64 -64) (64 -64 -64)" - "material" "PLASTIC/PLASTICWALL003A" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 -1 0 0] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "57" - "plane" "(56 -64 -64) (56 -40 -64) (56 -40 -56)" - "material" "PLASTIC/PLASTICWALL001A" - "uaxis" "[0 1 0 0] 0.1" - "vaxis" "[0 0 -1 170] 0.133333" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "56" - "plane" "(64 -40 -64) (64 -64 -64) (64 -64 -56)" - "material" "PLASTIC/PLASTICWALL001A" - "uaxis" "[0 1 0 0] 0.1" - "vaxis" "[0 0 -1 170] 0.133333" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "55" - "plane" "(64 -64 -64) (56 -64 -64) (56 -64 -56)" - "material" "PLASTIC/PLASTICWALL001A" - "uaxis" "[1 0 0 320] 0.2" - "vaxis" "[0 0 -1 170] 0.133333" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "54" - "plane" "(56 -40 -64) (64 -40 -64) (64 -40 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.5" - "vaxis" "[0 0 -1 4] 0.333333" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "905" - side - { - "id" "89" - "plane" "(56 -40 -56) (56 -24 -56) (64 -24 -56)" - "material" "PLASTIC/PLASTICWALL003A" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 -1 0 -96] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "88" - "plane" "(56 -24 -64) (56 -40 -64) (64 -40 -64)" - "material" "PLASTIC/PLASTICWALL003A" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 -1 0 -96] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "87" - "plane" "(56 -40 -64) (56 -24 -64) (56 -24 -56)" - "material" "PLASTIC/PLASTICWALL001A" - "uaxis" "[0 1 0 120] 0.1" - "vaxis" "[0 0 -1 170] 0.133333" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "86" - "plane" "(64 -24 -64) (64 -40 -64) (64 -40 -56)" - "material" "PLASTIC/PLASTICWALL001A" - "uaxis" "[0 1 0 120] 0.1" - "vaxis" "[0 0 -1 170] 0.133333" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "85" - "plane" "(56 -24 -64) (64 -24 -64) (64 -24 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.333334" - "vaxis" "[0 0 -1 0] 0.333333" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "84" - "plane" "(64 -40 -64) (56 -40 -64) (56 -40 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.5" - "vaxis" "[0 0 -1 4] 0.333333" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 500]" - } -} -cameras -{ - "activecamera" "-1" -} -cordons -{ - "active" "0" -} diff --git a/packages/styles/p1_style/resources/instances/p1/items/barrier/vert_right.vmf b/packages/styles/p1_style/resources/instances/p1/items/barrier/vert_right.vmf deleted file mode 100644 index f1ba547a85..0000000000 --- a/packages/styles/p1_style/resources/instances/p1/items/barrier/vert_right.vmf +++ /dev/null @@ -1,354 +0,0 @@ -versioninfo -{ - "editorversion" "400" - "editorbuild" "7552" - "mapversion" "82" - "formatversion" "100" - "prefab" "0" -} -visgroups -{ -} -viewsettings -{ - "bSnapToGrid" "1" - "bShowGrid" "1" - "bShowLogicalGrid" "0" - "nGridSpacing" "1" - "bShow3DGrid" "0" -} -world -{ - "id" "1" - "mapversion" "82" - "classname" "worldspawn" - "detailmaterial" "detail/detailsprites" - "detailvbsp" "detail.vbsp" - "maxblobcount" "250" - "maxpropscreenwidth" "-1" - "skyname" "sky_black_nofog" - solid - { - "id" "920" - side - { - "id" "107" - "plane" "(56 64 -56) (56 64 -64) (56 68 -62)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "106" - "plane" "(64 68 -58) (64 68 -62) (64 64 -64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "105" - "plane" "(56 68 -58) (56 68 -62) (64 68 -62)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "104" - "plane" "(64 64 -56) (64 64 -64) (56 64 -64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "103" - "plane" "(56 64 -56) (56 68 -58) (64 68 -58)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "102" - "plane" "(56 68 -62) (56 64 -64) (64 64 -64)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 200 253" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } -} -entity -{ - "id" "651" - "classname" "func_detail" - solid - { - "id" "694" - side - { - "id" "65" - "plane" "(56 24 -64) (56 0 -64) (64 0 -64)" - "material" "PLASTIC/PLASTICWALL003A" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 1 0 32] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "64" - "plane" "(56 0 -56) (56 24 -56) (64 24 -56)" - "material" "PLASTIC/PLASTICWALL003A" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 1 0 32] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "63" - "plane" "(56 0 -64) (56 24 -64) (56 24 -56)" - "material" "PLASTIC/PLASTICWALL001A" - "uaxis" "[0 -1 0 -40] 0.1" - "vaxis" "[0 0 1 46] 0.133333" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "62" - "plane" "(64 24 -64) (64 0 -64) (64 0 -56)" - "material" "PLASTIC/PLASTICWALL001A" - "uaxis" "[0 -1 0 -40] 0.1" - "vaxis" "[0 0 1 46] 0.133333" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "61" - "plane" "(64 0 -64) (56 0 -64) (56 0 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.333334" - "vaxis" "[0 0 1 40] 0.333333" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "60" - "plane" "(56 24 -64) (64 24 -64) (64 24 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.5" - "vaxis" "[0 0 1 44] 0.333333" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "693" - side - { - "id" "59" - "plane" "(56 64 -64) (56 40 -64) (64 40 -64)" - "material" "PLASTIC/PLASTICWALL003A" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 1 0 0] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "58" - "plane" "(56 40 -56) (56 64 -56) (64 64 -56)" - "material" "PLASTIC/PLASTICWALL003A" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 1 0 0] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "57" - "plane" "(56 40 -64) (56 64 -64) (56 64 -56)" - "material" "PLASTIC/PLASTICWALL001A" - "uaxis" "[0 -1 0 0] 0.1" - "vaxis" "[0 0 1 46] 0.133333" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "56" - "plane" "(64 64 -64) (64 40 -64) (64 40 -56)" - "material" "PLASTIC/PLASTICWALL001A" - "uaxis" "[0 -1 0 0] 0.1" - "vaxis" "[0 0 1 46] 0.133333" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "55" - "plane" "(56 64 -64) (64 64 -64) (64 64 -56)" - "material" "PLASTIC/PLASTICWALL001A" - "uaxis" "[1 0 0 320] 0.2" - "vaxis" "[0 0 1 46] 0.133333" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "54" - "plane" "(64 40 -64) (56 40 -64) (56 40 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.5" - "vaxis" "[0 0 1 44] 0.333333" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "905" - side - { - "id" "89" - "plane" "(56 40 -64) (56 24 -64) (64 24 -64)" - "material" "PLASTIC/PLASTICWALL003A" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 1 0 -96] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "88" - "plane" "(56 24 -56) (56 40 -56) (64 40 -56)" - "material" "PLASTIC/PLASTICWALL003A" - "uaxis" "[1 0 0 0] 0.125" - "vaxis" "[0 1 0 -96] 0.125" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "87" - "plane" "(56 24 -64) (56 40 -64) (56 40 -56)" - "material" "PLASTIC/PLASTICWALL001A" - "uaxis" "[0 -1 0 120] 0.1" - "vaxis" "[0 0 1 46] 0.133333" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "86" - "plane" "(64 40 -64) (64 24 -64) (64 24 -56)" - "material" "PLASTIC/PLASTICWALL001A" - "uaxis" "[0 -1 0 120] 0.1" - "vaxis" "[0 0 1 46] 0.133333" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "85" - "plane" "(64 24 -64) (56 24 -64) (56 24 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.333334" - "vaxis" "[0 0 1 40] 0.333333" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "84" - "plane" "(56 40 -64) (64 40 -64) (64 40 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.5" - "vaxis" "[0 0 1 44] 0.333333" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 500]" - } -} -cameras -{ - "activecamera" "-1" -} -cordons -{ - "active" "0" -} diff --git a/packages/styles/p1_style/resources/instances/p1/items/laser/emitter_center.vmf b/packages/styles/p1_style/resources/instances/p1/items/laser/emitter_center.vmf index b2c5838f07..5ea83f515e 100644 --- a/packages/styles/p1_style/resources/instances/p1/items/laser/emitter_center.vmf +++ b/packages/styles/p1_style/resources/instances/p1/items/laser/emitter_center.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8973" - "mapversion" "111" + "editorbuild" "9672" + "mapversion" "112" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "111" + "mapversion" "112" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -735,6 +735,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 0 0" "spawnflags" "0" "origin" "0 0 -40" @@ -849,7 +850,7 @@ entity "rendercolor" "255 255 255" "skin" "0" "solid" "6" - "StartState" "$start_disabled" + "StartState" "!$start_enabled" "targetname" "laser" "origin" "0 0 -80" editor diff --git a/packages/styles/p1_style/resources/instances/p1/items/laser/emitter_offset.vmf b/packages/styles/p1_style/resources/instances/p1/items/laser/emitter_offset.vmf index f9c0a155de..1fa1126050 100644 --- a/packages/styles/p1_style/resources/instances/p1/items/laser/emitter_offset.vmf +++ b/packages/styles/p1_style/resources/instances/p1/items/laser/emitter_offset.vmf @@ -2,7 +2,7 @@ versioninfo { "editorversion" "400" "editorbuild" "9672" - "mapversion" "116" + "mapversion" "117" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "116" + "mapversion" "117" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -1106,7 +1106,7 @@ entity "rendercolor" "255 255 255" "skin" "0" "solid" "6" - "StartState" "$start_disabled" + "StartState" "!$start_enabled" "targetname" "laser" "origin" "0 0 -80" editor diff --git a/packages/styles/p1_style/resources/instances/p1/items/stairs.vmf b/packages/styles/p1_style/resources/instances/p1/items/stairs.vmf index 694f4e2254..72e9c1f780 100644 --- a/packages/styles/p1_style/resources/instances/p1/items/stairs.vmf +++ b/packages/styles/p1_style/resources/instances/p1/items/stairs.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8419" - "mapversion" "205" + "editorbuild" "9672" + "mapversion" "203" "formatversion" "100" "prefab" "0" } @@ -26,7 +26,7 @@ viewsettings world { "id" "1" - "mapversion" "205" + "mapversion" "203" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -34,6 +34,82 @@ world "maxpropscreenwidth" "-1" "skyname" "sky_day01_01" solid + { + "id" "12151" + side + { + "id" "7755" + "plane" "(-60 -60 -64) (188 -60 -64) (188 -60 -128)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 24] 0.266667" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7754" + "plane" "(-60 60 -128) (188 60 -128) (188 60 -64)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 24] 0.266667" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7753" + "plane" "(-60 -60 -64) (-60 -60 -128) (-60 60 -128)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 0 1 -24] 0.266667" + "vaxis" "[0 1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7752" + "plane" "(188 60 -64) (188 60 -128) (188 -60 -128)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 0 1 -24] 0.266667" + "vaxis" "[0 1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7751" + "plane" "(188 -60 -64) (-60 -60 -64) (-60 60 -64)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7750" + "plane" "(188 60 -128) (-60 60 -128) (-60 -60 -128)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 132 165" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid { "id" "5972" side @@ -548,18 +624,18 @@ entity { "id" "11961" "classname" "func_movelinear" + "angles" "0 0 0" "blockdamage" "0" "disablereceiveshadows" "0" "drawinfastreflection" "0" "movedir" "0 180 0" "movedistance" "32" - "origin" "-48 0 -56" + "origin" "-48 0 -72" "parentname" "stair_door_1" "renderamt" "255" "rendercolor" "255 255 255" "renderfx" "0" "rendermode" "0" - "solid" "6" "spawnflags" "0" "speed" "100" "startposition" "0" @@ -569,32 +645,32 @@ entity "id" "11862" side { - "id" "7748" - "plane" "(-32 -64 -48) (-32 -64 -64) (-64 -64 -64)" + "id" "7643" + "plane" "(-32 -64 -64) (-32 -64 -80) (-64 -64 -80)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7747" - "plane" "(-64 64 -64) (-32 64 -64) (-32 64 -48)" + "id" "7642" + "plane" "(-64 64 -80) (-32 64 -80) (-32 64 -64)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7746" - "plane" "(-32 64 -48) (-32 64 -64) (-32 -64 -64)" + "id" "7641" + "plane" "(-32 64 -64) (-32 64 -80) (-32 -64 -80)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 0 1 -32] 0.25" + "uaxis" "[0 0 1 32] 0.25" "vaxis" "[0 1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" @@ -602,8 +678,8 @@ entity } side { - "id" "7745" - "plane" "(-32 64 -64) (-64 64 -64) (-64 -64 -64)" + "id" "7640" + "plane" "(-32 64 -80) (-64 64 -80) (-64 -64 -80)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 1 0 32] 0.25" @@ -613,10 +689,10 @@ entity } side { - "id" "7744" - "plane" "(-32 -64 -48) (-64 -64 -64) (-64 64 -64)" + "id" "7639" + "plane" "(-32 -64 -64) (-64 -64 -80) (-64 64 -80)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0.894427 0 0.447214 21.865] 0.25" + "uaxis" "[0.894427 0 0.447214 50.4867] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -645,6 +721,9 @@ entity "cspinup" "0" "fadeinsecs" "0" "fadeoutsecs" "0" + "haddons_enabled" "-1" + "haddons_infrange" "-1" + "haddons_mode" "-1" "health" "10" "lfomodpitch" "0" "lfomodvol" "0" @@ -1047,6 +1126,7 @@ hidden { "id" "6931" "classname" "func_movelinear" + "angles" "0 0 0" "blockdamage" "0" "disablereceiveshadows" "0" "drawinfastreflection" "1" @@ -1057,7 +1137,6 @@ hidden "rendercolor" "255 255 255" "renderfx" "0" "rendermode" "0" - "solid" "6" "spawnflags" "0" "speed" "100" "startposition" "1" @@ -1847,6 +1926,7 @@ hidden { "id" "6951" "classname" "func_movelinear" + "angles" "0 0 0" "blockdamage" "0" "disablereceiveshadows" "0" "drawinfastreflection" "1" @@ -1857,7 +1937,6 @@ hidden "rendercolor" "255 255 255" "renderfx" "0" "rendermode" "0" - "solid" "6" "spawnflags" "0" "speed" "100" "startposition" "0.25" @@ -2716,6 +2795,7 @@ hidden { "id" "6966" "classname" "func_movelinear" + "angles" "0 0 0" "blockdamage" "0" "disablereceiveshadows" "0" "drawinfastreflection" "1" @@ -2726,7 +2806,6 @@ hidden "rendercolor" "255 255 255" "renderfx" "0" "rendermode" "0" - "solid" "6" "spawnflags" "0" "speed" "100" "startposition" "0.25" @@ -3831,6 +3910,7 @@ hidden { "id" "6974" "classname" "func_movelinear" + "angles" "0 0 0" "blockdamage" "0" "disablereceiveshadows" "0" "drawinfastreflection" "1" @@ -3841,7 +3921,6 @@ hidden "rendercolor" "255 255 255" "renderfx" "0" "rendermode" "0" - "solid" "6" "spawnflags" "0" "speed" "100" "startposition" "0.2" @@ -4699,6 +4778,7 @@ hidden { "id" "6982" "classname" "func_movelinear" + "angles" "0 0 0" "blockdamage" "0" "disablereceiveshadows" "0" "drawinfastreflection" "1" @@ -4709,7 +4789,6 @@ hidden "rendercolor" "255 255 255" "renderfx" "0" "rendermode" "0" - "solid" "6" "spawnflags" "0" "speed" "100" "startposition" "0.25" @@ -5813,6 +5892,7 @@ hidden { "id" "6990" "classname" "func_movelinear" + "angles" "0 0 0" "blockdamage" "0" "disablereceiveshadows" "0" "drawinfastreflection" "1" @@ -5823,7 +5903,6 @@ hidden "rendercolor" "255 255 255" "renderfx" "0" "rendermode" "0" - "solid" "6" "spawnflags" "0" "speed" "100" "startposition" "0.5" @@ -6682,6 +6761,7 @@ hidden { "id" "6998" "classname" "func_movelinear" + "angles" "0 0 0" "blockdamage" "0" "disablereceiveshadows" "0" "drawinfastreflection" "1" @@ -6692,7 +6772,6 @@ hidden "rendercolor" "255 255 255" "renderfx" "0" "rendermode" "0" - "solid" "6" "spawnflags" "0" "speed" "100" "startposition" "0.5" @@ -12742,6 +12821,7 @@ entity { "id" "5905" "classname" "func_movelinear" + "angles" "0 0 0" "blockdamage" "0" "disablereceiveshadows" "0" "movedir" "-90 0 0" @@ -12751,7 +12831,6 @@ entity "rendercolor" "255 255 255" "renderfx" "0" "rendermode" "0" - "solid" "6" "spawnflags" "0" "speed" "100" "startposition" "0" @@ -15410,6 +15489,7 @@ hidden { "id" "4371" "classname" "func_movelinear" + "angles" "0 0 0" "blockdamage" "0" "disablereceiveshadows" "0" "drawinfastreflection" "1" @@ -15420,7 +15500,6 @@ hidden "rendercolor" "255 255 255" "renderfx" "0" "rendermode" "0" - "solid" "6" "spawnflags" "0" "speed" "100" "startposition" "0.125" @@ -16551,13 +16630,13 @@ entity connections { "OnTrigger" "stair_clipOpen0-1" - "OnTrigger" "stair_door_1Open0-1" - "OnTrigger" "stair_door_2Open0-1" - "OnTrigger" "stair_door_3Open0-1" - "OnTrigger" "stair_door_4Open0-1" - "OnTrigger" "stair_door_5Open0-1" - "OnTrigger" "stair_door_6Open0-1" - "OnTrigger" "stair_door_7Open0-1" + "OnTrigger" "stair_door_1Open0.07-1" + "OnTrigger" "stair_door_2Open0.06-1" + "OnTrigger" "stair_door_3Open0.05-1" + "OnTrigger" "stair_door_4Open0.04-1" + "OnTrigger" "stair_door_5Open0.03-1" + "OnTrigger" "stair_door_6Open0.02-1" + "OnTrigger" "stair_door_7Open0.01-1" "OnTrigger" "stair_door_8Open0-1" "OnTrigger" "pistons_lowerOpen0-1" "OnTrigger" "@commandCommandcc_emit World.PaintPistonStart0-1" @@ -16582,15 +16661,15 @@ entity connections { "OnTrigger" "stair_clipClose0-1" - "OnTrigger" "stair_door_1Close0-1" - "OnTrigger" "stair_door_2Close0-1" - "OnTrigger" "stair_door_3Close0-1" - "OnTrigger" "stair_door_4Close0-1" - "OnTrigger" "stair_door_5Close0-1" - "OnTrigger" "stair_door_6Close0-1" - "OnTrigger" "stair_door_7Close0-1" + "OnTrigger" "stair_door_1Close0.07-1" + "OnTrigger" "stair_door_2Close0.06-1" + "OnTrigger" "stair_door_3Close0.05-1" + "OnTrigger" "stair_door_4Close0.04-1" + "OnTrigger" "stair_door_5Close0.03-1" + "OnTrigger" "stair_door_6Close0.02-1" + "OnTrigger" "stair_door_7Close0.01-1" "OnTrigger" "stair_door_8Close0-1" - "OnTrigger" "pistons_lowerClose0-1" + "OnTrigger" "pistons_lowerClose0.06-1" "OnSpawn" "branch_toggleTest0.21" "OnTrigger" "@commandCommandcc_emit World.PaintPistonStart0-1" } diff --git a/packages/styles/p1_style/resources/instances/p1/items/track/bottom_grate.vmf b/packages/styles/p1_style/resources/instances/p1/items/track/bottom_grate.vmf index e5babbc6d0..4d5e200795 100644 --- a/packages/styles/p1_style/resources/instances/p1/items/track/bottom_grate.vmf +++ b/packages/styles/p1_style/resources/instances/p1/items/track/bottom_grate.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "6432" - "mapversion" "152" + "editorbuild" "8997" + "mapversion" "153" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "152" + "mapversion" "153" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" diff --git a/packages/styles/p1_style/resources/instances/p1/items/track/platform.vmf b/packages/styles/p1_style/resources/instances/p1/items/track/platform.vmf index 28a888ceeb..635501ec74 100644 --- a/packages/styles/p1_style/resources/instances/p1/items/track/platform.vmf +++ b/packages/styles/p1_style/resources/instances/p1/items/track/platform.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "7335" - "mapversion" "154" + "editorbuild" "9672" + "mapversion" "156" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "154" + "mapversion" "156" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -29,6 +29,32 @@ world "skyname" "sky_black_nofog" } entity +{ + "id" "2005" + "classname" "comp_relay" + "ctrl_type" "0" + "ctrl_value" "1" + "delay" "0.0" + "targetname" "platform" + connections + { + "OnTurnedOn" "cube_enable_motion_triggerDisable0.01-1" + "OnTurnedOn" "track_lift_movelinearSetPosition10-1" + "OnTurnedOn" "cube_enable_motion_triggerEnable0-1" + "OnTurnedOff" "cube_enable_motion_triggerDisable0.01-1" + "OnTurnedOff" "track_lift_movelinearSetPosition00-1" + "OnTurnedOff" "cube_enable_motion_triggerEnable0-1" + } + "origin" "48 0 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity { "id" "1996" "classname" "trigger_multiple" @@ -148,6 +174,7 @@ entity { "id" "2" "classname" "func_movelinear" + "angles" "0 0 0" "blockdamage" "0" "disablereceiveshadows" "0" "movedir" "$travel_direction" @@ -163,15 +190,6 @@ entity "startsound" "plats/a2_laser_over_goo_platform_travel_lp_01.wav" "stopsound" "plats/a2_laser_over_goo_platform_arrive.wav" "targetname" "track_lift_movelinear" - connections - { - "OnUser2" "cube_enable_motion_triggerDisable0.01-1" - "OnUser2" "cube_enable_motion_triggerEnable0-1" - "OnUser2" "track_lift_movelinearSetPosition10-1" - "OnUser1" "cube_enable_motion_triggerDisable0.01-1" - "OnUser1" "cube_enable_motion_triggerEnable0-1" - "OnUser1" "track_lift_movelinearSetPosition00-1" - } solid { "id" "1176" diff --git a/packages/styles/p1_style/resources/instances/p1/items/track/platform_oscillate.vmf b/packages/styles/p1_style/resources/instances/p1/items/track/platform_oscillate.vmf index d776b30d62..efc28cf7a0 100644 --- a/packages/styles/p1_style/resources/instances/p1/items/track/platform_oscillate.vmf +++ b/packages/styles/p1_style/resources/instances/p1/items/track/platform_oscillate.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "7335" - "mapversion" "197" + "editorbuild" "9672" + "mapversion" "200" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "197" + "mapversion" "200" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -29,9 +29,32 @@ world "skyname" "sky_black_nofog" } entity +{ + "id" "3085" + "classname" "comp_relay" + "ctrl_type" "0" + "ctrl_value" "1" + "delay" "0.0" + "targetname" "platform" + connections + { + "OnTurnedOn" "move_rlTrigger0-1" + "OnTurnedOff" "move_rlFireUser10-1" + } + "origin" "48 0 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity { "id" "3073" "classname" "logic_relay" + "angles" "0 0 0" "spawnflags" "0" "targetname" "move_rl" connections @@ -58,6 +81,7 @@ entity { "id" "3075" "classname" "logic_branch" + "angles" "0 0 0" "InitialValue" "1" "targetname" "branch_pos" connections @@ -196,6 +220,7 @@ entity { "id" "2" "classname" "func_movelinear" + "angles" "0 0 0" "blockdamage" "0" "disablereceiveshadows" "0" "movedir" "$travel_direction" diff --git a/packages/styles/p1_style/resources/instances/p1/items/track/single.vmf b/packages/styles/p1_style/resources/instances/p1/items/track/single.vmf index 2a5dfbdd07..8afa22d11d 100644 --- a/packages/styles/p1_style/resources/instances/p1/items/track/single.vmf +++ b/packages/styles/p1_style/resources/instances/p1/items/track/single.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "6432" - "mapversion" "138" + "editorbuild" "9672" + "mapversion" "144" "formatversion" "100" "prefab" "0" } @@ -14,13 +14,13 @@ viewsettings "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "1" + "nGridSpacing" "4" "bShow3DGrid" "0" } world { "id" "1" - "mapversion" "138" + "mapversion" "144" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -28,316 +28,12 @@ world "maxpropscreenwidth" "-1" "skyname" "sky_black_nofog" solid - { - "id" "4891" - side - { - "id" "1698" - "plane" "(-32 -32 -64) (32 -32 -64) (64 -64 -64)" - "material" "METAL/METALWALL048B" - "uaxis" "[0 -1 0 128] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "270" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1697" - "plane" "(56 -56 -72) (32 -32 -72) (-32 -32 -72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1696" - "plane" "(32 -32 -72) (56 -56 -72) (64 -64 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1695" - "plane" "(-32 -32 -72) (32 -32 -72) (32 -32 -64)" - "material" "METAL/METALTRACK001A" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1694" - "plane" "(-56 -56 -72) (-32 -32 -72) (-32 -32 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1693" - "plane" "(56 -56 -72) (-56 -56 -72) (-64 -64 -64)" - "material" "METAL/METALWALL048B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 105 118" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "4892" - side - { - "id" "1704" - "plane" "(64 64 -64) (32 32 -64) (-32 32 -64)" - "material" "METAL/METALWALL048B" - "uaxis" "[0 -1 0 128] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "270" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1703" - "plane" "(-32 32 -72) (32 32 -72) (56 56 -72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1702" - "plane" "(56 56 -72) (32 32 -72) (32 32 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1701" - "plane" "(32 32 -72) (-32 32 -72) (-32 32 -64)" - "material" "METAL/METALTRACK001A" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1700" - "plane" "(-32 32 -72) (-56 56 -72) (-64 64 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1699" - "plane" "(-56 56 -72) (56 56 -72) (64 64 -64)" - "material" "METAL/METALWALL048B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 105 118" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "4893" - side - { - "id" "1722" - "plane" "(32 -32 -64) (32 32 -64) (64 64 -64)" - "material" "METAL/METALWALL048B" - "uaxis" "[0 -1 0 128] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "270" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1721" - "plane" "(56 56 -72) (32 32 -72) (32 -32 -72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1720" - "plane" "(32 32 -72) (56 56 -72) (64 64 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1719" - "plane" "(32 -32 -72) (32 32 -72) (32 32 -64)" - "material" "METAL/METALTRACK001A" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1718" - "plane" "(56 -56 -72) (32 -32 -72) (32 -32 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1717" - "plane" "(56 56 -72) (56 -56 -72) (64 -64 -64)" - "material" "METAL/METALWALL048B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 105 118" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "4894" - side - { - "id" "1728" - "plane" "(-64 64 -64) (-32 32 -64) (-32 -32 -64)" - "material" "METAL/METALWALL048B" - "uaxis" "[0 -1 0 128] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "270" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1727" - "plane" "(-56 -56 -72) (-32 -32 -72) (-32 32 -72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1726" - "plane" "(-56 56 -72) (-32 32 -72) (-32 32 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1725" - "plane" "(-32 32 -72) (-32 -32 -72) (-32 -32 -64)" - "material" "METAL/METALTRACK001A" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1724" - "plane" "(-32 -32 -72) (-56 -56 -72) (-64 -64 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1723" - "plane" "(-56 -56 -72) (-56 56 -72) (-64 64 -64)" - "material" "METAL/METALWALL048B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 105 118" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid { "id" "4307" side { "id" "1264" - "plane" "(-56 55 -187) (-55 55 -187) (-55 55 -72)" + "plane" "(-56 56 -68) (-60 56 -68) (-60 56 -187)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -348,7 +44,7 @@ world side { "id" "1263" - "plane" "(-55 -55 -187) (-56 -55 -187) (-56 -55 -72)" + "plane" "(-60 -56 -68) (-56 -56 -68) (-56 -56 -187)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -359,7 +55,7 @@ world side { "id" "1262" - "plane" "(-56 -55 -187) (-55 -55 -187) (-55 55 -187)" + "plane" "(-60 -56 -187) (-56 -56 -187) (-56 56 -187)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 48] 0.25" @@ -370,7 +66,7 @@ world side { "id" "1261" - "plane" "(-55 -55 -72) (-56 -55 -72) (-56 55 -72)" + "plane" "(-60 56 -68) (-56 56 -68) (-56 -56 -68)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 48] 0.25" @@ -381,7 +77,7 @@ world side { "id" "1260" - "plane" "(-55 55 -72) (-55 55 -187) (-55 -55 -187)" + "plane" "(-56 -56 -187) (-56 -56 -68) (-56 56 -68)" "material" "METAL/METALWALL_BTS_006B_GRADIENT" "uaxis" "[0 -1 0 256] 0.25" "vaxis" "[0 0 1 240] 0.25" @@ -392,7 +88,7 @@ world side { "id" "1259" - "plane" "(-56 -55 -72) (-56 -55 -187) (-56 55 -187)" + "plane" "(-60 56 -187) (-60 56 -68) (-60 -56 -68)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" "vaxis" "[0 -1 0 48] 0.25" @@ -413,7 +109,7 @@ world side { "id" "1270" - "plane" "(56 -55 -72) (55 -55 -72) (55 55 -72)" + "plane" "(56 56 -68) (60 56 -68) (60 -56 -68)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -424,7 +120,7 @@ world side { "id" "1269" - "plane" "(55 -55 -187) (56 -55 -187) (56 55 -187)" + "plane" "(56 -56 -187) (60 -56 -187) (60 56 -187)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -435,7 +131,7 @@ world side { "id" "1268" - "plane" "(55 55 -187) (56 55 -187) (56 55 -72)" + "plane" "(60 56 -68) (56 56 -68) (56 56 -187)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 -48] 0.25" @@ -446,7 +142,7 @@ world side { "id" "1267" - "plane" "(56 -55 -187) (55 -55 -187) (55 -55 -72)" + "plane" "(56 -56 -68) (60 -56 -68) (60 -56 -187)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 -48] 0.25" @@ -457,7 +153,7 @@ world side { "id" "1266" - "plane" "(56 55 -187) (56 -55 -187) (56 -55 -72)" + "plane" "(60 -56 -68) (60 56 -68) (60 56 -187)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 -48] 0.25" @@ -468,7 +164,7 @@ world side { "id" "1265" - "plane" "(55 -55 -187) (55 55 -187) (55 55 -72)" + "plane" "(56 56 -68) (56 -56 -68) (56 -56 -187)" "material" "METAL/METALWALL_BTS_006B_GRADIENT" "uaxis" "[0 1 0 256] 0.25" "vaxis" "[0 0 1 240] 0.25" @@ -489,7 +185,7 @@ world side { "id" "1276" - "plane" "(55 -55 -187) (-55 -55 -187) (-55 55 -187)" + "plane" "(-56 -56 -187) (-56 56 -187) (56 56 -187)" "material" "BEE2/P1/ORANGE_NOGLOW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -500,7 +196,7 @@ world side { "id" "1275" - "plane" "(-55 -55 -188) (55 -55 -188) (55 55 -188)" + "plane" "(-56 56 -188) (-56 -56 -188) (56 -56 -188)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -511,7 +207,7 @@ world side { "id" "1274" - "plane" "(-55 55 -188) (55 55 -188) (55 55 -187)" + "plane" "(56 56 -188) (56 56 -187) (-56 56 -187)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 -48] 0.25" @@ -522,7 +218,7 @@ world side { "id" "1273" - "plane" "(55 -55 -188) (-55 -55 -188) (-55 -55 -187)" + "plane" "(-56 -56 -188) (-56 -56 -187) (56 -56 -187)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 -48] 0.25" @@ -533,7 +229,7 @@ world side { "id" "1272" - "plane" "(55 55 -188) (55 -55 -188) (55 -55 -187)" + "plane" "(56 -56 -188) (56 -56 -187) (56 56 -187)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 -48] 0.25" @@ -544,7 +240,7 @@ world side { "id" "1271" - "plane" "(-55 -55 -188) (-55 55 -188) (-55 55 -187)" + "plane" "(-56 56 -188) (-56 56 -187) (-56 -56 -187)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 -48] 0.25" @@ -564,8 +260,8 @@ world "id" "4314" side { - "id" "1306" - "plane" "(32 -32 -72) (-32 -32 -72) (-32 -32 -64)" + "id" "1734" + "plane" "(0 -48 -72) (-32 -48 -72) (-32 -48 -64)" "material" "TOOLS/TOOLSSKIP" "uaxis" "[0 0 1 16] 0.25" "vaxis" "[1 0 0 0] 0.25" @@ -575,8 +271,8 @@ world } side { - "id" "1305" - "plane" "(-32 32 -72) (32 32 -72) (32 32 -64)" + "id" "1733" + "plane" "(-32 48 -72) (0 48 -72) (0 48 -64)" "material" "TOOLS/TOOLSSKIP" "uaxis" "[0 0 1 16] 0.25" "vaxis" "[1 0 0 0] 0.25" @@ -586,8 +282,8 @@ world } side { - "id" "1304" - "plane" "(32 32 -72) (-32 32 -72) (-32 -32 -72)" + "id" "1732" + "plane" "(0 48 -72) (-32 48 -72) (-32 -48 -72)" "material" "TOOLS/TOOLSSKIP" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 1 0 16] 0.25" @@ -597,8 +293,8 @@ world } side { - "id" "1303" - "plane" "(32 -32 -64) (-32 -32 -64) (-32 32 -64)" + "id" "1731" + "plane" "(0 -48 -64) (-32 -48 -64) (-32 48 -64)" "material" "TOOLS/TOOLSHINT" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 1 0 16] 0.25" @@ -608,8 +304,8 @@ world } side { - "id" "1302" - "plane" "(-32 -32 -64) (-32 -32 -72) (-32 32 -72)" + "id" "1730" + "plane" "(-32 -48 -64) (-32 -48 -72) (-32 48 -72)" "material" "TOOLS/TOOLSSKIP" "uaxis" "[0 0 1 16] 0.25" "vaxis" "[0 1 0 16] 0.25" @@ -619,8 +315,8 @@ world } side { - "id" "1301" - "plane" "(32 32 -64) (32 32 -72) (32 -32 -72)" + "id" "1729" + "plane" "(0 48 -64) (0 48 -72) (0 -48 -72)" "material" "TOOLS/TOOLSSKIP" "uaxis" "[0 0 1 16] 0.25" "vaxis" "[0 1 0 16] 0.25" @@ -637,89 +333,89 @@ world } solid { - "id" "4315" + "id" "4465" side { - "id" "1312" - "plane" "(56 -56 -184) (-56 -56 -184) (-56 -56 -64)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[0 0 1 16] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "id" "1348" + "plane" "(60 60 -68) (60 56 -68) (-60 56 -68)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1311" - "plane" "(-56 56 -184) (56 56 -184) (56 56 -64)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[0 0 1 16] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "id" "1347" + "plane" "(60 56 -187) (60 60 -187) (-60 60 -187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1310" - "plane" "(-56 -56 -184) (56 -56 -184) (56 56 -184)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 1 0 16] 0.25" + "id" "1346" + "plane" "(-60 60 -68) (-60 56 -68) (-60 56 -187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1309" - "plane" "(56 -56 -64) (-56 -56 -64) (-56 56 -64)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 1 0 16] 0.25" + "id" "1345" + "plane" "(60 56 -68) (60 60 -68) (60 60 -187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1308" - "plane" "(-56 -56 -64) (-56 -56 -184) (-56 56 -184)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[0 0 1 16] 0.25" - "vaxis" "[0 1 0 16] 0.25" + "id" "1344" + "plane" "(60 60 -68) (-60 60 -68) (-60 60 -187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1307" - "plane" "(56 56 -64) (56 56 -184) (56 -56 -184)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[0 0 1 16] 0.25" - "vaxis" "[0 1 0 16] 0.25" + "id" "1343" + "plane" "(-60 56 -68) (60 56 -68) (60 56 -187)" + "material" "METAL/METALWALL_BTS_006B_GRADIENT" + "uaxis" "[-1 0 0 256] 0.25" + "vaxis" "[0 0 1 240] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 242 247" + "color" "0 128 113" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "4465" + "id" "4466" side { - "id" "1348" - "plane" "(55 56 -72) (55 55 -72) (-55 55 -72)" + "id" "1354" + "plane" "(-60 -56 -68) (-60 -60 -68) (-60 -60 -187)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 0 1 32] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -727,84 +423,8 @@ world } side { - "id" "1347" - "plane" "(55 55 -187) (55 56 -187) (-55 56 -187)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1346" - "plane" "(-55 55 -187) (-55 56 -187) (-55 56 -72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -48] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1345" - "plane" "(55 56 -187) (55 55 -187) (55 55 -72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -48] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1344" - "plane" "(-55 56 -187) (55 56 -187) (55 56 -72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -48] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1343" - "plane" "(55 55 -187) (-55 55 -187) (-55 55 -72)" - "material" "METAL/METALWALL_BTS_006B_GRADIENT" - "uaxis" "[-1 0 0 256] 0.25" - "vaxis" "[0 0 1 240] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 128 113" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "4466" - side - { - "id" "1354" - "plane" "(-55 -56 -187) (-55 -55 -187) (-55 -55 -72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1353" - "plane" "(55 -55 -187) (55 -56 -187) (55 -56 -72)" + "id" "1353" + "plane" "(60 -60 -68) (60 -56 -68) (60 -56 -187)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -815,7 +435,7 @@ world side { "id" "1352" - "plane" "(55 -56 -187) (55 -55 -187) (-55 -55 -187)" + "plane" "(60 -60 -187) (60 -56 -187) (-60 -56 -187)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[1 0 0 -16] 0.25" @@ -826,7 +446,7 @@ world side { "id" "1351" - "plane" "(55 -55 -72) (55 -56 -72) (-55 -56 -72)" + "plane" "(60 -56 -68) (60 -60 -68) (-60 -60 -68)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[1 0 0 -16] 0.25" @@ -837,7 +457,7 @@ world side { "id" "1350" - "plane" "(-55 -55 -72) (-55 -55 -187) (55 -55 -187)" + "plane" "(60 -56 -187) (60 -56 -68) (-60 -56 -68)" "material" "METAL/METALWALL_BTS_006B_GRADIENT" "uaxis" "[1 0 0 256] 0.25" "vaxis" "[0 0 1 240] 0.25" @@ -848,7 +468,7 @@ world side { "id" "1349" - "plane" "(55 -56 -72) (55 -56 -187) (-55 -56 -187)" + "plane" "(-60 -60 -187) (-60 -60 -68) (60 -60 -68)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 1 32] 0.25" "vaxis" "[1 0 0 -16] 0.25" @@ -863,1100 +483,6 @@ world "visgroupautoshown" "1" } } - group - { - "id" "4509" - editor - { - "color" "254 211 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } -} -entity -{ - "id" "4496" - "classname" "func_detail" - solid - { - "id" "4490" - side - { - "id" "1372" - "plane" "(32 -32 -70) (-32 -32 -70) (-32 -32 -68)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 16] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1371" - "plane" "(-32 32 -70) (32 32 -70) (32 32 -68)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 16] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1370" - "plane" "(32 32 -70) (-32 32 -70) (-32 -32 -70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1369" - "plane" "(32 -32 -68) (-32 -32 -68) (-32 32 -68)" - "material" "METAL/METALGRATE018B" - "uaxis" "[-1 0 0 128] 0.25" - "vaxis" "[0 1 0 128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1368" - "plane" "(-32 -32 -68) (-32 -32 -70) (-32 32 -70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 16] 0.25" - "vaxis" "[0 1 0 16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1367" - "plane" "(32 32 -68) (32 32 -70) (32 -32 -70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 16] 0.25" - "vaxis" "[0 1 0 16] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 7000]" - } -} -entity -{ - "id" "4516" - "classname" "func_brush" - "disableflashlight" "0" - "disablereceiveshadows" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "InputFilter" "0" - "invert_exclusion" "0" - "origin" "0 0 0" - "renderamt" "255" - "rendercolor" "255 255 255" - "renderfx" "0" - "rendermode" "10" - "shadowdepthnocache" "0" - "solidbsp" "0" - "Solidity" "2" - "spawnflags" "2" - "StartDisabled" "0" - "targetname" "track_lift_movelinear" - "vrad_brush_cast_shadows" "0" - solid - { - "id" "4517" - side - { - "id" "1513" - "plane" "(64 18 -64) (0 18 64) (-60 64 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.2178] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1512" - "plane" "(-60 -64 64) (0 -19 64) (64 -19 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -20.2178] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1511" - "plane" "(-60 64 64) (0 18 64) (0 -19 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 8.2178] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1510" - "plane" "(0 18 64) (64 18 -64) (64 -19 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-0.361322 0 0.932441 -7.48128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1509" - "plane" "(-60 -64 64) (64 -19 -64) (64 18 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "254 211 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "4518" - side - { - "id" "1518" - "plane" "(-60 -64 64) (-60 -64 -64) (-60 64 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1517" - "plane" "(-60 64 64) (-60 64 -64) (64 18 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 16.2178] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1516" - "plane" "(64 -19 -64) (-60 -64 -64) (-60 -64 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -20.2178] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1515" - "plane" "(64 18 -64) (-60 64 -64) (-60 -64 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 -8.2178] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1514" - "plane" "(-60 -64 64) (-60 64 64) (64 18 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "254 211 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "4620" - side - { - "id" "1525" - "plane" "(-64 -64 64) (-60 -64 64) (-60 -64 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1526" - "plane" "(-64 64 -64) (-60 64 -64) (-60 64 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1527" - "plane" "(-64 -64 64) (-64 -64 -64) (-64 64 -64)" - "material" "GLASS/GLASSWINDOW_FROSTED_002" - "uaxis" "[0 0 1 6] 0.25" - "vaxis" "[0 1 0 6] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1528" - "plane" "(-60 64 64) (-60 64 -64) (-60 -64 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1529" - "plane" "(-60 -64 64) (-64 -64 64) (-64 64 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1530" - "plane" "(-60 64 -64) (-64 64 -64) (-64 -64 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "254 211 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "254 211 0" - "groupid" "4509" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[500 3500]" - } -} -entity -{ - "id" "3967" - "classname" "func_detail" - "disableX360" "0" - "maxcpulevel" "0" - "maxgpulevel" "0" - "mincpulevel" "0" - "mingpulevel" "0" - solid - { - "id" "4256" - side - { - "id" "1162" - "plane" "(-54 15 6) (-54 11 11) (-54 6 15)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1161" - "plane" "(-54 16 -0.0161097) (0 16 0) (6 15 6)" - "material" "BEE2/P1/METAL_LIFT001" - "uaxis" "[0 0 1 64] 0.25" - "vaxis" "[1 0 0 216] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1160" - "plane" "(-54 15 6) (6 15 6) (11 11.0117 11)" - "material" "BEE2/P1/METAL_LIFT001" - "uaxis" "[0 0 1 64] 0.25" - "vaxis" "[1 0 0 216] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1159" - "plane" "(-54 6 15) (-54 11 11) (11 11.0117 11)" - "material" "BEE2/P1/METAL_LIFT001" - "uaxis" "[0 1 0 64] 0.25" - "vaxis" "[1 0 0 216] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1158" - "plane" "(-54 0 16) (-54 6 15) (15 6.01171 15)" - "material" "BEE2/P1/METAL_LIFT001" - "uaxis" "[0 1 0 64] 0.25" - "vaxis" "[1 0 0 216] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1157" - "plane" "(-54 -5.98206 15) (-54 0 16) (16 0 16)" - "material" "BEE2/P1/METAL_LIFT001" - "uaxis" "[0 1 0 64] 0.25" - "vaxis" "[1 0 0 216] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1156" - "plane" "(-54 -5.98206 15) (15 -6 15) (11 -11 11)" - "material" "BEE2/P1/METAL_LIFT001" - "uaxis" "[0 1 0 64] 0.25" - "vaxis" "[1 0 0 216] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1155" - "plane" "(-54 -11 11) (11 -11 11) (5.98828 -15 5.98854)" - "material" "BEE2/P1/METAL_LIFT001" - "uaxis" "[0 0 1 64] 0.25" - "vaxis" "[1 0 0 216] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1154" - "plane" "(-54 -16 0) (-54 -15 5.98804) (5.98828 -15 5.98854)" - "material" "BEE2/P1/METAL_LIFT001" - "uaxis" "[0 0 1 64] 0.25" - "vaxis" "[1 0 0 216] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1153" - "plane" "(-54 -15 -6) (-54 -16 0) (0 -16 0)" - "material" "BEE2/P1/METAL_LIFT001" - "uaxis" "[0 0 1 64] 0.25" - "vaxis" "[1 0 0 216] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1152" - "plane" "(-54 -11.0106 -11) (-54 -15 -6) (-6 -15 -6)" - "material" "BEE2/P1/METAL_LIFT001" - "uaxis" "[0 0 1 64] 0.25" - "vaxis" "[1 0 0 216] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1151" - "plane" "(-54 -6 -15) (-54 -11.0106 -11) (-11 -11.0175 -11)" - "material" "BEE2/P1/METAL_LIFT001" - "uaxis" "[0 1 0 64] 0.25" - "vaxis" "[1 0 0 216] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1150" - "plane" "(-54 0 -16) (-54 -6 -15) (-15 -6 -15)" - "material" "BEE2/P1/METAL_LIFT001" - "uaxis" "[0 1 0 64] 0.25" - "vaxis" "[1 0 0 216] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1149" - "plane" "(-54 5.98594 -15) (-54 0 -16) (-16 0 -16)" - "material" "BEE2/P1/METAL_LIFT001" - "uaxis" "[0 1 0 64] 0.25" - "vaxis" "[1 0 0 216] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1148" - "plane" "(-54 5.98594 -15) (-15 6 -15) (-11 11 -11)" - "material" "BEE2/P1/METAL_LIFT001" - "uaxis" "[0 1 0 64] 0.25" - "vaxis" "[1 0 0 216] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1147" - "plane" "(-54 11.0227 -10.9819) (-11 11 -11) (-6 15 -6)" - "material" "BEE2/P1/METAL_LIFT001" - "uaxis" "[0 0 1 64] 0.25" - "vaxis" "[1 0 0 216] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1146" - "plane" "(-54 15 -6) (-6 15 -6) (0 16 0)" - "material" "BEE2/P1/METAL_LIFT001" - "uaxis" "[0 0 1 64] 0.25" - "vaxis" "[1 0 0 216] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1145" - "plane" "(11 11.0117 11) (6 15 6) (0 16 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "4257" - side - { - "id" "1168" - "plane" "(-59 -58 58) (-59 -58 -58) (-60 -58 -58)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -8] 0.25" - "vaxis" "[0 0 -1 -6] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1167" - "plane" "(-60 58 58) (-60 58 -58) (-59 58 -58)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -8] 0.25" - "vaxis" "[0 0 -1 -6] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1166" - "plane" "(-60 -58 58) (-60 -58 -58) (-60 58 -58)" - "material" "GLASS/GLASSWINDOW_FROSTED_002" - "uaxis" "[0 0 1 6] 0.25" - "vaxis" "[0 1 0 6] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1165" - "plane" "(-59 58 58) (-59 58 -58) (-59 -58 -58)" - "material" "GLASS/GLASSWINDOW_FROSTED_002" - "uaxis" "[0 0 1 6] 0.25" - "vaxis" "[0 1 0 6] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1164" - "plane" "(-59 -58 58) (-60 -58 58) (-60 58 58)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -8] 0.25" - "vaxis" "[0 1 0 6] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1163" - "plane" "(-59 58 -58) (-60 58 -58) (-60 -58 -58)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -8] 0.25" - "vaxis" "[0 1 0 6] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "4259" - side - { - "id" "1204" - "plane" "(11 11 -188) (6 15 -188) (0 16 -188)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1203" - "plane" "(0 16 -64) (0 16 -188) (6 15 -188)" - "material" "BEE2/P1/METAL_LIFT001_GRADIENT" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 0 -1 -240] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1202" - "plane" "(6 15 -64) (6 15 -188) (11 11 -188)" - "material" "BEE2/P1/METAL_LIFT001_GRADIENT" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 0 -1 -240] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1201" - "plane" "(11 11 -64) (11 11 -188) (15 6 -188)" - "material" "BEE2/P1/METAL_LIFT001_GRADIENT" - "uaxis" "[0 1 0 64] 0.25" - "vaxis" "[0 0 -1 -240] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1200" - "plane" "(15 6 -64) (15 6 -188) (16 0 -188)" - "material" "BEE2/P1/METAL_LIFT001_GRADIENT" - "uaxis" "[0 1 0 64] 0.25" - "vaxis" "[0 0 -1 -240] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1199" - "plane" "(16 0 -64) (16 0 -188) (15 -6 -188)" - "material" "BEE2/P1/METAL_LIFT001_GRADIENT" - "uaxis" "[0 1 0 64] 0.25" - "vaxis" "[0 0 -1 -240] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1198" - "plane" "(15 -6 -64) (15 -6 -188) (11 -11 -188)" - "material" "BEE2/P1/METAL_LIFT001_GRADIENT" - "uaxis" "[0 1 0 64] 0.25" - "vaxis" "[0 0 -1 -240] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1197" - "plane" "(11 -11.0108 -64) (11 -11.0108 -188) (6 -15 -188)" - "material" "BEE2/P1/METAL_LIFT001_GRADIENT" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 0 -1 -240] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1196" - "plane" "(6 -15 -64) (6 -15 -188) (0 -16 -188)" - "material" "BEE2/P1/METAL_LIFT001_GRADIENT" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 0 -1 -240] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1195" - "plane" "(0 -16 -64) (0 -16 -188) (-6 -15 -188)" - "material" "BEE2/P1/METAL_LIFT001_GRADIENT" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 0 -1 -240] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1194" - "plane" "(-6 -15 -64) (-6 -15 -188) (-11 -11 -188)" - "material" "BEE2/P1/METAL_LIFT001_GRADIENT" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 0 -1 -240] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1193" - "plane" "(-11 -11 -64) (-11 -11 -188) (-15 -6 -188)" - "material" "BEE2/P1/METAL_LIFT001_GRADIENT" - "uaxis" "[0 1 0 64] 0.25" - "vaxis" "[0 0 -1 -240] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1192" - "plane" "(-15 -6 -64) (-15 -6 -188) (-16 0 -188)" - "material" "BEE2/P1/METAL_LIFT001_GRADIENT" - "uaxis" "[0 1 0 64] 0.25" - "vaxis" "[0 0 -1 -240] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1191" - "plane" "(-16 0 -64) (-16 0 -188) (-15 6 -188)" - "material" "BEE2/P1/METAL_LIFT001_GRADIENT" - "uaxis" "[0 1 0 64] 0.25" - "vaxis" "[0 0 -1 -240] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1190" - "plane" "(-15 6 -64) (-15 6 -188) (-10.9702 11.0344 -188)" - "material" "BEE2/P1/METAL_LIFT001_GRADIENT" - "uaxis" "[0 1 0 64] 0.25" - "vaxis" "[0 0 -1 -240] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1189" - "plane" "(-10.9827 11.0217 -64) (-10.9827 11.0217 -188) (-6 15 -188)" - "material" "BEE2/P1/METAL_LIFT001_GRADIENT" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 0 -1 -240] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1188" - "plane" "(-6 15 -64) (-6 15 -188) (0 16 -188)" - "material" "BEE2/P1/METAL_LIFT001_GRADIENT" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 0 -1 -240] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1187" - "plane" "(0 16 -64) (6 15 -64) (11 11 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "4258" - side - { - "id" "1186" - "plane" "(0 16 0) (0 16 -64) (6 15 -64)" - "material" "BEE2/P1/METAL_LIFT001" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 0 -1 -240] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1185" - "plane" "(6 15 6) (6 15 -64) (11 11 -64)" - "material" "BEE2/P1/METAL_LIFT001" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 0 -1 -240] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1184" - "plane" "(11 11 11) (11 11 -64) (15 6 -64)" - "material" "BEE2/P1/METAL_LIFT001" - "uaxis" "[0 1 0 64] 0.25" - "vaxis" "[0 0 -1 -240] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1183" - "plane" "(15 6 15) (15 6 -64) (16 0 -64)" - "material" "BEE2/P1/METAL_LIFT001" - "uaxis" "[0 1 0 64] 0.25" - "vaxis" "[0 0 -1 -240] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1182" - "plane" "(16 0 16) (16 0 -64) (15 -6 -64)" - "material" "BEE2/P1/METAL_LIFT001" - "uaxis" "[0 1 0 64] 0.25" - "vaxis" "[0 0 -1 -240] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1181" - "plane" "(15 -6 15) (15 -6 -64) (11 -11 -64)" - "material" "BEE2/P1/METAL_LIFT001" - "uaxis" "[0 1 0 64] 0.25" - "vaxis" "[0 0 -1 -240] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1180" - "plane" "(11 -11.0113 10.9883) (11 -11.0113 -64) (6 -15 -64)" - "material" "BEE2/P1/METAL_LIFT001" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 0 -1 -240] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1179" - "plane" "(6 -15 6) (6 -15 -64) (0 -16 -64)" - "material" "BEE2/P1/METAL_LIFT001" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 0 -1 -240] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1178" - "plane" "(0 -16 0) (0 -16 -64) (-6 -15 -64)" - "material" "BEE2/P1/METAL_LIFT001" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 0 -1 -240] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1177" - "plane" "(-6 -15 -6) (-6 -15 -64) (-11 -11 -64)" - "material" "BEE2/P1/METAL_LIFT001" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 0 -1 -240] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1176" - "plane" "(-11 -11 -11) (-11 -11 -64) (-15 -6 -64)" - "material" "BEE2/P1/METAL_LIFT001" - "uaxis" "[0 1 0 64] 0.25" - "vaxis" "[0 0 -1 -240] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1175" - "plane" "(-15 -6 -15) (-15 -6 -64) (-16 0 -64)" - "material" "BEE2/P1/METAL_LIFT001" - "uaxis" "[0 1 0 64] 0.25" - "vaxis" "[0 0 -1 -240] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1174" - "plane" "(-16 0 -16) (-16 0 -64) (-15 6 -64)" - "material" "BEE2/P1/METAL_LIFT001" - "uaxis" "[0 1 0 64] 0.25" - "vaxis" "[0 0 -1 -240] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1173" - "plane" "(-15 6 -15) (-15 6 -64) (-11 11 -64)" - "material" "BEE2/P1/METAL_LIFT001" - "uaxis" "[0 1 0 64] 0.25" - "vaxis" "[0 0 -1 -240] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1172" - "plane" "(-11 11 -11) (-11 11 -64) (-6 15 -64)" - "material" "BEE2/P1/METAL_LIFT001" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 0 -1 -240] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1171" - "plane" "(-6 15 -6) (-6 15 -64) (0 16 -64)" - "material" "BEE2/P1/METAL_LIFT001" - "uaxis" "[1 0 0 64] 0.25" - "vaxis" "[0 0 -1 -240] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1170" - "plane" "(0 16 0) (6 15 6) (11 11.0114 11)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1169" - "plane" "(11 11 -64) (6 15 -64) (0 16 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 500]" - } -} -entity -{ - "id" "453" - "classname" "prop_dynamic" - "angles" "0 270 90" - "DisableBoneFollowers" "0" - "disablereceiveshadows" "0" - "disableshadowdepth" "1" - "disableshadows" "1" - "drawinfastreflection" "1" - "ExplodeDamage" "0" - "ExplodeRadius" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "HoldAnimation" "0" - "MaxAnimTime" "10" - "MinAnimTime" "5" - "model" "models/props/lift_platform.mdl" - "PerformanceMode" "0" - "pressuredelay" "0" - "RandomAnimation" "0" - "renderamt" "255" - "rendercolor" "255 255 255" - "renderfx" "0" - "rendermode" "0" - "SetBodyGroup" "0" - "shadowdepthnocache" "0" - "skin" "0" - "solid" "6" - "spawnflags" "0" - "StartDisabled" "0" - "SuppressAnimSounds" "0" - "origin" "-54 0 0" - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 500]" - } } cameras { diff --git a/packages/styles/p1_style/resources/materials/BEE2/p1/plasticwall003a_tall.vmt b/packages/styles/p1_style/resources/materials/BEE2/p1/plasticwall003a_tall.vmt new file mode 100644 index 0000000000..02cda9ed5e --- /dev/null +++ b/packages/styles/p1_style/resources/materials/BEE2/p1/plasticwall003a_tall.vmt @@ -0,0 +1,8 @@ +LightmappedGeneric + { + $basetexture "BEE2/p1/plasticwall003a_tall" + $bumpmap "BEE2/p1/plasticwall003a_tall_ssbump" + $ssbump 1 + %noportal 1 + %nopaint 1 + } diff --git a/packages/styles/p1_style/resources/materials/BEE2/p1/plasticwall003a_tall.vtf b/packages/styles/p1_style/resources/materials/BEE2/p1/plasticwall003a_tall.vtf new file mode 100644 index 0000000000..9e6aad2f55 Binary files /dev/null and b/packages/styles/p1_style/resources/materials/BEE2/p1/plasticwall003a_tall.vtf differ diff --git a/packages/styles/p1_style/resources/materials/BEE2/p1/plasticwall003a_tall_ssbump.vtf b/packages/styles/p1_style/resources/materials/BEE2/p1/plasticwall003a_tall_ssbump.vtf new file mode 100644 index 0000000000..683afe26ff Binary files /dev/null and b/packages/styles/p1_style/resources/materials/BEE2/p1/plasticwall003a_tall_ssbump.vtf differ diff --git a/packages/styles/p1_style/styles/p1/vbsp_config.cfg b/packages/styles/p1_style/styles/p1/vbsp_config.cfg index d88f5943b1..35ce98e85b 100644 --- a/packages/styles/p1_style/styles/p1/vbsp_config.cfg +++ b/packages/styles/p1_style/styles/p1/vbsp_config.cfg @@ -173,14 +173,6 @@ // Override the brushes used to generate tiles. "_tiling_template_" "BEE2_PORTAL_1_TILING_TEMPLATE" - - // Scaling templates - glass is horizontal on walls, but diagonal on floor/ceiling. - // Grating is also diagonal. - "glass_template" "BEE2_P1_GLASS_TEMPLATE" - "grating_template" "BEE2_P1_GRATING_TEMPLATE" - - "glass_floorbeam_temp" "BEE2_P1_GLASS_BEAM" - "glass_floorbeam_sep" "1" } "Conditions" { diff --git a/packages/styles/p1_style/templates/glass_floor_beam.vmf b/packages/styles/p1_style/templates/glass_floor_beam.vmf index 070982fa90..d6364a1f7f 100644 --- a/packages/styles/p1_style/templates/glass_floor_beam.vmf +++ b/packages/styles/p1_style/templates/glass_floor_beam.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "7552" - "mapversion" "11" + "editorbuild" "9672" + "mapversion" "16" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "11" + "mapversion" "16" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -33,7 +33,7 @@ world side { "id" "30" - "plane" "(0 -1 2) (0 1 2) (32 1 2)" + "plane" "(0 -1 8) (0 1 8) (32 1 8)" "material" "PLASTIC/PLASTICWALL004A" "uaxis" "[1 0 0 -64] 0.25" "vaxis" "[0 -1 0 8] 0.125" @@ -44,7 +44,7 @@ world side { "id" "29" - "plane" "(0 1 -2) (0 -1 -2) (32 -1 -2)" + "plane" "(0 1 0) (0 -1 0) (32 -1 0)" "material" "PLASTIC/PLASTICWALL004A" "uaxis" "[1 0 0 -64] 0.25" "vaxis" "[0 -1 0 8] 0.125" @@ -55,32 +55,32 @@ world side { "id" "28" - "plane" "(0 -1 -2) (0 1 -2) (0 1 2)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[0 1 0 -72] 0.125" - "vaxis" "[0 0 -1 8] 0.25" - "rotation" "0" + "plane" "(0 -1 0) (0 1 0) (0 1 8)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 0 1 16] 0.125" + "vaxis" "[0 1 0 32] 0.125" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { "id" "27" - "plane" "(32 1 -2) (32 -1 -2) (32 -1 2)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[0 -1 0 40] 0.125" - "vaxis" "[0 0 -1 8] 0.25" - "rotation" "0" + "plane" "(32 1 0) (32 -1 0) (32 -1 8)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 0 1 16] 0.125" + "vaxis" "[0 1 0 32] 0.125" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { "id" "26" - "plane" "(0 1 -2) (32 1 -2) (32 1 2)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[-1 0 0 80] 0.25" - "vaxis" "[0 0 -1 8] 0.25" + "plane" "(0 1 0) (32 1 0) (32 1 8)" + "material" "BEE2/NO_PAINT/PLASTICWALL001A" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -88,10 +88,10 @@ world side { "id" "25" - "plane" "(32 -1 -2) (0 -1 -2) (0 -1 2)" - "material" "PLASTIC/PLASTICWALL004A" - "uaxis" "[-1 0 0 48] 0.25" - "vaxis" "[0 0 -1 8] 0.25" + "plane" "(32 -1 0) (0 -1 0) (0 -1 8)" + "material" "BEE2/NO_PAINT/PLASTICWALL001A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" diff --git a/packages/styles/p1_style/templates/glass_frame_corner_flat.vmf b/packages/styles/p1_style/templates/glass_frame_corner_flat.vmf new file mode 100644 index 0000000000..5f442ba960 --- /dev/null +++ b/packages/styles/p1_style/templates/glass_frame_corner_flat.vmf @@ -0,0 +1,143 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "80" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "4" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "80" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" +} +entity +{ + "id" "667" + "classname" "bee2_template_conf" + "detail_auto_visgroup" "0" + "discard_brushes" "0" + "temp_type" "default" + "template_id" "BEE2_BARRIER_PLASTICWALL_FRAME_CONCAVE_CORNER_FLAT" + "origin" "0 0 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "659" + "classname" "func_detail" + solid + { + "id" "660" + side + { + "id" "59" + "plane" "(4 0 0) (0 0 0) (0 0 8)" + "material" "BEE2/NO_PAINT/PLASTICWALL001A" + "uaxis" "[-1 0 0 44] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58" + "plane" "(0 4 0) (4 4 0) (4 4 8)" + "material" "BEE2/NO_PAINT/PLASTICWALL001A" + "uaxis" "[-1 0 0 44] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57" + "plane" "(4 4 0) (0 4 0) (0 0 0)" + "material" "BEE2/NO_PAINT/PLASTICWALL001A" + "uaxis" "[-1 0 0 0] 0.5" + "vaxis" "[0 -1 0 8] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56" + "plane" "(4 0 8) (0 0 8) (0 4 8)" + "material" "BEE2/NO_PAINT/PLASTICWALL001A" + "uaxis" "[-1 0 0 0] 0.5" + "vaxis" "[0 -1 0 8] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55" + "plane" "(0 0 8) (0 0 0) (0 4 0)" + "material" "BEE2/NO_PAINT/PLASTICWALL001A" + "uaxis" "[0 -1 0 60] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "54" + "plane" "(4 4 8) (4 4 0) (4 0 0)" + "material" "BEE2/NO_PAINT/PLASTICWALL001A" + "uaxis" "[0 1 0 -100] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 -10768]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/styles/p1_style/templates/glass_frame_corner_wall.vmf b/packages/styles/p1_style/templates/glass_frame_corner_wall.vmf new file mode 100644 index 0000000000..5fdbe9232b --- /dev/null +++ b/packages/styles/p1_style/templates/glass_frame_corner_wall.vmf @@ -0,0 +1,143 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "81" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "4" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "81" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" +} +entity +{ + "id" "667" + "classname" "bee2_template_conf" + "detail_auto_visgroup" "0" + "discard_brushes" "0" + "temp_type" "default" + "template_id" "BEE2_BARRIER_PLASTICWALL_FRAME_CONCAVE_CORNER_WALL" + "origin" "0 0 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "659" + "classname" "func_detail" + solid + { + "id" "660" + side + { + "id" "59" + "plane" "(8 0 0) (0 0 0) (0 0 8)" + "material" "BEE2/NO_PAINT/PLASTICWALL001A" + "uaxis" "[-1 0 0 44] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58" + "plane" "(0 4 0) (8 4 0) (8 4 8)" + "material" "BEE2/NO_PAINT/PLASTICWALL001A" + "uaxis" "[-1 0 0 44] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57" + "plane" "(8 4 0) (0 4 0) (0 0 0)" + "material" "BEE2/NO_PAINT/PLASTICWALL001A" + "uaxis" "[-1 0 0 0] 0.5" + "vaxis" "[0 -1 0 8] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56" + "plane" "(8 0 8) (0 0 8) (0 4 8)" + "material" "BEE2/NO_PAINT/PLASTICWALL001A" + "uaxis" "[-1 0 0 0] 0.5" + "vaxis" "[0 -1 0 8] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55" + "plane" "(0 0 8) (0 0 0) (0 4 0)" + "material" "BEE2/NO_PAINT/PLASTICWALL001A" + "uaxis" "[0 -1 0 60] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "54" + "plane" "(8 4 8) (8 4 0) (8 0 0)" + "material" "BEE2/NO_PAINT/PLASTICWALL001A" + "uaxis" "[0 1 0 -100] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 -10768]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/styles/p1_style/templates/glass_frame_horiz.vmf b/packages/styles/p1_style/templates/glass_frame_horiz.vmf new file mode 100644 index 0000000000..b4a7d3b96f --- /dev/null +++ b/packages/styles/p1_style/templates/glass_frame_horiz.vmf @@ -0,0 +1,143 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "76" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "2" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "76" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" +} +entity +{ + "id" "667" + "classname" "bee2_template_conf" + "detail_auto_visgroup" "0" + "discard_brushes" "0" + "temp_type" "default" + "template_id" "BEE2_BARRIER_PLASTICWALL_FRAME_HORIZ" + "origin" "0 0 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "659" + "classname" "func_detail" + solid + { + "id" "660" + side + { + "id" "59" + "plane" "(64 -4 8) (0 -4 8) (0 0 8)" + "material" "BEE2/NO_PAINT/PLASTICWALL004A" + "uaxis" "[-1 0 0 44] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58" + "plane" "(0 -4 0) (64 -4 0) (64 -4.76837e-007 -2.38419e-007)" + "material" "BEE2/NO_PAINT/PLASTICWALL004A" + "uaxis" "[-1 0 0 44] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57" + "plane" "(64 -4 0) (0 -4 0) (0 -4 8)" + "material" "BEE2/NO_PAINT/PLASTICWALL001A" + "uaxis" "[-1 0 0 0] 0.5" + "vaxis" "[0 0 1 0] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56" + "plane" "(64 0 8) (0 0 8) (0 -4.76837e-007 -2.38419e-007)" + "material" "BEE2/NO_PAINT/PLASTICWALL001A" + "uaxis" "[-1 0 0 0] 0.5" + "vaxis" "[0 0 1 0] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55" + "plane" "(0 0 8) (0 -4 8) (0 -4 0)" + "material" "BEE2/NO_PAINT/PLASTICWALL004A" + "uaxis" "[0 0 1 44] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "54" + "plane" "(64 -4.76837e-007 -2.38419e-007) (64 -4 0) (64 -4 8)" + "material" "BEE2/NO_PAINT/PLASTICWALL004A" + "uaxis" "[0 0 -1 -84] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 -10768]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/styles/p1_style/templates/glass_frame_vert.vmf b/packages/styles/p1_style/templates/glass_frame_vert.vmf new file mode 100644 index 0000000000..2fb2d3c80f --- /dev/null +++ b/packages/styles/p1_style/templates/glass_frame_vert.vmf @@ -0,0 +1,143 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "76" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "4" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "76" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" +} +entity +{ + "id" "667" + "classname" "bee2_template_conf" + "detail_auto_visgroup" "0" + "discard_brushes" "0" + "temp_type" "default" + "template_id" "BEE2_BARRIER_PLASTICWALL_FRAME_VERT" + "origin" "0 0 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "659" + "classname" "func_detail" + solid + { + "id" "660" + side + { + "id" "59" + "plane" "(64 -8 8) (0 -8 8) (0 0 8)" + "material" "BEE2/P1/PLASTICWALL003A_TALL" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58" + "plane" "(0 -8 2.38419e-007) (64 -8 2.38419e-007) (64 0 -1.11273e-007)" + "material" "BEE2/P1/PLASTICWALL003A_TALL" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57" + "plane" "(64 -8 2.38419e-007) (0 -8 2.38419e-007) (0 -8 8)" + "material" "BEE2/NO_PAINT/PLASTICWALL004A" + "uaxis" "[-1 0 0 0] 0.5" + "vaxis" "[0 0 1 0] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56" + "plane" "(64 0 8) (0 0 8) (0 0 -1.11273e-007)" + "material" "BEE2/NO_PAINT/PLASTICWALL001A" + "uaxis" "[-1 0 0 0] 0.5" + "vaxis" "[0 0 1 0] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55" + "plane" "(0 0 8) (0 -8 8) (0 -8 2.38419e-007)" + "material" "BEE2/NO_PAINT/PLASTICWALL001A" + "uaxis" "[0 0 1 44] 0.25" + "vaxis" "[0 1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "54" + "plane" "(64 0 -1.11273e-007) (64 -8 2.38419e-007) (64 -8 8)" + "material" "BEE2/NO_PAINT/PLASTICWALL001A" + "uaxis" "[0 0 -1 -84] 0.25" + "vaxis" "[0 1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 -10768]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/styles/p1_style/templates/track_platform_top_single.vmf b/packages/styles/p1_style/templates/track_platform_top_single.vmf new file mode 100644 index 0000000000..f892698383 --- /dev/null +++ b/packages/styles/p1_style/templates/track_platform_top_single.vmf @@ -0,0 +1,685 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "54" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ + visgroup + { + "name" "lower" + "visgroupid" "10" + "color" "250 131 208" + } + visgroup + { + "name" "upper" + "visgroupid" "12" + "color" "195 208 193" + } +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "8" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "54" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" + solid + { + "id" "1016" + side + { + "id" "972" + "plane" "(-32 -64 -64) (-32 -56 -64) (0 -56 -64)" + "material" "SIGNAGE/HAZARD_ORANGE_03B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "971" + "plane" "(0 -56 -68) (-32 -56 -68) (-32 -60 -68)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "970" + "plane" "(0 -56 -64) (-32 -56 -64) (-32 -56 -68)" + "material" "METAL/METALTRACK001A" + "uaxis" "[1 0 0 -224] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "969" + "plane" "(0 -64 -64) (0 -56 -64) (0 -56 -68)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "968" + "plane" "(-32 -60 -68) (-32 -56 -68) (-32 -56 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "967" + "plane" "(0 -60 -68) (-32 -60 -68) (-32 -64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0.707107 -0.707107 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 108 225" + "visgroupid" "10" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1036" + side + { + "id" "984" + "plane" "(0 64 -64) (0 56 -64) (-32 56 -64)" + "material" "SIGNAGE/HAZARD_ORANGE_03B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "983" + "plane" "(0 60 -68) (-32 60 -68) (-32 56 -68)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "982" + "plane" "(0 56 -68) (-32 56 -68) (-32 56 -64)" + "material" "METAL/METALTRACK001A" + "uaxis" "[1 0 0 -224] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "981" + "plane" "(0 60 -68) (0 56 -68) (0 56 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "980" + "plane" "(-32 64 -64) (-32 56 -64) (-32 56 -68)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "979" + "plane" "(0 64 -64) (-32 64 -64) (-32 60 -68)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -0.707107 -0.707107 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 108 225" + "visgroupid" "12" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "888" + side + { + "id" "804" + "plane" "(-64 64 -64) (64 64 -64) (64 0 -64)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "803" + "plane" "(-60 0 -68) (60 0 -68) (60 60 -68)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "802" + "plane" "(60 0 -68) (-60 0 -68) (-64 0 -64)" + "material" "METAL/METALTRACK001A" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "801" + "plane" "(-60 60 -68) (60 60 -68) (64 64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -0.707107 -0.707107 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "800" + "plane" "(-60 0 -68) (-60 60 -68) (-64 64 -64)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "799" + "plane" "(60 60 -68) (60 0 -68) (64 0 -64)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 124 245" + "visgroupid" "10" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "919" + side + { + "id" "888" + "plane" "(-64 -64 -64) (-64 0 -64) (-32 0 -64)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "887" + "plane" "(-60 -60 -68) (-32 -60 -68) (-32 0 -68)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "886" + "plane" "(-32 0 -68) (-32 -60 -68) (-32 -64 -64)" + "material" "METAL/METALTRACK001A" + "uaxis" "[0 1 0 -64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "885" + "plane" "(-60 0 -68) (-32 0 -68) (-32 0 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "884" + "plane" "(-32 -60 -68) (-60 -60 -68) (-64 -64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "883" + "plane" "(-60 -60 -68) (-60 0 -68) (-64 0 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 136 185" + "visgroupid" "10" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "918" + side + { + "id" "882" + "plane" "(0 -64 -64) (0 0 -64) (64 0 -64)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "881" + "plane" "(0 0 -68) (0 -60 -68) (60 -60 -68)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "880" + "plane" "(0 0 -68) (0 0 -64) (0 -64 -64)" + "material" "METAL/METALTRACK001A" + "uaxis" "[0 -1 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "879" + "plane" "(60 0 -68) (64 0 -64) (0 0 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "878" + "plane" "(0 -60 -68) (0 -64 -64) (64 -64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "877" + "plane" "(60 -60 -68) (64 -64 -64) (64 0 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 186 167" + "visgroupid" "10" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "865" + side + { + "id" "774" + "plane" "(-64 0 -64) (64 0 -64) (64 -64 -64)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "773" + "plane" "(-64 -60 -68) (64 -60 -68) (64 0 -68)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "772" + "plane" "(64 0 -68) (64 -60 -68) (64 -64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "771" + "plane" "(-64 0 -68) (64 0 -68) (64 0 -64)" + "material" "METAL/METALTRACK001A" + "uaxis" "[-1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "770" + "plane" "(64 -60 -68) (-64 -60 -68) (-64 -64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0.707107 -0.707107 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "769" + "plane" "(-64 -60 -68) (-64 0 -68) (-64 0 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0.707107 0 -0.707107 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 237" + "visgroupid" "12" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "969" + side + { + "id" "936" + "plane" "(-64 0 -64) (-64 64 -64) (-32 64 -64)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "935" + "plane" "(-60 0 -68) (-32 0 -68) (-32 60 -68)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "934" + "plane" "(-32 60 -68) (-32 0 -68) (-32 0 -64)" + "material" "METAL/METALTRACK001A" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "933" + "plane" "(-32 0 -68) (-60 0 -68) (-64 0 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "932" + "plane" "(-60 60 -68) (-32 60 -68) (-32 64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "931" + "plane" "(-60 0 -68) (-60 60 -68) (-64 64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 110 211" + "visgroupid" "12" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "968" + side + { + "id" "930" + "plane" "(0 0 -64) (0 64 -64) (64 64 -64)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "929" + "plane" "(0 60 -68) (0 0 -68) (60 0 -68)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "928" + "plane" "(0 60 -68) (0 64 -64) (0 0 -64)" + "material" "METAL/METALTRACK001A" + "uaxis" "[0 -1 0 -64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "927" + "plane" "(0 0 -68) (0 0 -64) (64 0 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "926" + "plane" "(60 60 -68) (64 64 -64) (0 64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "925" + "plane" "(60 0 -68) (64 0 -64) (64 64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 186 171" + "visgroupid" "12" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } +} +entity +{ + "id" "563" + "classname" "bee2_template_conf" + "detail_auto_visgroup" "0" + "discard_brushes" "0" + "is_scaling" "0" + "realign_faces" "888 804 936 930 774 882" + "temp_type" "default" + "template_id" "BEE2_TRACK_SCAFFOLD_P1_TOP_SINGLE" + "origin" "-0.862877 0 -32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -14768]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/styles/p1_style/voice/p1_glados.cfg b/packages/styles/p1_style/voice/p1_glados.cfg index 7cad3f2af0..450d0b1198 100644 --- a/packages/styles/p1_style/voice/p1_glados.cfg +++ b/packages/styles/p1_style/voice/p1_glados.cfg @@ -117,7 +117,7 @@ "Line" { "Name" "Cube Calibration" - "ID" "BALL_BUTTON_LONG" + "ID" "CUBE_BUTTON" "Trans" "Weighted Cubes calibrated." "Target" "@voice_cube_button_pressed" @@ -206,7 +206,7 @@ "Line_Human" { "Name" "Fizzlers and Lump-Of-Coal Failure" - "ID" "PAINT_FIZZ" + "ID" "PAINT_FIZZ_HUMAN" "Trans" "This next test involves emancipation grills. Remember? I told you about them in the last test area, that did not have one." "Trans" "While I was out investigating, I found a fascinating new test element. It's never been used for human testing because, apparently, contact with it causes heart failure. The literature doesn't mention anything about lump-of-coal failure, though, so you should be fine." "Choreo" @@ -218,7 +218,7 @@ "Line_Robot" { "Name" "Fizzlers" - "ID" "PAINT_FIZZ" + "ID" "PAINT_FIZZ_ROBOT" "Trans" "This next test involves emancipation grills. Remember? I told you about them in the last test area, that did not have one." "Choreo" "scenes/npc/glados/sp_a2_fizzler_intro01.vcd" } @@ -303,14 +303,14 @@ "Line_Human" { "Name" "Made From Natural Light" - "ID" "LIGHT_BRIDGE_1" + "ID" "LIGHT_BRIDGE_HUMAN_1" "Trans" "These bridges are made from natural light that I pump in from the surface. If you rubbed your cheek on one, it would be like standing outside with the sun shining on your face. It would also set your hair on fire, so don't actually do it." "Choreo" "scenes/npc/glados/sp_a2_bridge_intro01.vcd" } "Line_Robot" { "Name" "Build Bridges Out Of Tears" - "ID" "LIGHT_BRIDGE_1" + "ID" "LIGHT_BRIDGE_COOP_1" "Trans" "This is a bridge-building exercise. The humans were miserable at this, mostly because you can't build bridges out of tears." "Choreo" "npc/glados/mp_coop_catapult_2.vcd" } @@ -386,18 +386,6 @@ "3" "scenes/npc/glados/sp_paint_jump_trampoline_entry01.vcd" } } - "Line_Robot" - { - "Name" "Deadly Lasers" - "ID" "SENDIFICATOR_1" - "Trans" "Please proceed into the next test chamber." - "Trans" "Which involves deadly lasers and how test subjects react when locked in a room with deadly lasers." - "Choreo" - { - "1" "scenes/npc/glados/coop_test_chamber_both15.vcd" - "2" "scenes/npc/glados/sp_laser_redirect_intro_entry03.vcd" - } - } } "Quote" @@ -431,10 +419,10 @@ { "Priority" "0" "Name" "Generic" - "Line_SP" + "Line" { "Name" "You Are a Horrible Person" - "ID" "GENERIC_EXIT" + "ID" "GENERIC_EXIT_1" "Trans" "I have the results of the last chamber: You are a horrible person. That's what it says: A horrible person. We weren't even testing for that." "Choreo" "npc/glados/sp_laser_powered_lift_completion01.vcd" @@ -442,7 +430,7 @@ "Line_COOP" { "Name" "History Will Only Remember One Of You" - "ID" "GENERIC_EXIT" + "ID" "GENERIC_EXIT_COOP" "Trans" "Excellent. Although great science is always the result of collaboration, keep in mind that, like Albert Einstein and his cousin Terry, history will only remember one of you." "choreo" "scenes/npc/glados/botcoop_competition01.vcd" } diff --git a/packages/tdb_csfi/resources/models/props_map_editor/bee2/clean/closed_solid_field.dx90.vtx b/packages/tdb_csfi/resources/models/props_map_editor/bee2/clean/closed_solid_field.dx90.vtx index 52f0b9ba66..1094cd8ab0 100644 Binary files a/packages/tdb_csfi/resources/models/props_map_editor/bee2/clean/closed_solid_field.dx90.vtx and b/packages/tdb_csfi/resources/models/props_map_editor/bee2/clean/closed_solid_field.dx90.vtx differ diff --git a/packages/tdb_csfi/resources/models/props_map_editor/bee2/clean/closed_solid_field.mdl b/packages/tdb_csfi/resources/models/props_map_editor/bee2/clean/closed_solid_field.mdl index 37ea9ce0d0..0ca875a963 100644 Binary files a/packages/tdb_csfi/resources/models/props_map_editor/bee2/clean/closed_solid_field.mdl and b/packages/tdb_csfi/resources/models/props_map_editor/bee2/clean/closed_solid_field.mdl differ diff --git a/packages/tdb_csfi/resources/models/props_map_editor/bee2/clean/closed_solid_field.vvd b/packages/tdb_csfi/resources/models/props_map_editor/bee2/clean/closed_solid_field.vvd index 0610807bf5..0e359c21d5 100644 Binary files a/packages/tdb_csfi/resources/models/props_map_editor/bee2/clean/closed_solid_field.vvd and b/packages/tdb_csfi/resources/models/props_map_editor/bee2/clean/closed_solid_field.vvd differ diff --git a/packages/tuleby/abs_fizz/items/abs_fizz/editoritems.txt b/packages/tuleby/abs_fizz/items/abs_fizz/editoritems.txt index 0763aa5b07..cd14256a60 100644 --- a/packages/tuleby/abs_fizz/items/abs_fizz/editoritems.txt +++ b/packages/tuleby/abs_fizz/items/abs_fizz/editoritems.txt @@ -7,11 +7,8 @@ "SubTypeProperty" "HazardType" "SubType" { - "Name" "Absolute Fizzler" - "Model" - { - "ModelName" "fizzler.mdl" - } + "Name" "Absolute Fizzler" + "Model" "BEE2/clean/absolute_fizzler.mdl" "Palette" { "Tooltip" "ABSOLUTE FIZZLER" @@ -27,11 +24,8 @@ } "SubType" { - "Name" "Absolute Fizzler" - "Model" - { - "ModelName" "fizzler.mdl" - } + "Name" "Absolute Fizzler" + "Model" "BEE2/clean/absolute_fizzler.mdl" "Sounds" { "SOUND_CREATED" "P2Editor.PlaceOther" diff --git a/packages/tuleby/abs_fizz/resources/models/props_map_editor/bee2/clean/absolute_fizzler.dx90.vtx b/packages/tuleby/abs_fizz/resources/models/props_map_editor/bee2/clean/absolute_fizzler.dx90.vtx new file mode 100644 index 0000000000..787e879596 Binary files /dev/null and b/packages/tuleby/abs_fizz/resources/models/props_map_editor/bee2/clean/absolute_fizzler.dx90.vtx differ diff --git a/packages/tuleby/abs_fizz/resources/models/props_map_editor/bee2/clean/absolute_fizzler.mdl b/packages/tuleby/abs_fizz/resources/models/props_map_editor/bee2/clean/absolute_fizzler.mdl new file mode 100644 index 0000000000..a1a6b62743 Binary files /dev/null and b/packages/tuleby/abs_fizz/resources/models/props_map_editor/bee2/clean/absolute_fizzler.mdl differ diff --git a/packages/tuleby/abs_fizz/resources/models/props_map_editor/bee2/clean/absolute_fizzler.vvd b/packages/tuleby/abs_fizz/resources/models/props_map_editor/bee2/clean/absolute_fizzler.vvd new file mode 100644 index 0000000000..9f8af7348f Binary files /dev/null and b/packages/tuleby/abs_fizz/resources/models/props_map_editor/bee2/clean/absolute_fizzler.vvd differ diff --git a/packages/tuleby/abs_fizz/resources/models/puzzlemaker/selection_bee2/clean/absolute_fizzler.3ds b/packages/tuleby/abs_fizz/resources/models/puzzlemaker/selection_bee2/clean/absolute_fizzler.3ds new file mode 100644 index 0000000000..6368bbb249 Binary files /dev/null and b/packages/tuleby/abs_fizz/resources/models/puzzlemaker/selection_bee2/clean/absolute_fizzler.3ds differ diff --git a/packages/valve/clean_style/info.txt b/packages/valve/clean_style/info.txt index 8df1da6b84..213272c65e 100644 --- a/packages/valve/clean_style/info.txt +++ b/packages/valve/clean_style/info.txt @@ -20,7 +20,11 @@ "Base" "" "Has_Video" "1" - "Description" "Portal 2 Clean style, like after GLaDOS has been awoken and finished cleaning the facility, or in a parallel world where it was never destroyed. Similar to the default PeTI style but with more variety of wall panels and automatic security cameras." + "Description" + { + "" "Portal 2 Clean style, like after GLaDOS has been awoken and finished cleaning the facility, or in a parallel world where it was never destroyed." + "" "Similar to the default PeTI style but with more variety of wall panels and automatic security cameras." + } "Suggested" { "Quote" "BEE2_GLADOS_CLEAN" @@ -59,19 +63,72 @@ "CorridorGroup" { "ID" "BEE2_CLEAN" + "Options" + { + "ELEVATOR_DIRECTION" + { + "Name" "Elevator Direction" + "var" "$travel_dir" + "default" "" + "global" "sp_entry" + "global" "sp_exit" + + "Description" "Controls the direction the elevator travels when arriving at the entrance and leaving the exit. In the campaign only Wheatley levels travel upward, but either direction makes sense." + "Values" + { + "UP" "Upward" + "DOWN" "Downward" + } + } + "ELEVATOR_STAIRS" + { + "Name" "Elevator Stairs" + "var" "$stair_dir" + "default" "" + "global" "sp_entry" + "global" "sp_exit" + + "Description" "Specifies the direction stairs travel in. Normally they go upward from the entrance and downward at the exit, but the other variants provide some variety." + "Values" + { + "UP" "Upward" + "FLAT" "Flat" + "DOWN" "Downward" + } + } + "TEMPERATURE" + { + "Name" "Light Temperature" + "var" "$temperature" + "default" "COLD" + + "Description" "Specifies the lighting tint in corridors. Clean chambers tend to be predominantly cool, so warm lighting provides a contrast." + "Values" + { + "WARM" "Warm" + "NEUTRAL" "Neutral" + "COLD" "Cold" + } + } + } + "sp_entry" { "instance" "instances/BEE2/clean/elevator_sp/door_entrance_1.vmf" "name" "Corridor 1" "authors" "Valve" + "Description" "A straight corridor with a little nook on either side." "image" "BEE2_CLEAN_STYLE:corr/clean/sp_entry/1_1.jpg" "image" "BEE2_CLEAN_STYLE:corr/clean/sp_entry/1_2.jpg" - "DefaultIndex" "1" + + "Option" "TEMPERATURE" "Fixups" { "$horiz_cam" "1" "$frame" "door" "$door" "testchamber" + + "$light_temp" "BEE2_CLEAN_SP_ENTRY_CORR_LIGHTS:corr_1" } } "sp_entry" @@ -88,12 +145,14 @@ "image" "BEE2_CLEAN_STYLE:corr/clean/sp_entry/right_tubes_1.jpg" "image" "BEE2_CLEAN_STYLE:corr/clean/sp_entry/right_tubes_2.jpg" "image" "BEE2_CLEAN_STYLE:corr/clean/sp_entry/right_tubes_3.jpg" - "DefaultIndex" "2" + + "Option" "TEMPERATURE" "Fixups" { "$horiz_cam" "1" "$frame" "door" "$door" "testchamber" + "$light_temp" "BEE2_CLEAN_SP_ENTRY_CORR_LIGHTS:corr_right_tubes" } } "sp_entry" @@ -104,12 +163,14 @@ "Description" "Players shift slightly to the right to enter the chamber." "image" "BEE2_CLEAN_STYLE:corr/clean/sp_entry/right_s_1.jpg" "image" "BEE2_CLEAN_STYLE:corr/clean/sp_entry/right_s_2.jpg" - "DefaultIndex" "3" + + "Option" "TEMPERATURE" "Fixups" { "$horiz_cam" "1" "$frame" "door" "$door" "testchamber" + "$light_temp" "BEE2_CLEAN_SP_ENTRY_CORR_LIGHTS:corr_3" } } "sp_entry" @@ -120,12 +181,14 @@ "Description" "A straight corridor with a little nook on either side." "image" "BEE2_CLEAN_STYLE:corr/clean/sp_entry/4_1.jpg" "image" "BEE2_CLEAN_STYLE:corr/clean/sp_entry/4_2.jpg" - "DefaultIndex" "4" + + "Option" "TEMPERATURE" "Fixups" { "$horiz_cam" "1" "$frame" "door" "$door" "testchamber" + "$light_temp" "BEE2_CLEAN_SP_ENTRY_CORR_LIGHTS:corr_4" } } "sp_entry" @@ -136,12 +199,14 @@ "Description" "A straight corridor with a little nook on either side and lowered ceiling." "image" "BEE2_CLEAN_STYLE:corr/clean/sp_entry/5_1.jpg" "image" "BEE2_CLEAN_STYLE:corr/clean/sp_entry/5_2.jpg" - "DefaultIndex" "5" + + "Option" "TEMPERATURE" "Fixups" { "$horiz_cam" "1" "$frame" "door" "$door" "testchamber" + "$light_temp" "BEE2_CLEAN_SP_ENTRY_CORR_LIGHTS:corr_5" } } "sp_entry" @@ -152,12 +217,14 @@ "Description" "Players must climb up some stairs to reach the chamber." "image" "BEE2_CLEAN_STYLE:corr/clean/sp_entry/stairs_1.jpg" "image" "BEE2_CLEAN_STYLE:corr/clean/sp_entry/stairs_2.jpg" - "DefaultIndex" "6" + + "Option" "TEMPERATURE" "Fixups" { "$horiz_cam" "1" "$frame" "door" "$door" "testchamber" + "$light_temp" "BEE2_CLEAN_SP_ENTRY_CORR_LIGHTS:corr_6" } } "sp_entry" @@ -169,12 +236,69 @@ "image" "BEE2_CLEAN_STYLE:corr/clean/sp_entry/left_turn_1.jpg" "image" "BEE2_CLEAN_STYLE:corr/clean/sp_entry/left_turn_2.jpg" "image" "BEE2_CLEAN_STYLE:corr/clean/sp_entry/left_turn_3.jpg" - "DefaultIndex" "7" + + "Option" "TEMPERATURE" + "Fixups" + { + "$horiz_cam" "1" + "$frame" "door" + "$door" "testchamber" + "$light_temp" "BEE2_CLEAN_SP_ENTRY_CORR_LIGHTS:corr_7" + } + } + + "sp_entry" + { + "instance" "instances/BEE2/clean/elevator_sp/door_entrance_over_white_left.vmf" + "name" "Cleaned Left Turn" + "authors" "TeamSpen210" + "Description" "A clean version of Overgrown's \"White Left\" corridor." + "image" "BEE2_CLEAN_STYLE:corr/clean/sp_entry/over_white_left_1.jpg" + "image" "BEE2_CLEAN_STYLE:corr/clean/sp_entry/over_white_left_2.jpg" + + "Option" "TEMPERATURE" + "Fixups" + { + "$horiz_cam" "1" + "$frame" "door" + "$door" "testchamber" + "$light_temp" "BEE2_CLEAN_SP_ENTRY_CORR_OVER_LIGHTS:white_left" + } + } + "sp_entry" + { + "instance" "instances/BEE2/clean/elevator_sp/door_entrance_over_right_turn.vmf" + "name" "Cleaned Right Turn" + "authors" "TeamSpen210" + "Description" "A clean version of Overgrown's \"Right Turn\" corridor." + "image" "BEE2_CLEAN_STYLE:corr/clean/sp_entry/over_right_turn_1.jpg" + "image" "BEE2_CLEAN_STYLE:corr/clean/sp_entry/over_right_turn_2.jpg" + + "Option" "TEMPERATURE" "Fixups" { "$horiz_cam" "1" "$frame" "door" "$door" "testchamber" + "$light_temp" "BEE2_CLEAN_SP_ENTRY_CORR_OVER_LIGHTS:right_turn" + } + } + "sp_entry" + { + "instance" "instances/BEE2/clean/elevator_sp/door_entrance_over_small_right.vmf" + "name" "Cleaned Small Right" + "authors" "TeamSpen210" + "Description" "A clean version of Overgrown's \"Small Right\" corridor." + "image" "BEE2_CLEAN_STYLE:corr/clean/sp_entry/over_small_right_1.jpg" + "image" "BEE2_CLEAN_STYLE:corr/clean/sp_entry/over_small_right_2.jpg" + + "Option" "TEMPERATURE" + "Fixups" + { + "$horiz_cam" "1" + "$frame" "door" + "$door" "testchamber" + "$light_temp" "BEE2_CLEAN_SP_ENTRY_CORR_OVER_LIGHTS:small_right" } } @@ -186,11 +310,13 @@ "Description" "Players are raised on a platform into the chamber." "image" "BEE2_CLEAN_STYLE:corr/clean/sp_entry/up_track_1.jpg" "image" "BEE2_CLEAN_STYLE:corr/clean/sp_entry/up_track_2.jpg" - "DefaultIndex" "1" + + "Option" "TEMPERATURE" "Fixups" { "$horiz_cam" "0" "$frame" "remove" + "$light_temp" "BEE2_CLEAN_SP_ENTRY_CORR_LIGHTS:up_track" } } "sp_entry_down" @@ -201,72 +327,82 @@ "Description" "Players drop through the floor into the chamber. The ceiling is then closed." "image" "BEE2_CLEAN_STYLE:corr/clean/sp_entry/down_pist_1.jpg" "image" "BEE2_CLEAN_STYLE:corr/clean/sp_entry/down_pist_2.jpg" - "DefaultIndex" "1" + + "Option" "TEMPERATURE" "Fixups" { "$horiz_cam" "0" "$frame" "remove" + "$light_temp" "BEE2_CLEAN_SP_ENTRY_CORR_LIGHTS:down_piston" } } "sp_exit" { "instance" "instances/BEE2/clean/elevator_sp/door_exit_1.vmf" - "name" "Warm #1" + "name" "Straight #1" "authors" "Valve" - "Description" "A straight corridor to the exit, with warm lighting. The ceiling is fully intact." + "Description" "A straight corridor to the exit. The ceiling is fully intact." "image" "BEE2_CLEAN_STYLE:corr/clean/sp_exit/1.jpg" - "DefaultIndex" "1" + + "Option" "TEMPERATURE" "Fixups" { "$horiz_cam" "1" "$frame" "door" "$exit_folder" "instances/BEE2/clean/elevator_sp/exit_" + "$light_temp" "BEE2_CLEAN_SP_EXIT_CORR_LIGHTS:corr_1" } } "sp_exit" { "instance" "instances/BEE2/clean/elevator_sp/door_exit_2.vmf" - "name" "Warm #2" + "name" "Straight #2" "authors" "Valve" - "Description" "A straight corridor to the exit, with warm lighting. The ceiling is missing showing exposed framework." + "Description" "A straight corridor to the exit. The ceiling is missing showing exposed framework." "image" "BEE2_CLEAN_STYLE:corr/clean/sp_exit/2.jpg" - "DefaultIndex" "2" + + "Option" "TEMPERATURE" "Fixups" { "$horiz_cam" "1" "$frame" "door" "$exit_folder" "instances/BEE2/clean/elevator_sp/exit_" + "$light_temp" "BEE2_CLEAN_SP_EXIT_CORR_LIGHTS:corr_2" } } "sp_exit" { "instance" "instances/BEE2/clean/elevator_sp/door_exit_3.vmf" - "name" "Warm #3" + "name" "Straight #3" "authors" "Valve" - "Description" "A straight corridor to the exit, with warm lighting. The ceiling and walls are unfinished with exposed framework." + "Description" "A straight corridor to the exit. The ceiling and walls are unfinished with exposed framework." "image" "BEE2_CLEAN_STYLE:corr/clean/sp_exit/3.jpg" - "DefaultIndex" "3" + + "Option" "TEMPERATURE" "Fixups" { "$horiz_cam" "1" "$frame" "door" "$exit_folder" "instances/BEE2/clean/elevator_sp/exit_" + "$light_temp" "BEE2_CLEAN_SP_EXIT_CORR_LIGHTS:corr_3" } } "sp_exit" { "instance" "instances/BEE2/clean/elevator_sp/door_exit_4.vmf" - "name" "Cool #1" + "name" "Straight #1" "authors" "Valve" - "Description" "A straight corridor to the exit, with cool lighting. The ceiling is missing showing exposed framework." + "Description" "A straight corridor to the exit. The ceiling is missing showing exposed framework, along with a line of light strips." "image" "BEE2_CLEAN_STYLE:corr/clean/sp_exit/4.jpg" - "DefaultIndex" "4" + + "Option" "TEMPERATURE" "Fixups" { "$horiz_cam" "1" "$frame" "door" "$exit_folder" "instances/BEE2/clean/elevator_sp/exit_" + "$light_temp" "BEE2_CLEAN_SP_EXIT_CORR_LIGHTS:corr_4" } } @@ -278,13 +414,15 @@ "Description" "The exit is a small room in the ceiling, which catches you when you fling up." "image" "BEE2_CLEAN_STYLE:corr/clean/sp_exit/up_stair_1.jpg" "image" "BEE2_CLEAN_STYLE:corr/clean/sp_exit/up_stair_2.jpg" - "DefaultIndex" "1" + + "Option" "TEMPERATURE" "Fixups" { "$horiz_cam" "0" "$frame" "remove" "$exit_folder" "instances/BEE2/clean/elevator_sp/door_exit_up_stair/" "$exit_sign_folder" "instances/BEE2/clean/elevator_sp/door_exit_up_stair/" + "$light_temp" "BEE2_CLEAN_SP_EXIT_CORR_LIGHTS:up_stair" } } @@ -297,13 +435,15 @@ "image" "BEE2_CLEAN_STYLE:corr/clean/sp_exit/down_square_1.jpg" "image" "BEE2_CLEAN_STYLE:corr/clean/sp_exit/down_square_2.jpg" "image" "BEE2_CLEAN_STYLE:corr/clean/sp_exit/down_square_3.jpg" - "DefaultIndex" "1" + + "Option" "TEMPERATURE" "Fixups" { "$horiz_cam" "0" "$frame" "remove" "$exit_folder" "instances/BEE2/clean/elevator_sp/door_exit_down_square/" "$exit_sign_folder" "instances/BEE2/clean/elevator_sp/door_exit_down_square/" + "$light_temp" "BEE2_CLEAN_SP_EXIT_CORR_LIGHTS:down_square" } } @@ -316,7 +456,7 @@ "image" "corr/clean/coop_entry/horiz_2.jpg" "instance" "instances/BEE2/clean/elevator_coop/spawn_room.vmf" - "DefaultIndex" "1" + "Fixups" { "$atlas_pos" "-352 96 352" @@ -336,7 +476,7 @@ "image" "corr/clean/coop_entry/down_cham_3.jpg" "instance" "instances/BEE2/clean/elevator_coop/spawn_room_down_chamber.vmf" - "DefaultIndex" "1" + "Fixups" { "$atlas_pos" "-32 0 464" @@ -354,7 +494,7 @@ "image" "corr/clean/coop_entry/up_dropper.jpg" "instance" "instances/BEE2/clean/elevator_coop/spawn_room_up_dropper.vmf" - "DefaultIndex" "1" + "Config" "coop_spawn/corr_up_dropper.cfg" "Fixups" { @@ -372,7 +512,7 @@ "authors" "Valve" "Description" "A straight corridor to the exit, with warm lighting. The ceiling is incomplete showing exposed framework." "image" "BEE2_CLEAN_STYLE:corr/clean/coop_exit/1.jpg" - "DefaultIndex" "1" + "Fixups" { "$horiz_cam" "0" @@ -388,7 +528,7 @@ "authors" "Valve" "Description" "A straight corridor to the exit, with warm lighting. The ceiling is mostly missing showing exposed framework." "image" "BEE2_CLEAN_STYLE:corr/clean/coop_exit/2.jpg" - "DefaultIndex" "2" + "Fixups" { "$horiz_cam" "0" @@ -404,7 +544,7 @@ "authors" "Valve" "Description" "A straight corridor to the exit, with warm lighting. The ceiling and walls are unfinished with exposed framework." "image" "BEE2_CLEAN_STYLE:corr/clean/coop_exit/3.jpg" - "DefaultIndex" "3" + "Fixups" { "$horiz_cam" "0" @@ -422,7 +562,7 @@ "image" "BEE2_CLEAN_STYLE:corr/clean/coop_exit/4_1.jpg" "image" "BEE2_CLEAN_STYLE:corr/clean/coop_exit/4_2.jpg" "image" "BEE2_CLEAN_STYLE:corr/clean/coop_exit/4_3.jpg" - "DefaultIndex" "4" + "Fixups" { "$horiz_cam" "0" diff --git a/packages/valve/clean_style/items/coop_exit/editoritems.vmf b/packages/valve/clean_style/items/coop_exit/editoritems.vmf new file mode 100644 index 0000000000..d8a98d5301 --- /dev/null +++ b/packages/valve/clean_style/items/coop_exit/editoritems.vmf @@ -0,0 +1,135 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "2" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "16" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "2" + "classname" "worldspawn" + "skyname" "sky_black_nofog" + "maxpropscreenwidth" "-1" + "detailvbsp" "detail.vbsp" + "detailmaterial" "detail/detailsprites" + "maxblobcount" "250" +} +entity +{ + "id" "9" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grating" "0" + "coll_oob" "1" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "2" + side + { + "id" "1" + "plane" "(-124 -124 -68) (124 -124 -68) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2" + "plane" "(-124 124 -572) (124 124 -572) (124 124 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3" + "plane" "(-124 -124 -68) (-124 -124 -572) (-124 124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4" + "plane" "(124 124 -68) (124 124 -572) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5" + "plane" "(124 -124 -68) (-124 -124 -68) (-124 124 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6" + "plane" "(124 124 -572) (-124 124 -572) (-124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/valve/clean_style/items/coop_exit/vbsp_config.cfg b/packages/valve/clean_style/items/coop_exit/vbsp_config.cfg index e49d94301a..c758c07b88 100644 --- a/packages/valve/clean_style/items/coop_exit/vbsp_config.cfg +++ b/packages/valve/clean_style/items/coop_exit/vbsp_config.cfg @@ -13,14 +13,12 @@ } "Condition" { - "IfPreview" "1" + "IfPreview" "1" "StyleVar" "RestartOnExit" "Result" { - "addoverlay" - { - "File" "instances/BEE2/clean/elevator_coop/preview_mode.vmf" - } + // Trigger restart when @map_won is triggered. + "addoverlay" "instances/BEE2/logic/exit_preview.vmf" } } } diff --git a/packages/valve/clean_style/items/entry_door/editoritems.txt b/packages/valve/clean_style/items/entry_door/editoritems.txt index a14b3c0b1e..13469d8f9a 100644 --- a/packages/valve/clean_style/items/entry_door/editoritems.txt +++ b/packages/valve/clean_style/items/entry_door/editoritems.txt @@ -61,7 +61,7 @@ } "10" { - "Name" "instances/BEE2/clean/elevator_sp/elevator_exit.vmf" + "Name" "instances/BEE2/clean/elevator_sp/elevator_exit/common.vmf" "EntityCount" "222" "BrushCount" "347" "BrushSideCount" "2823" diff --git a/packages/valve/clean_style/items/entry_door/editoritems.vmf b/packages/valve/clean_style/items/entry_door/editoritems.vmf new file mode 100644 index 0000000000..d8a98d5301 --- /dev/null +++ b/packages/valve/clean_style/items/entry_door/editoritems.vmf @@ -0,0 +1,135 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "2" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "16" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "2" + "classname" "worldspawn" + "skyname" "sky_black_nofog" + "maxpropscreenwidth" "-1" + "detailvbsp" "detail.vbsp" + "detailmaterial" "detail/detailsprites" + "maxblobcount" "250" +} +entity +{ + "id" "9" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grating" "0" + "coll_oob" "1" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "2" + side + { + "id" "1" + "plane" "(-124 -124 -68) (124 -124 -68) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2" + "plane" "(-124 124 -572) (124 124 -572) (124 124 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3" + "plane" "(-124 -124 -68) (-124 -124 -572) (-124 124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4" + "plane" "(124 124 -68) (124 124 -572) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5" + "plane" "(124 -124 -68) (-124 -124 -68) (-124 124 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6" + "plane" "(124 124 -572) (-124 124 -572) (-124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/valve/clean_style/items/entry_door/vbsp_config.cfg b/packages/valve/clean_style/items/entry_door/vbsp_config.cfg index c33fff781e..0542b54b38 100644 --- a/packages/valve/clean_style/items/entry_door/vbsp_config.cfg +++ b/packages/valve/clean_style/items/entry_door/vbsp_config.cfg @@ -3,13 +3,21 @@ "Condition" { "instance" "[elevatorEntry]" - "Result" + "Switch" { - "Random" + "test" "instvar" + "$stair_dir UP" { "addOverlay" "instances/BEE2/clean/elevator_sp/elevator_entrance/stair_up.vmf" + } + "$stair_dir DOWN" + { "addOverlay" "instances/BEE2/clean/elevator_sp/elevator_entrance/stair_dn.vmf" } + "$stair_dir FLAT" + { + "addOverlay" "instances/BEE2/clean/elevator_sp/elevator_entrance/stair_flat.vmf" + } } "Condition" { @@ -19,12 +27,16 @@ // Spawns in entry door. "addOverlay" "instances/BEE2/clean/elevator_sp/elevator_entrance/logic_nospawn.vmf" } - "Else" + // Spawns in the elevator. + "ElseSwitch" { - // Spawns in the elevator. - "Random" + "test" "instvar" + "$travel_dir UP" { "addOverlay" "instances/BEE2/clean/elevator_sp/elevator_entrance/logic_up.vmf" + } + "$travel_dir DOWN" + { "addOverlay" "instances/BEE2/clean/elevator_sp/elevator_entrance/logic_dn.vmf" } } @@ -41,5 +53,46 @@ "addOverlay" "instances/BEE2/clean/elevator_sp/entry_door.vmf" } } + "Condition" + { + "InstVar" "$light_temp != " + "Result" + { + // Add a template with randomly-coloured light strip mats. + "Switch" + { + "test" "instvar" + "$temperature COOL" + { + "SetInstVar" "$strip_skin 0" + "SetInstVar" "$strip_mat lights/light_panel_cool" + } + "$temperature COLD" + { + "SetInstVar" "$strip_skin 0" + "SetInstVar" "$strip_mat lights/light_panel_cool" + } + "$temperature NEUTRAL" + { + "SetInstVar" "$strip_skin 2" + "SetInstVar" "$strip_mat lights/light_panel_neutral" + } + "$temperature WARM" + { + "SetInstVar" "$strip_skin 1" + "SetInstVar" "$strip_mat lights/light_panel_warm" + } + } + "TemplateBrush" + { + "ID" "$light_temp" + "Replace" + { + "lights/light_panel_neutral" "$strip_mat" + } + } + "RemoveFixup" "$strip_mat" + } + } } } diff --git a/packages/valve/clean_style/items/exit_door/editoritems.vmf b/packages/valve/clean_style/items/exit_door/editoritems.vmf new file mode 100644 index 0000000000..d8a98d5301 --- /dev/null +++ b/packages/valve/clean_style/items/exit_door/editoritems.vmf @@ -0,0 +1,135 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "2" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "16" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "2" + "classname" "worldspawn" + "skyname" "sky_black_nofog" + "maxpropscreenwidth" "-1" + "detailvbsp" "detail.vbsp" + "detailmaterial" "detail/detailsprites" + "maxblobcount" "250" +} +entity +{ + "id" "9" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grating" "0" + "coll_oob" "1" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "2" + side + { + "id" "1" + "plane" "(-124 -124 -68) (124 -124 -68) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2" + "plane" "(-124 124 -572) (124 124 -572) (124 124 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3" + "plane" "(-124 -124 -68) (-124 -124 -572) (-124 124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4" + "plane" "(124 124 -68) (124 124 -572) (124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5" + "plane" "(124 -124 -68) (-124 -124 -68) (-124 124 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6" + "plane" "(124 124 -572) (-124 124 -572) (-124 -124 -572)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/valve/clean_style/items/exit_door/vbsp_config.cfg b/packages/valve/clean_style/items/exit_door/vbsp_config.cfg index 875f12ce74..842095e592 100644 --- a/packages/valve/clean_style/items/exit_door/vbsp_config.cfg +++ b/packages/valve/clean_style/items/exit_door/vbsp_config.cfg @@ -1,5 +1,37 @@ "Conditions" { + "Condition" + { + "instance" "[elevatorExit]" + "Switch" + { + "test" "instvar" + "$stair_dir UP" + { + "addOverlay" "instances/BEE2/clean/elevator_sp/elevator_exit/stair_up.vmf" + } + "$stair_dir DOWN" + { + "addOverlay" "instances/BEE2/clean/elevator_sp/elevator_exit/stair_dn.vmf" + } + "$stair_dir FLAT" + { + "addOverlay" "instances/BEE2/clean/elevator_sp/elevator_exit/stair_flat.vmf" + } + } + "Switch" + { + "test" "instvar" + "$travel_dir UP" + { + "addOverlay" "instances/BEE2/clean/elevator_sp/elevator_exit/logic_up.vmf" + } + "$travel_dir DOWN" + { + "addOverlay" "instances/BEE2/clean/elevator_sp/elevator_exit/logic_dn.vmf" + } + } + } "Condition" { "Priority" "10" @@ -39,15 +71,6 @@ "Condition" { "InstVar" "$exit_folder != " // Only run if defined. - "Condition" - { - "IfPreview" "1" - "StyleVar" "RestartOnExit" - "Result" - { - "addoverlay" "$exit_folderpreview.vmf" - } - } "Condition" { "Game" "Aperture Tag" @@ -99,5 +122,56 @@ } } } + "Condition" + { + "InstVar" "$light_temp != " + "Result" + { + // Add a template with randomly-coloured light strip mats. + "Switch" + { + "test" "instvar" + "$temperature COOL" + { + "SetInstVar" "$strip_skin 0" + "SetInstVar" "$strip_mat lights/light_panel_cool" + } + "$temperature COLD" + { + "SetInstVar" "$strip_skin 0" + "SetInstVar" "$strip_mat lights/light_panel_cool" + } + "$temperature NEUTRAL" + { + "SetInstVar" "$strip_skin 2" + "SetInstVar" "$strip_mat lights/light_panel_neutral" + } + "$temperature WARM" + { + "SetInstVar" "$strip_skin 1" + "SetInstVar" "$strip_mat lights/light_panel_warm" + } + } + "TemplateBrush" + { + "ID" "$light_temp" + "Replace" + { + "lights/light_panel_neutral" "$strip_mat" + } + } + "RemoveFixup" "$strip_mat" + } + } + "Condition" + { + "IfPreview" "1" + "StyleVar" "RestartOnExit" + "Result" + { + // Trigger restart when @map_won is triggered. + "addoverlay" "instances/BEE2/logic/exit_preview.vmf" + } + } } } diff --git a/packages/valve/clean_style/items/obs_room/editoritems.vmf b/packages/valve/clean_style/items/obs_room/editoritems.vmf new file mode 100644 index 0000000000..25d26a83af --- /dev/null +++ b/packages/valve/clean_style/items/obs_room/editoritems.vmf @@ -0,0 +1,232 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "4" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "256" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "4" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" +} +entity +{ + "id" "7" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grating" "0" + "coll_oob" "1" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "2" + side + { + "id" "1" + "plane" "(188 -188 -68) (-188 -188 -68) (-188 316 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2" + "plane" "(-188 -188 -316) (188 -188 -316) (188 316 -316)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3" + "plane" "(188 -188 -316) (-188 -188 -316) (-188 -188 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4" + "plane" "(-188 316 -316) (188 316 -316) (188 316 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5" + "plane" "(-188 -188 -316) (-188 316 -316) (-188 316 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6" + "plane" "(188 316 -316) (188 -188 -316) (188 -188 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 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" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "40" + "classname" "bee2_collision_bbox" + "coll_antlines" "1" + "coll_bridge" "0" + "coll_decoration" "1" + "coll_fizzler" "0" + "coll_glass" "1" + "coll_grating" "0" + "coll_oob" "1" + "coll_solid" "1" + "coll_temporary" "0" + solid + { + "id" "36" + side + { + "id" "18" + "plane" "(64 -64 -60) (-64 -64 -60) (-64 192 -60)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "17" + "plane" "(-64 -64 -68) (64 -64 -68) (64 192 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "16" + "plane" "(64 -64 -68) (-64 -64 -68) (-64 -64 -60)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "15" + "plane" "(-64 192 -68) (64 192 -68) (64 192 -60)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "14" + "plane" "(-64 -64 -68) (-64 192 -68) (-64 192 -60)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "13" + "plane" "(64 192 -68) (64 -64 -68) (64 -64 -60)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 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" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/valve/clean_style/resources/BEE2/corr/clean/sp_entry/over_right_turn_1.jpg b/packages/valve/clean_style/resources/BEE2/corr/clean/sp_entry/over_right_turn_1.jpg new file mode 100644 index 0000000000..c010bb3549 Binary files /dev/null and b/packages/valve/clean_style/resources/BEE2/corr/clean/sp_entry/over_right_turn_1.jpg differ diff --git a/packages/valve/clean_style/resources/BEE2/corr/clean/sp_entry/over_right_turn_2.jpg b/packages/valve/clean_style/resources/BEE2/corr/clean/sp_entry/over_right_turn_2.jpg new file mode 100644 index 0000000000..ae7fb0ebfe Binary files /dev/null and b/packages/valve/clean_style/resources/BEE2/corr/clean/sp_entry/over_right_turn_2.jpg differ diff --git a/packages/valve/clean_style/resources/BEE2/corr/clean/sp_entry/over_small_right_1.jpg b/packages/valve/clean_style/resources/BEE2/corr/clean/sp_entry/over_small_right_1.jpg new file mode 100644 index 0000000000..9b91dbf6f0 Binary files /dev/null and b/packages/valve/clean_style/resources/BEE2/corr/clean/sp_entry/over_small_right_1.jpg differ diff --git a/packages/valve/clean_style/resources/BEE2/corr/clean/sp_entry/over_small_right_2.jpg b/packages/valve/clean_style/resources/BEE2/corr/clean/sp_entry/over_small_right_2.jpg new file mode 100644 index 0000000000..c700fc3ce7 Binary files /dev/null and b/packages/valve/clean_style/resources/BEE2/corr/clean/sp_entry/over_small_right_2.jpg differ diff --git a/packages/valve/clean_style/resources/BEE2/corr/clean/sp_entry/over_white_left_1.jpg b/packages/valve/clean_style/resources/BEE2/corr/clean/sp_entry/over_white_left_1.jpg new file mode 100644 index 0000000000..25ae7bd422 Binary files /dev/null and b/packages/valve/clean_style/resources/BEE2/corr/clean/sp_entry/over_white_left_1.jpg differ diff --git a/packages/valve/clean_style/resources/BEE2/corr/clean/sp_entry/over_white_left_2.jpg b/packages/valve/clean_style/resources/BEE2/corr/clean/sp_entry/over_white_left_2.jpg new file mode 100644 index 0000000000..15ee012228 Binary files /dev/null and b/packages/valve/clean_style/resources/BEE2/corr/clean/sp_entry/over_white_left_2.jpg differ diff --git a/packages/valve/clean_style/resources/instances/clean/elevator_coop/coop_exit.vmf b/packages/valve/clean_style/resources/instances/clean/elevator_coop/coop_exit.vmf index 1828cac483..1323d02b25 100644 --- a/packages/valve/clean_style/resources/instances/clean/elevator_coop/coop_exit.vmf +++ b/packages/valve/clean_style/resources/instances/clean/elevator_coop/coop_exit.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8419" - "mapversion" "625" + "editorbuild" "9672" + "mapversion" "634" "formatversion" "100" "prefab" "0" } @@ -26,7 +26,7 @@ viewsettings world { "id" "1" - "mapversion" "625" + "mapversion" "634" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -10159,7 +10159,7 @@ world side { "id" "27130" - "plane" "(64 -39 -208) (64 -64 -208) (64 -64 224)" + "plane" "(64 -39 224) (64 -39 -208) (64 -64 -208)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[0 1 0 -4] 0.25" "vaxis" "[0 0 -1 40] 0.25" @@ -10170,7 +10170,7 @@ world side { "id" "27129" - "plane" "(-96 -64 -208) (-96 -39 -208) (-96 -39 224)" + "plane" "(-120 -64 224) (-120 -64 -208) (-120 -39 -208)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[0 1 0 -4] 0.25" "vaxis" "[0 0 -1 40] 0.25" @@ -10181,7 +10181,7 @@ world side { "id" "27128" - "plane" "(64 -64 -208) (-96 -64 -208) (-96 -64 224)" + "plane" "(64 -64 224) (64 -64 -208) (-120 -64 -208)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[0 0 1 -40] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -10192,7 +10192,7 @@ world side { "id" "27127" - "plane" "(-96 -39 -208) (64 -39 -208) (64 -39 224)" + "plane" "(-120 -39 224) (-120 -39 -208) (64 -39 -208)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[0 0 1 -40] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -10203,7 +10203,7 @@ world side { "id" "27126" - "plane" "(-96 -39 224) (64 -39 224) (64 -64 224)" + "plane" "(-120 -64 224) (-120 -39 224) (64 -39 224)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[0 1 0 -4] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -10214,7 +10214,7 @@ world side { "id" "27125" - "plane" "(-96 -64 -208) (64 -64 -208) (64 -39 -208)" + "plane" "(-120 -39 -208) (-120 -64 -208) (64 -64 -208)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[0 1 0 -4] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -10235,7 +10235,7 @@ world side { "id" "27136" - "plane" "(64 64 -208) (64 39 -208) (64 39 224)" + "plane" "(64 64 224) (64 64 -208) (64 39 -208)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[0 1 0 -24] 0.25" "vaxis" "[0 0 -1 40] 0.25" @@ -10246,7 +10246,7 @@ world side { "id" "27135" - "plane" "(-96 39 -208) (-96 64 -208) (-96 64 224)" + "plane" "(-120 39 224) (-120 39 -208) (-120 64 -208)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[0 1 0 -24] 0.25" "vaxis" "[0 0 -1 40] 0.25" @@ -10257,7 +10257,7 @@ world side { "id" "27134" - "plane" "(64 39 -208) (-96 39 -208) (-96 39 224)" + "plane" "(64 39 224) (64 39 -208) (-120 39 -208)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[0 0 1 -40] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -10268,7 +10268,7 @@ world side { "id" "27133" - "plane" "(-96 64 -208) (64 64 -208) (64 64 224)" + "plane" "(-120 64 224) (-120 64 -208) (64 64 -208)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[0 0 1 -40] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -10279,7 +10279,7 @@ world side { "id" "27132" - "plane" "(-96 64 224) (64 64 224) (64 39 224)" + "plane" "(-120 39 224) (-120 64 224) (64 64 224)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[0 1 0 -24] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -10290,7 +10290,7 @@ world side { "id" "27131" - "plane" "(-96 39 -208) (64 39 -208) (64 64 -208)" + "plane" "(-120 64 -208) (-120 39 -208) (64 39 -208)" "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[0 1 0 -24] 0.25" "vaxis" "[-1 0 0 0] 0.25" @@ -10441,10 +10441,10 @@ world side { "id" "27532" - "plane" "(-112 -272 -128) (-112 272 -128) (-96 272 -128)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 -48] 0.25" + "plane" "(-120 272 -136) (-104 272 -136) (-104 -272 -136)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 1 0 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10452,9 +10452,9 @@ world side { "id" "27531" - "plane" "(-96 272 -128) (-112 272 -128) (-112 272 -384)" + "plane" "(-120 272 -136) (-120 272 -384) (-104 272 -384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -10463,7 +10463,7 @@ world side { "id" "27530" - "plane" "(-112 -272 -384) (-112 272 -384) (-112 272 -128)" + "plane" "(-120 272 -384) (-120 272 -136) (-120 -272 -136)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -10474,10 +10474,10 @@ world side { "id" "27529" - "plane" "(-96 272 -384) (-112 272 -384) (-112 -272 -384)" + "plane" "(-120 272 -384) (-120 -272 -384) (-104 -272 -384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 -31.9983] 0.25" + "vaxis" "[-1 0 0 0.00170135] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10485,7 +10485,7 @@ world side { "id" "27528" - "plane" "(-96 -272 -128) (-96 272 -128) (-96 272 -384)" + "plane" "(-104 272 -136) (-104 272 -384) (-104 -272 -384)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01" "uaxis" "[0 1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -10496,9 +10496,9 @@ world side { "id" "27527" - "plane" "(-96 -272 -384) (-112 -272 -384) (-112 -272 -128)" + "plane" "(-120 -272 -384) (-120 -272 -136) (-104 -272 -136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -10518,10 +10518,10 @@ world side { "id" "27538" - "plane" "(-112 96 384) (-112 272 384) (-96 272 384)" + "plane" "(-120 272 384) (-104 272 384) (-104 96 384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 -31.9983] 0.25" + "vaxis" "[-1 0 0 0.00170135] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10529,9 +10529,9 @@ world side { "id" "27537" - "plane" "(-96 272 384) (-112 272 384) (-112 272 -128)" + "plane" "(-120 272 384) (-120 272 -136) (-104 272 -136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -10540,7 +10540,7 @@ world side { "id" "27536" - "plane" "(-112 96 -128) (-112 272 -128) (-112 272 384)" + "plane" "(-120 272 -136) (-120 272 384) (-120 96 384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -10551,10 +10551,10 @@ world side { "id" "27535" - "plane" "(-96 272 -128) (-112 272 -128) (-112 96 -128)" + "plane" "(-120 272 -136) (-120 96 -136) (-104 96 -136)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 -31.9983] 0.25" + "vaxis" "[-1 0 0 0.00170135] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10562,9 +10562,9 @@ world side { "id" "27534" - "plane" "(-96 96 384) (-96 272 384) (-96 272 -128)" + "plane" "(-104 272 384) (-104 272 -136) (-104 96 -136)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01" - "uaxis" "[0 1 0 128] 0.25" + "uaxis" "[0 1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "32" @@ -10573,9 +10573,9 @@ world side { "id" "27533" - "plane" "(-96 96 -128) (-112 96 -128) (-112 96 384)" + "plane" "(-120 96 -136) (-120 96 384) (-104 96 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -10595,10 +10595,10 @@ world side { "id" "27544" - "plane" "(-112 -96 384) (-112 96 384) (-96 96 384)" + "plane" "(-120 96 384) (-104 96 384) (-104 -96 384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 -31.9983] 0.25" + "vaxis" "[-1 0 0 0.00170135] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10606,9 +10606,9 @@ world side { "id" "27543" - "plane" "(-96 96 384) (-112 96 384) (-112 96 0)" + "plane" "(-120 96 384) (-120 96 -8) (-104 96 -8)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01" - "uaxis" "[1 0 0 416] 0.25" + "uaxis" "[-1 0 0 352] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "32" @@ -10617,7 +10617,7 @@ world side { "id" "27542" - "plane" "(-112 -96 0) (-112 96 0) (-112 96 384)" + "plane" "(-120 96 -8) (-120 96 384) (-120 -96 384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -10628,10 +10628,10 @@ world side { "id" "27541" - "plane" "(-96 96 0) (-112 96 0) (-112 -96 0)" + "plane" "(-120 96 -8) (-120 -96 -8) (-104 -96 -8)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 -31.9983] 0.25" + "vaxis" "[-1 0 0 0.00170135] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10639,7 +10639,7 @@ world side { "id" "27540" - "plane" "(-96 -96 384) (-96 96 384) (-96 96 0)" + "plane" "(-104 96 384) (-104 96 -8) (-104 -96 -8)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01" "uaxis" "[0 1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -10650,9 +10650,9 @@ world side { "id" "27539" - "plane" "(-96 -96 0) (-112 -96 0) (-112 -96 384)" + "plane" "(-120 -96 -8) (-120 -96 384) (-104 -96 384)" "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[-1 0 0 -384] 0.25" + "uaxis" "[-1 0 0 -416] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "10" @@ -10672,10 +10672,10 @@ world side { "id" "27550" - "plane" "(-112 -272 384) (-112 -96 384) (-96 -96 384)" + "plane" "(-120 -96 384) (-104 -96 384) (-104 -272 384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 -31.9983] 0.25" + "vaxis" "[-1 0 0 0.00170135] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10683,9 +10683,9 @@ world side { "id" "27549" - "plane" "(-96 -96 384) (-112 -96 384) (-112 -96 -128)" + "plane" "(-120 -96 384) (-120 -96 -136) (-104 -96 -136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -10694,7 +10694,7 @@ world side { "id" "27548" - "plane" "(-112 -272 -128) (-112 -96 -128) (-112 -96 384)" + "plane" "(-120 -96 -136) (-120 -96 384) (-120 -272 384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -10705,10 +10705,10 @@ world side { "id" "27547" - "plane" "(-96 -96 -128) (-112 -96 -128) (-112 -272 -128)" + "plane" "(-120 -96 -136) (-120 -272 -136) (-104 -272 -136)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 -31.9983] 0.25" + "vaxis" "[-1 0 0 0.00170135] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10716,9 +10716,9 @@ world side { "id" "27546" - "plane" "(-96 -272 384) (-96 -96 384) (-96 -96 -128)" + "plane" "(-104 -96 384) (-104 -96 -136) (-104 -272 -136)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01" - "uaxis" "[0 1 0 64] 0.25" + "uaxis" "[0 1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "32" @@ -10727,9 +10727,9 @@ world side { "id" "27545" - "plane" "(-96 -272 -128) (-112 -272 -128) (-112 -272 384)" + "plane" "(-120 -272 -136) (-120 -272 384) (-104 -272 384)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -10749,7 +10749,7 @@ world side { "id" "27556" - "plane" "(216 272 384) (-96 272 384) (-96 288 384)" + "plane" "(-104 288 384) (216 288 384) (216 272 384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 -19] -0.25" "vaxis" "[0 -1 0 -34] 0.25" @@ -10760,7 +10760,7 @@ world side { "id" "27555" - "plane" "(216 288 -384) (-96 288 -384) (-96 272 -384)" + "plane" "(-104 272 -384) (216 272 -384) (216 288 -384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 -34.2153] 0.25" "vaxis" "[1 0 0 16] 0.25" @@ -10771,7 +10771,7 @@ world side { "id" "27554" - "plane" "(-96 288 -384) (216 288 -384) (216 288 384)" + "plane" "(216 288 384) (-104 288 384) (-104 288 -384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 1 0] 0.25" @@ -10782,7 +10782,7 @@ world side { "id" "27553" - "plane" "(216 272 -384) (-96 272 -384) (-96 272 384)" + "plane" "(-104 272 384) (216 272 384) (216 272 -384)" "material" "TOOLS/TOOLSBLACK" "uaxis" "[1 0 0 48] 0.25" "vaxis" "[0 0 -1 -24] 0.25" @@ -10793,7 +10793,7 @@ world side { "id" "27552" - "plane" "(-96 272 -384) (-96 288 -384) (-96 288 384)" + "plane" "(-104 288 384) (-104 272 384) (-104 272 -384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 -24] 0.25" @@ -10804,7 +10804,7 @@ world side { "id" "27551" - "plane" "(216 288 -384) (216 272 -384) (216 272 384)" + "plane" "(216 272 384) (216 288 384) (216 288 -384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -10826,7 +10826,7 @@ world side { "id" "27574" - "plane" "(216 -272 -384) (-96 -272 -384) (-96 272 -384)" + "plane" "(-104 272 -384) (216 272 -384) (216 -272 -384)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" "uaxis" "[1 0 0 -19] -0.25" "vaxis" "[0 -1 0 -34] 0.25" @@ -10837,7 +10837,7 @@ world side { "id" "27573" - "plane" "(216 272 -400) (-96 272 -400) (-96 -272 -400)" + "plane" "(-104 -272 -400) (216 -272 -400) (216 272 -400)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 -34.2153] 0.25" "vaxis" "[1 0 0 16] 0.25" @@ -10848,7 +10848,7 @@ world side { "id" "27572" - "plane" "(-96 272 -400) (216 272 -400) (216 272 -384)" + "plane" "(216 272 -384) (-104 272 -384) (-104 272 -400)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" "uaxis" "[0 0 1 -40.0048] -0.25" "vaxis" "[1 0 0 16] 0.25" @@ -10859,7 +10859,7 @@ world side { "id" "27571" - "plane" "(216 -272 -400) (-96 -272 -400) (-96 -272 -384)" + "plane" "(-104 -272 -384) (216 -272 -384) (216 -272 -400)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 48] 0.25" "vaxis" "[0 0 -1 -24] 0.25" @@ -10870,7 +10870,7 @@ world side { "id" "27570" - "plane" "(-96 -272 -400) (-96 272 -400) (-96 272 -384)" + "plane" "(-104 272 -384) (-104 -272 -384) (-104 -272 -400)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 -24] 0.25" @@ -10881,7 +10881,7 @@ world side { "id" "27569" - "plane" "(216 272 -400) (216 -272 -400) (216 -272 -384)" + "plane" "(216 -272 -384) (216 272 -384) (216 272 -400)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -10903,7 +10903,7 @@ world side { "id" "27580" - "plane" "(216 -288 384) (-96 -288 384) (-96 -272 384)" + "plane" "(-104 -272 384) (216 -272 384) (216 -288 384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 -35] -0.25" "vaxis" "[0 -1 0 -34] 0.25" @@ -10914,7 +10914,7 @@ world side { "id" "27579" - "plane" "(216 -272 -384) (-96 -272 -384) (-96 -288 -384)" + "plane" "(-104 -288 -384) (216 -288 -384) (216 -272 -384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 -34.2153] 0.25" "vaxis" "[1 0 0 32] 0.25" @@ -10925,7 +10925,7 @@ world side { "id" "27578" - "plane" "(-96 -272 -384) (216 -272 -384) (216 -272 384)" + "plane" "(216 -272 384) (-104 -272 384) (-104 -272 -384)" "material" "TOOLS/TOOLSBLACK" "uaxis" "[0 0 -1 23.9951] -0.25" "vaxis" "[1 0 0 32] 0.25" @@ -10936,7 +10936,7 @@ world side { "id" "27577" - "plane" "(216 -288 -384) (-96 -288 -384) (-96 -288 384)" + "plane" "(-104 -288 384) (216 -288 384) (216 -288 -384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -10947,7 +10947,7 @@ world side { "id" "27576" - "plane" "(-96 -288 -384) (-96 -272 -384) (-96 -272 384)" + "plane" "(-104 -272 384) (-104 -288 384) (-104 -288 -384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 -24] 0.25" @@ -10958,7 +10958,7 @@ world side { "id" "27575" - "plane" "(216 -272 -384) (216 -288 -384) (216 -288 384)" + "plane" "(216 -288 384) (216 -272 384) (216 -272 -384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -10980,7 +10980,7 @@ world side { "id" "27586" - "plane" "(216 -272 416) (-96 -272 416) (-96 272 416)" + "plane" "(-104 272 416) (216 272 416) (216 -272 416)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -10991,7 +10991,7 @@ world side { "id" "27585" - "plane" "(216 272 384) (-96 272 384) (-96 -272 384)" + "plane" "(-104 -272 384) (216 -272 384) (216 272 384)" "material" "TOOLS/TOOLSBLACK" "uaxis" "[0 -1 0 -34.2153] 0.25" "vaxis" "[1 0 0 16] 0.25" @@ -11002,7 +11002,7 @@ world side { "id" "27584" - "plane" "(-96 272 384) (216 272 384) (216 272 416)" + "plane" "(216 272 416) (-104 272 416) (-104 272 384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 0 -1 23.9951] -0.25" "vaxis" "[1 0 0 16] 0.25" @@ -11013,7 +11013,7 @@ world side { "id" "27583" - "plane" "(216 -272 384) (-96 -272 384) (-96 -272 416)" + "plane" "(-104 -272 416) (216 -272 416) (216 -272 384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 48] 0.25" "vaxis" "[0 0 -1 -24] 0.25" @@ -11024,7 +11024,7 @@ world side { "id" "27582" - "plane" "(-96 -272 384) (-96 272 384) (-96 272 416)" + "plane" "(-104 272 416) (-104 -272 416) (-104 -272 384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 -24] 0.25" @@ -11035,7 +11035,7 @@ world side { "id" "27581" - "plane" "(216 272 384) (216 -272 384) (216 -272 416)" + "plane" "(216 -272 416) (216 272 416) (216 272 384)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -11057,9 +11057,9 @@ world side { "id" "17260" - "plane" "(-128 96 -128) (-128 -96 -128) (-112 -96 -128)" + "plane" "(-136 96 -136) (-136 -96 -136) (-120 -96 -136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -11068,10 +11068,10 @@ world side { "id" "17259" - "plane" "(-128 -96 0) (-128 -96 -128) (-128 96 -128)" + "plane" "(-136 -96 -8) (-136 -96 -136) (-136 96 -136)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11079,10 +11079,10 @@ world side { "id" "17258" - "plane" "(-112 96 0) (-112 96 -128) (-112 -96 -128)" + "plane" "(-120 96 -8) (-120 96 -136) (-120 -96 -136)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11090,10 +11090,10 @@ world side { "id" "17257" - "plane" "(-128 96 0) (-128 96 -128) (-112 96 -128)" + "plane" "(-136 96 -8) (-136 96 -136) (-120 96 -136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11101,10 +11101,10 @@ world side { "id" "17256" - "plane" "(-112 -96 0) (-112 -96 -128) (-128 -96 -128)" + "plane" "(-120 -96 -8) (-120 -96 -136) (-136 -96 -136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11112,9 +11112,9 @@ world side { "id" "17255" - "plane" "(-128 -96 0) (-128 96 0) (-112 96 0)" + "plane" "(-136 -96 -8) (-136 96 -8) (-120 96 -8)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -18043,6 +18043,60 @@ world } } entity +{ + "id" "122609" + "classname" "comp_kv_setter" + "angles" "0 0 0" + "conv_ang" "0" + "ctrl_type" "0" + "ctrl_value" "1" + "invert" "0" + "kv_name" "lightingorigin" + "kv_value_local" "@exit_portal_chamber_side" + "kv_value_mode" "local" + "kv_value_pos" "-95.03 2 -111.49" + "mode" "kv" + "rotate" "0" + "target" "@exit_airlock_door" + "origin" "-95.0274 2 -111.486" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "122269" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/hanging_walkway_end_cap.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "-96 0 -134" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity { "id" "121587" "classname" "env_soundscape" @@ -18067,6 +18121,9 @@ entity "cspinup" "0" "fadeinsecs" "0" "fadeoutsecs" "0" + "haddons_enabled" "-1" + "haddons_infrange" "-1" + "haddons_mode" "-1" "health" "10" "lfomodpitch" "0" "lfomodvol" "0" @@ -18140,6 +18197,9 @@ entity "cspinup" "0" "fadeinsecs" "0" "fadeoutsecs" "0" + "haddons_enabled" "-1" + "haddons_infrange" "-1" + "haddons_mode" "-1" "health" "10" "lfomodpitch" "0" "lfomodvol" "0" @@ -18189,6 +18249,9 @@ entity "cspinup" "0" "fadeinsecs" "0" "fadeoutsecs" "0" + "haddons_enabled" "-1" + "haddons_infrange" "-1" + "haddons_mode" "-1" "health" "10" "lfomodpitch" "0" "lfomodvol" "0" @@ -20068,6 +20131,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 0 0" "origin" "16 -0.106995 -80" editor @@ -24446,6 +24510,7 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "0" "angles" "-86.5379 79.578 96.0634" "pitch" "-86.5379" @@ -24511,7 +24576,7 @@ entity { "id" "103173" "classname" "trigger_multiple" - "origin" "60 0 -376" + "origin" "56 0 -376" "solid" "6" "spawnflags" "4104" "wait" "1" @@ -24525,7 +24590,7 @@ entity side { "id" "27592" - "plane" "(216 -272 -368) (216 -272 -384) (-96 -272 -384)" + "plane" "(216 -272 -368) (216 -272 -384) (-104 -272 -384)" "material" "TOOLS/TOOLSTRIGGER" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 -8] 0.25" @@ -24536,7 +24601,7 @@ entity side { "id" "27591" - "plane" "(-96 272 -368) (-96 272 -384) (216 272 -384)" + "plane" "(-104 272 -368) (-104 272 -384) (216 272 -384)" "material" "TOOLS/TOOLSTRIGGER" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 -8] 0.25" @@ -24547,7 +24612,7 @@ entity side { "id" "27590" - "plane" "(-96 -272 -368) (-96 -272 -384) (-96 272 -384)" + "plane" "(-104 -272 -368) (-104 -272 -384) (-104 272 -384)" "material" "TOOLS/TOOLSTRIGGER" "uaxis" "[0 1 0 8] 0.25" "vaxis" "[0 0 -1 -24] 0.25" @@ -24569,7 +24634,7 @@ entity side { "id" "27588" - "plane" "(216 -272 -368) (-96 -272 -368) (-96 272 -368)" + "plane" "(216 -272 -368) (-104 -272 -368) (-104 272 -368)" "material" "TOOLS/TOOLSTRIGGER" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 1 0 40] 0.25" @@ -24580,7 +24645,7 @@ entity side { "id" "27587" - "plane" "(216 272 -384) (-96 272 -384) (-96 -272 -384)" + "plane" "(216 272 -384) (-104 272 -384) (-104 -272 -384)" "material" "TOOLS/TOOLSTRIGGER" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 1 0 40] 0.25" @@ -24699,6 +24764,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 0 0" "origin" "312 64 -73.292" editor @@ -24973,21 +25039,6 @@ entity } } entity -{ - "id" "103289" - "classname" "env_cubemap" - "cubemapsize" "4" - "sides" "" - "origin" "-88 0.109985 -64" - editor - { - "color" "0 0 255" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 500]" - } -} -entity { "id" "103292" "classname" "prop_static" @@ -26036,7 +26087,7 @@ entity "screenspacefade" "0" "skin" "0" "solid" "6" - "origin" "-81 96 -0.14801" + "origin" "-89 96 -0.14801" editor { "color" "255 255 0" @@ -26609,7 +26660,7 @@ entity "screenspacefade" "0" "skin" "0" "solid" "6" - "origin" "-81 -104 -0.14801" + "origin" "-89 -104 -0.14801" editor { "color" "255 255 0" @@ -30829,7 +30880,7 @@ entity "rendercolor" "255 255 255" "targetname" "@exit_portal_elevator_side" "width" "64" - "origin" "-105.001 0.239014 -68" + "origin" "-113.001 0 -72" editor { "color" "220 30 220" @@ -30843,6 +30894,7 @@ entity "id" "74031" "classname" "prop_testchamber_door" "angles" "0 180 0" + "lightingorigin" "@exit_portal_elevator_side" "renderamt" "255" "rendercolor" "255 255 255" "solid" "6" @@ -30851,7 +30903,7 @@ entity { "OnFullyClosed" "@exit_portal_chamber_sideClose0-1" } - "origin" "-108 0.237976 -132" + "origin" "-116 0.237976 -136" editor { "color" "220 30 220" @@ -30870,10 +30922,10 @@ entity side { "id" "6060" - "plane" "(-112 64 0) (-112 64 -128) (-112 96 -128)" + "plane" "(-120 64 -8) (-120 64 -136) (-120 96 -136)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -30881,9 +30933,9 @@ entity side { "id" "6059" - "plane" "(-112 96 -128) (-112 64 -128) (-96 64 -128)" + "plane" "(-120 96 -136) (-120 64 -136) (-104 64 -136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -56] 0.25" + "uaxis" "[-1 0 0 -24] 0.25" "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -30892,7 +30944,7 @@ entity side { "id" "6058" - "plane" "(-96 96 0) (-96 96 -128) (-96 64 -128)" + "plane" "(-104 96 -8) (-104 96 -136) (-104 64 -136)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01" "uaxis" "[0 1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -30903,10 +30955,10 @@ entity side { "id" "6057" - "plane" "(-112 96 0) (-112 96 -128) (-96 96 -128)" + "plane" "(-120 96 -8) (-120 96 -136) (-104 96 -136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -30914,10 +30966,10 @@ entity side { "id" "6056" - "plane" "(-96 64 0) (-96 64 -128) (-112 64 -128)" + "plane" "(-104 64 -8) (-104 64 -136) (-120 64 -136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -30925,9 +30977,9 @@ entity side { "id" "6055" - "plane" "(-112 64 0) (-112 96 0) (-96 96 0)" + "plane" "(-120 64 -8) (-120 96 -8) (-104 96 -8)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -56] 0.25" + "uaxis" "[-1 0 0 -24] 0.25" "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -30946,10 +30998,10 @@ entity side { "id" "6054" - "plane" "(-112 -64 -95) (-112 -64 -106) (-112 -57 -106)" + "plane" "(-120 -64 -103) (-120 -64 -114) (-120 -57 -114)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -30957,7 +31009,7 @@ entity side { "id" "6053" - "plane" "(-96 -64 -106) (-96 -64 -95) (-96 -60 -95)" + "plane" "(-104 -64 -114) (-104 -64 -103) (-104 -60 -103)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01" "uaxis" "[0 1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -30968,10 +31020,10 @@ entity side { "id" "6052" - "plane" "(-96 -64 -95) (-96 -64 -106) (-112 -64 -106)" + "plane" "(-104 -64 -103) (-104 -64 -114) (-120 -64 -114)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -30979,10 +31031,10 @@ entity side { "id" "6051" - "plane" "(-112 -60 -95) (-112 -57 -106) (-96 -57 -106)" + "plane" "(-120 -60 -103) (-120 -57 -114) (-104 -57 -114)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -30990,9 +31042,9 @@ entity side { "id" "6050" - "plane" "(-112 -64 -95) (-112 -60 -95) (-96 -60 -95)" + "plane" "(-120 -64 -103) (-120 -60 -103) (-104 -60 -103)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -31001,9 +31053,9 @@ entity side { "id" "6049" - "plane" "(-112 -57 -106) (-112 -64 -106) (-96 -64 -106)" + "plane" "(-120 -57 -114) (-120 -64 -114) (-104 -64 -114)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -31022,10 +31074,10 @@ entity side { "id" "6048" - "plane" "(-112 -64 -83) (-112 -64 -95) (-112 -60 -95)" + "plane" "(-120 -64 -91) (-120 -64 -103) (-120 -60 -103)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31033,7 +31085,7 @@ entity side { "id" "6047" - "plane" "(-96 -64 -95) (-96 -64 -83) (-96 -61 -83)" + "plane" "(-104 -64 -103) (-104 -64 -91) (-104 -61 -91)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01" "uaxis" "[0 1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -31044,10 +31096,10 @@ entity side { "id" "6046" - "plane" "(-96 -64 -83) (-96 -64 -95) (-112 -64 -95)" + "plane" "(-104 -64 -91) (-104 -64 -103) (-120 -64 -103)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31055,9 +31107,9 @@ entity side { "id" "6045" - "plane" "(-112 -64 -83) (-112 -61 -83) (-96 -61 -83)" + "plane" "(-120 -64 -91) (-120 -61 -91) (-104 -61 -91)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -31066,10 +31118,10 @@ entity side { "id" "6044" - "plane" "(-112 -61 -83) (-112 -60 -95) (-96 -60 -95)" + "plane" "(-120 -61 -91) (-120 -60 -103) (-104 -60 -103)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31077,9 +31129,9 @@ entity side { "id" "6043" - "plane" "(-112 -60 -95) (-112 -64 -95) (-96 -64 -95)" + "plane" "(-120 -60 -103) (-120 -64 -103) (-104 -64 -103)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -31098,10 +31150,10 @@ entity side { "id" "6042" - "plane" "(-112 -64 -106) (-112 -64 -117) (-112 -51 -117)" + "plane" "(-120 -64 -114) (-120 -64 -125) (-120 -51 -125)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31109,7 +31161,7 @@ entity side { "id" "6041" - "plane" "(-96 -64 -117) (-96 -64 -106) (-96 -57 -106)" + "plane" "(-104 -64 -125) (-104 -64 -114) (-104 -57 -114)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01" "uaxis" "[0 1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -31120,10 +31172,10 @@ entity side { "id" "6040" - "plane" "(-96 -64 -106) (-96 -64 -117) (-112 -64 -117)" + "plane" "(-104 -64 -114) (-104 -64 -125) (-120 -64 -125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31131,9 +31183,9 @@ entity side { "id" "6039" - "plane" "(-112 -64 -106) (-112 -57 -106) (-96 -57 -106)" + "plane" "(-120 -64 -114) (-120 -57 -114) (-104 -57 -114)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -31142,10 +31194,10 @@ entity side { "id" "6038" - "plane" "(-112 -57 -106) (-112 -51 -117) (-96 -51 -117)" + "plane" "(-120 -57 -114) (-120 -51 -125) (-104 -51 -125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31153,9 +31205,9 @@ entity side { "id" "6037" - "plane" "(-112 -51 -117) (-112 -64 -117) (-96 -64 -117)" + "plane" "(-120 -51 -125) (-120 -64 -125) (-104 -64 -125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -31174,10 +31226,10 @@ entity side { "id" "6036" - "plane" "(-112 -64 -117) (-112 -64 -128) (-112 -41 -128)" + "plane" "(-120 -64 -125) (-120 -64 -136) (-120 -41 -136)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31185,7 +31237,7 @@ entity side { "id" "6035" - "plane" "(-96 -64 -128) (-96 -64 -117) (-96 -51 -117)" + "plane" "(-104 -64 -136) (-104 -64 -125) (-104 -51 -125)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01" "uaxis" "[0 1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -31196,10 +31248,10 @@ entity side { "id" "6034" - "plane" "(-96 -64 -117) (-96 -64 -128) (-112 -64 -128)" + "plane" "(-104 -64 -125) (-104 -64 -136) (-120 -64 -136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31207,9 +31259,9 @@ entity side { "id" "6033" - "plane" "(-112 -64 -117) (-112 -51 -117) (-96 -51 -117)" + "plane" "(-120 -64 -125) (-120 -51 -125) (-104 -51 -125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -31218,10 +31270,10 @@ entity side { "id" "6032" - "plane" "(-112 -51 -117) (-112 -41 -128) (-96 -41 -128)" + "plane" "(-120 -51 -125) (-120 -41 -136) (-104 -41 -136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31229,9 +31281,9 @@ entity side { "id" "6031" - "plane" "(-112 -41 -128) (-112 -64 -128) (-96 -64 -128)" + "plane" "(-120 -41 -136) (-120 -64 -136) (-104 -64 -136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -31250,7 +31302,7 @@ entity side { "id" "6030" - "plane" "(-96 64 -83) (-96 64 -95) (-96 60 -95)" + "plane" "(-104 64 -91) (-104 64 -103) (-104 60 -103)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01" "uaxis" "[0 1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -31261,10 +31313,10 @@ entity side { "id" "6029" - "plane" "(-112 64 -95) (-112 64 -83) (-112 61 -83)" + "plane" "(-120 64 -103) (-120 64 -91) (-120 61 -91)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31272,10 +31324,10 @@ entity side { "id" "6028" - "plane" "(-112 64 -83) (-112 64 -95) (-96 64 -95)" + "plane" "(-120 64 -91) (-120 64 -103) (-104 64 -103)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31283,9 +31335,9 @@ entity side { "id" "6027" - "plane" "(-112 61 -83) (-112 64 -83) (-96 64 -83)" + "plane" "(-120 61 -91) (-120 64 -91) (-104 64 -91)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -31294,10 +31346,10 @@ entity side { "id" "6026" - "plane" "(-96 61 -83) (-96 60 -95) (-112 60 -95)" + "plane" "(-104 61 -91) (-104 60 -103) (-120 60 -103)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31305,9 +31357,9 @@ entity side { "id" "6025" - "plane" "(-112 64 -95) (-112 60 -95) (-96 60 -95)" + "plane" "(-120 64 -103) (-120 60 -103) (-104 60 -103)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -31326,7 +31378,7 @@ entity side { "id" "6024" - "plane" "(-96 64 -95) (-96 64 -106) (-96 57 -106)" + "plane" "(-104 64 -103) (-104 64 -114) (-104 57 -114)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01" "uaxis" "[0 1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -31337,10 +31389,10 @@ entity side { "id" "6023" - "plane" "(-112 64 -106) (-112 64 -95) (-112 60 -95)" + "plane" "(-120 64 -114) (-120 64 -103) (-120 60 -103)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31348,10 +31400,10 @@ entity side { "id" "6022" - "plane" "(-112 64 -95) (-112 64 -106) (-96 64 -106)" + "plane" "(-120 64 -103) (-120 64 -114) (-104 64 -114)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31359,10 +31411,10 @@ entity side { "id" "6021" - "plane" "(-96 60 -95) (-96 57 -106) (-112 57 -106)" + "plane" "(-104 60 -103) (-104 57 -114) (-120 57 -114)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31370,9 +31422,9 @@ entity side { "id" "6020" - "plane" "(-112 60 -95) (-112 64 -95) (-96 64 -95)" + "plane" "(-120 60 -103) (-120 64 -103) (-104 64 -103)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -31381,9 +31433,9 @@ entity side { "id" "6019" - "plane" "(-112 64 -106) (-112 57 -106) (-96 57 -106)" + "plane" "(-120 64 -114) (-120 57 -114) (-104 57 -114)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -31402,7 +31454,7 @@ entity side { "id" "6018" - "plane" "(-96 64 -117) (-96 64 -128) (-96 41 -128)" + "plane" "(-104 64 -125) (-104 64 -136) (-104 41 -136)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01" "uaxis" "[0 1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -31413,10 +31465,10 @@ entity side { "id" "6017" - "plane" "(-112 64 -128) (-112 64 -117) (-112 51 -117)" + "plane" "(-120 64 -136) (-120 64 -125) (-120 51 -125)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31424,10 +31476,10 @@ entity side { "id" "6016" - "plane" "(-112 64 -117) (-112 64 -128) (-96 64 -128)" + "plane" "(-120 64 -125) (-120 64 -136) (-104 64 -136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31435,9 +31487,9 @@ entity side { "id" "6015" - "plane" "(-112 51 -117) (-112 64 -117) (-96 64 -117)" + "plane" "(-120 51 -125) (-120 64 -125) (-104 64 -125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -31446,10 +31498,10 @@ entity side { "id" "6014" - "plane" "(-96 51 -117) (-96 41 -128) (-112 41 -128)" + "plane" "(-104 51 -125) (-104 41 -136) (-120 41 -136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31457,9 +31509,9 @@ entity side { "id" "6013" - "plane" "(-112 64 -128) (-112 41 -128) (-96 41 -128)" + "plane" "(-120 64 -136) (-120 41 -136) (-104 41 -136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -31478,7 +31530,7 @@ entity side { "id" "6012" - "plane" "(-96 64 -106) (-96 64 -117) (-96 51 -117)" + "plane" "(-104 64 -114) (-104 64 -125) (-104 51 -125)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01" "uaxis" "[0 1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -31489,10 +31541,10 @@ entity side { "id" "6011" - "plane" "(-112 64 -117) (-112 64 -106) (-112 57 -106)" + "plane" "(-120 64 -125) (-120 64 -114) (-120 57 -114)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31500,10 +31552,10 @@ entity side { "id" "6010" - "plane" "(-112 64 -106) (-112 64 -117) (-96 64 -117)" + "plane" "(-120 64 -114) (-120 64 -125) (-104 64 -125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31511,9 +31563,9 @@ entity side { "id" "6009" - "plane" "(-112 57 -106) (-112 64 -106) (-96 64 -106)" + "plane" "(-120 57 -114) (-120 64 -114) (-104 64 -114)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -31522,10 +31574,10 @@ entity side { "id" "6008" - "plane" "(-96 57 -106) (-96 51 -117) (-112 51 -117)" + "plane" "(-104 57 -114) (-104 51 -125) (-120 51 -125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31533,9 +31585,9 @@ entity side { "id" "6007" - "plane" "(-112 64 -117) (-112 51 -117) (-96 51 -117)" + "plane" "(-120 64 -125) (-120 51 -125) (-104 51 -125)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -31554,7 +31606,7 @@ entity side { "id" "6006" - "plane" "(-96 -51 -49) (-96 -57 -60) (-96 -64 -60)" + "plane" "(-104 -51 -57) (-104 -57 -68) (-104 -64 -68)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01" "uaxis" "[0 1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -31565,10 +31617,10 @@ entity side { "id" "6005" - "plane" "(-112 -64 -49) (-112 -64 -60) (-112 -57 -60)" + "plane" "(-120 -64 -57) (-120 -64 -68) (-120 -57 -68)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31576,10 +31628,10 @@ entity side { "id" "6004" - "plane" "(-96 -64 -49) (-96 -64 -60) (-112 -64 -60)" + "plane" "(-104 -64 -57) (-104 -64 -68) (-120 -64 -68)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31587,9 +31639,9 @@ entity side { "id" "6003" - "plane" "(-112 -57 -60) (-112 -64 -60) (-96 -64 -60)" + "plane" "(-120 -57 -68) (-120 -64 -68) (-104 -64 -68)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -31598,10 +31650,10 @@ entity side { "id" "6002" - "plane" "(-112 -51 -49) (-112 -57 -60) (-96 -57 -60)" + "plane" "(-120 -51 -57) (-120 -57 -68) (-104 -57 -68)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31609,9 +31661,9 @@ entity side { "id" "6001" - "plane" "(-112 -64 -49) (-112 -51 -49) (-96 -51 -49)" + "plane" "(-120 -64 -57) (-120 -51 -57) (-104 -51 -57)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -31630,7 +31682,7 @@ entity side { "id" "6000" - "plane" "(-96 -41 -38) (-96 -51 -49) (-96 -64 -49)" + "plane" "(-104 -41 -46) (-104 -51 -57) (-104 -64 -57)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01" "uaxis" "[0 1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -31641,10 +31693,10 @@ entity side { "id" "5999" - "plane" "(-112 -64 0) (-112 -64 -49) (-112 -51 -49)" + "plane" "(-120 -64 -8) (-120 -64 -57) (-120 -51 -57)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31652,10 +31704,10 @@ entity side { "id" "5998" - "plane" "(-96 -64 0) (-96 -64 -49) (-112 -64 -49)" + "plane" "(-104 -64 -8) (-104 -64 -57) (-120 -64 -57)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31663,9 +31715,9 @@ entity side { "id" "5997" - "plane" "(-112 -51 -49) (-112 -64 -49) (-96 -64 -49)" + "plane" "(-120 -51 -57) (-120 -64 -57) (-104 -64 -57)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -31674,10 +31726,10 @@ entity side { "id" "5996" - "plane" "(-112 -41 -38) (-112 -51 -49) (-96 -51 -49)" + "plane" "(-120 -41 -46) (-120 -51 -57) (-104 -51 -57)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31685,10 +31737,10 @@ entity side { "id" "5995" - "plane" "(-112 -64 0) (-112 -41 -38) (-96 -41 -38)" + "plane" "(-120 -64 -8) (-120 -41 -46) (-104 -41 -46)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31706,7 +31758,7 @@ entity side { "id" "5994" - "plane" "(-96 -34 0) (-96 -24 0) (-96 -24 -27)" + "plane" "(-104 -34 -8) (-104 -24 -8) (-104 -24 -35)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01" "uaxis" "[0 1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -31717,10 +31769,10 @@ entity side { "id" "5993" - "plane" "(-112 -34 -32) (-112 -24 -27) (-112 -24 0)" + "plane" "(-120 -34 -40) (-120 -24 -35) (-120 -24 -8)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31728,9 +31780,9 @@ entity side { "id" "5992" - "plane" "(-112 -34 0) (-112 -24 0) (-96 -24 0)" + "plane" "(-120 -34 -8) (-120 -24 -8) (-104 -24 -8)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -31739,10 +31791,10 @@ entity side { "id" "5991" - "plane" "(-112 -24 0) (-112 -24 -27) (-96 -24 -27)" + "plane" "(-120 -24 -8) (-120 -24 -35) (-104 -24 -35)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31750,9 +31802,9 @@ entity side { "id" "5990" - "plane" "(-112 -24 -27) (-112 -34 -32) (-96 -34 -32)" + "plane" "(-120 -24 -35) (-120 -34 -40) (-104 -34 -40)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -31761,10 +31813,10 @@ entity side { "id" "5989" - "plane" "(-96 -34 0) (-96 -34 -32) (-112 -34 -32)" + "plane" "(-104 -34 -8) (-104 -34 -40) (-120 -34 -40)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31782,7 +31834,7 @@ entity side { "id" "5988" - "plane" "(-96 -64 0) (-96 -34 0) (-96 -34 -32)" + "plane" "(-104 -64 -8) (-104 -34 -8) (-104 -34 -40)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01" "uaxis" "[0 1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -31793,10 +31845,10 @@ entity side { "id" "5987" - "plane" "(-112 -41 -38) (-112 -34 -32) (-112 -34 0)" + "plane" "(-120 -41 -46) (-120 -34 -40) (-120 -34 -8)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31804,9 +31856,9 @@ entity side { "id" "5986" - "plane" "(-112 -64 0) (-112 -34 0) (-96 -34 0)" + "plane" "(-120 -64 -8) (-120 -34 -8) (-104 -34 -8)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -31815,10 +31867,10 @@ entity side { "id" "5985" - "plane" "(-112 -34 0) (-112 -34 -32) (-96 -34 -32)" + "plane" "(-120 -34 -8) (-120 -34 -40) (-104 -34 -40)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31826,9 +31878,9 @@ entity side { "id" "5984" - "plane" "(-112 -34 -32) (-112 -41 -38) (-96 -41 -38)" + "plane" "(-120 -34 -40) (-120 -41 -46) (-104 -41 -46)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -31837,10 +31889,10 @@ entity side { "id" "5983" - "plane" "(-96 -64 0) (-96 -41 -38) (-112 -41 -38)" + "plane" "(-104 -64 -8) (-104 -41 -46) (-120 -41 -46)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31858,7 +31910,7 @@ entity side { "id" "5982" - "plane" "(-96 -24 0) (-96 -12 0) (-96 -12 -23)" + "plane" "(-104 -24 -8) (-104 -12 -8) (-104 -12 -31)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01" "uaxis" "[0 1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -31869,10 +31921,10 @@ entity side { "id" "5981" - "plane" "(-112 -24 -27) (-112 -12 -23) (-112 -12 0)" + "plane" "(-120 -24 -35) (-120 -12 -31) (-120 -12 -8)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31880,9 +31932,9 @@ entity side { "id" "5980" - "plane" "(-112 -24 0) (-112 -12 0) (-96 -12 0)" + "plane" "(-120 -24 -8) (-120 -12 -8) (-104 -12 -8)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -31891,9 +31943,9 @@ entity side { "id" "5979" - "plane" "(-112 -12 -23) (-112 -24 -27) (-96 -24 -27)" + "plane" "(-120 -12 -31) (-120 -24 -35) (-104 -24 -35)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -31902,10 +31954,10 @@ entity side { "id" "5978" - "plane" "(-112 -12 0) (-112 -12 -23) (-96 -12 -23)" + "plane" "(-120 -12 -8) (-120 -12 -31) (-104 -12 -31)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31913,10 +31965,10 @@ entity side { "id" "5977" - "plane" "(-96 -24 0) (-96 -24 -27) (-112 -24 -27)" + "plane" "(-104 -24 -8) (-104 -24 -35) (-120 -24 -35)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31934,7 +31986,7 @@ entity side { "id" "5976" - "plane" "(-96 -12 0) (-96 0 0) (-96 0 -22)" + "plane" "(-104 -12 -8) (-104 0 -8) (-104 0 -30)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01" "uaxis" "[0 1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -31945,10 +31997,10 @@ entity side { "id" "5975" - "plane" "(-112 -12 -23) (-112 0 -22) (-112 0 0)" + "plane" "(-120 -12 -31) (-120 0 -30) (-120 0 -8)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31956,9 +32008,9 @@ entity side { "id" "5974" - "plane" "(-112 -12 0) (-112 0 0) (-96 0 0)" + "plane" "(-120 -12 -8) (-120 0 -8) (-104 0 -8)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -31967,9 +32019,9 @@ entity side { "id" "5973" - "plane" "(-112 0 -22) (-112 -12 -23) (-96 -12 -23)" + "plane" "(-120 0 -30) (-120 -12 -31) (-104 -12 -31)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -31978,10 +32030,10 @@ entity side { "id" "5972" - "plane" "(-112 0 0) (-112 0 -22) (-96 0 -22)" + "plane" "(-120 0 -8) (-120 0 -30) (-104 0 -30)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -31989,10 +32041,10 @@ entity side { "id" "5971" - "plane" "(-96 -12 0) (-96 -12 -23) (-112 -12 -23)" + "plane" "(-104 -12 -8) (-104 -12 -31) (-120 -12 -31)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -32010,10 +32062,10 @@ entity side { "id" "5970" - "plane" "(-112 41 -38) (-112 51 -49) (-112 64 -49)" + "plane" "(-120 41 -46) (-120 51 -57) (-120 64 -57)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -32021,7 +32073,7 @@ entity side { "id" "5969" - "plane" "(-96 64 0) (-96 64 -49) (-96 51 -49)" + "plane" "(-104 64 -8) (-104 64 -57) (-104 51 -57)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01" "uaxis" "[0 1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -32032,10 +32084,10 @@ entity side { "id" "5968" - "plane" "(-112 64 0) (-112 64 -49) (-96 64 -49)" + "plane" "(-120 64 -8) (-120 64 -57) (-104 64 -57)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -32043,9 +32095,9 @@ entity side { "id" "5967" - "plane" "(-112 64 -49) (-112 51 -49) (-96 51 -49)" + "plane" "(-120 64 -57) (-120 51 -57) (-104 51 -57)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -32054,10 +32106,10 @@ entity side { "id" "5966" - "plane" "(-96 41 -38) (-96 51 -49) (-112 51 -49)" + "plane" "(-104 41 -46) (-104 51 -57) (-120 51 -57)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -32065,10 +32117,10 @@ entity side { "id" "5965" - "plane" "(-96 64 0) (-96 41 -38) (-112 41 -38)" + "plane" "(-104 64 -8) (-104 41 -46) (-120 41 -46)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -32086,10 +32138,10 @@ entity side { "id" "5964" - "plane" "(-112 51 -49) (-112 57 -60) (-112 64 -60)" + "plane" "(-120 51 -57) (-120 57 -68) (-120 64 -68)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -32097,7 +32149,7 @@ entity side { "id" "5963" - "plane" "(-96 64 -49) (-96 64 -60) (-96 57 -60)" + "plane" "(-104 64 -57) (-104 64 -68) (-104 57 -68)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01" "uaxis" "[0 1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -32108,10 +32160,10 @@ entity side { "id" "5962" - "plane" "(-112 64 -49) (-112 64 -60) (-96 64 -60)" + "plane" "(-120 64 -57) (-120 64 -68) (-104 64 -68)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -32119,9 +32171,9 @@ entity side { "id" "5961" - "plane" "(-112 64 -60) (-112 57 -60) (-96 57 -60)" + "plane" "(-120 64 -68) (-120 57 -68) (-104 57 -68)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -32130,10 +32182,10 @@ entity side { "id" "5960" - "plane" "(-96 51 -49) (-96 57 -60) (-112 57 -60)" + "plane" "(-104 51 -57) (-104 57 -68) (-120 57 -68)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -32141,9 +32193,9 @@ entity side { "id" "5959" - "plane" "(-112 51 -49) (-112 64 -49) (-96 64 -49)" + "plane" "(-120 51 -57) (-120 64 -57) (-104 64 -57)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -32162,10 +32214,10 @@ entity side { "id" "5958" - "plane" "(-112 34 0) (-112 24 0) (-112 24 -27)" + "plane" "(-120 34 -8) (-120 24 -8) (-120 24 -35)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -32173,7 +32225,7 @@ entity side { "id" "5957" - "plane" "(-96 34 -32) (-96 24 -27) (-96 24 0)" + "plane" "(-104 34 -40) (-104 24 -35) (-104 24 -8)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01" "uaxis" "[0 1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -32184,9 +32236,9 @@ entity side { "id" "5956" - "plane" "(-112 24 0) (-112 34 0) (-96 34 0)" + "plane" "(-120 24 -8) (-120 34 -8) (-104 34 -8)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -32195,10 +32247,10 @@ entity side { "id" "5955" - "plane" "(-96 24 0) (-96 24 -27) (-112 24 -27)" + "plane" "(-104 24 -8) (-104 24 -35) (-120 24 -35)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -32206,9 +32258,9 @@ entity side { "id" "5954" - "plane" "(-112 34 -32) (-112 24 -27) (-96 24 -27)" + "plane" "(-120 34 -40) (-120 24 -35) (-104 24 -35)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -32217,10 +32269,10 @@ entity side { "id" "5953" - "plane" "(-112 34 0) (-112 34 -32) (-96 34 -32)" + "plane" "(-120 34 -8) (-120 34 -40) (-104 34 -40)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -32238,10 +32290,10 @@ entity side { "id" "5952" - "plane" "(-112 57 -60) (-112 60 -71) (-112 64 -71)" + "plane" "(-120 57 -68) (-120 60 -79) (-120 64 -79)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -32249,7 +32301,7 @@ entity side { "id" "5951" - "plane" "(-96 64 -60) (-96 64 -71) (-96 60 -71)" + "plane" "(-104 64 -68) (-104 64 -79) (-104 60 -79)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01" "uaxis" "[0 1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -32260,10 +32312,10 @@ entity side { "id" "5950" - "plane" "(-112 64 -60) (-112 64 -71) (-96 64 -71)" + "plane" "(-120 64 -68) (-120 64 -79) (-104 64 -79)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -32271,10 +32323,10 @@ entity side { "id" "5949" - "plane" "(-96 57 -60) (-96 60 -71) (-112 60 -71)" + "plane" "(-104 57 -68) (-104 60 -79) (-120 60 -79)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -32282,9 +32334,9 @@ entity side { "id" "5948" - "plane" "(-112 64 -71) (-112 60 -71) (-96 60 -71)" + "plane" "(-120 64 -79) (-120 60 -79) (-104 60 -79)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -32293,9 +32345,9 @@ entity side { "id" "5947" - "plane" "(-112 57 -60) (-112 64 -60) (-96 64 -60)" + "plane" "(-120 57 -68) (-120 64 -68) (-104 64 -68)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -32314,10 +32366,10 @@ entity side { "id" "5946" - "plane" "(-112 60 -71) (-112 61 -83) (-112 64 -83)" + "plane" "(-120 60 -79) (-120 61 -91) (-120 64 -91)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -32325,7 +32377,7 @@ entity side { "id" "5945" - "plane" "(-96 64 -71) (-96 64 -83) (-96 61 -83)" + "plane" "(-104 64 -79) (-104 64 -91) (-104 61 -91)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01" "uaxis" "[0 1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -32336,10 +32388,10 @@ entity side { "id" "5944" - "plane" "(-112 64 -71) (-112 64 -83) (-96 64 -83)" + "plane" "(-120 64 -79) (-120 64 -91) (-104 64 -91)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -32347,9 +32399,9 @@ entity side { "id" "5943" - "plane" "(-112 64 -83) (-112 61 -83) (-96 61 -83)" + "plane" "(-120 64 -91) (-120 61 -91) (-104 61 -91)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -32358,10 +32410,10 @@ entity side { "id" "5942" - "plane" "(-96 60 -71) (-96 61 -83) (-112 61 -83)" + "plane" "(-104 60 -79) (-104 61 -91) (-120 61 -91)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -32369,9 +32421,9 @@ entity side { "id" "5941" - "plane" "(-112 60 -71) (-112 64 -71) (-96 64 -71)" + "plane" "(-120 60 -79) (-120 64 -79) (-104 64 -79)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -32390,10 +32442,10 @@ entity side { "id" "5940" - "plane" "(-112 24 0) (-112 12 0) (-112 12 -23)" + "plane" "(-120 24 -8) (-120 12 -8) (-120 12 -31)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -32401,7 +32453,7 @@ entity side { "id" "5939" - "plane" "(-96 24 -27) (-96 12 -23) (-96 12 0)" + "plane" "(-104 24 -35) (-104 12 -31) (-104 12 -8)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01" "uaxis" "[0 1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -32412,9 +32464,9 @@ entity side { "id" "5938" - "plane" "(-112 12 0) (-112 24 0) (-96 24 0)" + "plane" "(-120 12 -8) (-120 24 -8) (-104 24 -8)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -32423,9 +32475,9 @@ entity side { "id" "5937" - "plane" "(-112 24 -27) (-112 12 -23) (-96 12 -23)" + "plane" "(-120 24 -35) (-120 12 -31) (-104 12 -31)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -32434,10 +32486,10 @@ entity side { "id" "5936" - "plane" "(-96 12 0) (-96 12 -23) (-112 12 -23)" + "plane" "(-104 12 -8) (-104 12 -31) (-120 12 -31)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -32445,10 +32497,10 @@ entity side { "id" "5935" - "plane" "(-112 24 0) (-112 24 -27) (-96 24 -27)" + "plane" "(-120 24 -8) (-120 24 -35) (-104 24 -35)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -32466,10 +32518,10 @@ entity side { "id" "5934" - "plane" "(-112 12 0) (-112 0 0) (-112 0 -22)" + "plane" "(-120 12 -8) (-120 0 -8) (-120 0 -30)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -32477,7 +32529,7 @@ entity side { "id" "5933" - "plane" "(-96 12 -23) (-96 0 -22) (-96 0 0)" + "plane" "(-104 12 -31) (-104 0 -30) (-104 0 -8)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01" "uaxis" "[0 1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -32488,9 +32540,9 @@ entity side { "id" "5932" - "plane" "(-112 0 0) (-112 12 0) (-96 12 0)" + "plane" "(-120 0 -8) (-120 12 -8) (-104 12 -8)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -32499,9 +32551,9 @@ entity side { "id" "5931" - "plane" "(-112 12 -23) (-112 0 -22) (-96 0 -22)" + "plane" "(-120 12 -31) (-120 0 -30) (-104 0 -30)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -32510,10 +32562,10 @@ entity side { "id" "5930" - "plane" "(-96 0 0) (-96 0 -22) (-112 0 -22)" + "plane" "(-104 0 -8) (-104 0 -30) (-120 0 -30)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -32521,10 +32573,10 @@ entity side { "id" "5929" - "plane" "(-112 12 0) (-112 12 -23) (-96 12 -23)" + "plane" "(-120 12 -8) (-120 12 -31) (-104 12 -31)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -32542,7 +32594,7 @@ entity side { "id" "5928" - "plane" "(-96 -60 -71) (-96 -61 -83) (-96 -64 -83)" + "plane" "(-104 -60 -79) (-104 -61 -91) (-104 -64 -91)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01" "uaxis" "[0 1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -32553,10 +32605,10 @@ entity side { "id" "5927" - "plane" "(-112 -64 -71) (-112 -64 -83) (-112 -61 -83)" + "plane" "(-120 -64 -79) (-120 -64 -91) (-120 -61 -91)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -32564,10 +32616,10 @@ entity side { "id" "5926" - "plane" "(-96 -64 -71) (-96 -64 -83) (-112 -64 -83)" + "plane" "(-104 -64 -79) (-104 -64 -91) (-120 -64 -91)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -32575,9 +32627,9 @@ entity side { "id" "5925" - "plane" "(-112 -61 -83) (-112 -64 -83) (-96 -64 -83)" + "plane" "(-120 -61 -91) (-120 -64 -91) (-104 -64 -91)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -32586,10 +32638,10 @@ entity side { "id" "5924" - "plane" "(-112 -60 -71) (-112 -61 -83) (-96 -61 -83)" + "plane" "(-120 -60 -79) (-120 -61 -91) (-104 -61 -91)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -32597,9 +32649,9 @@ entity side { "id" "5923" - "plane" "(-112 -64 -71) (-112 -60 -71) (-96 -60 -71)" + "plane" "(-120 -64 -79) (-120 -60 -79) (-104 -60 -79)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -32618,7 +32670,7 @@ entity side { "id" "5922" - "plane" "(-96 -57 -60) (-96 -60 -71) (-96 -64 -71)" + "plane" "(-104 -57 -68) (-104 -60 -79) (-104 -64 -79)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01" "uaxis" "[0 1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -32629,10 +32681,10 @@ entity side { "id" "5921" - "plane" "(-112 -64 -60) (-112 -64 -71) (-112 -60 -71)" + "plane" "(-120 -64 -68) (-120 -64 -79) (-120 -60 -79)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -32640,10 +32692,10 @@ entity side { "id" "5920" - "plane" "(-96 -64 -60) (-96 -64 -71) (-112 -64 -71)" + "plane" "(-104 -64 -68) (-104 -64 -79) (-120 -64 -79)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -32651,10 +32703,10 @@ entity side { "id" "5919" - "plane" "(-112 -57 -60) (-112 -60 -71) (-96 -60 -71)" + "plane" "(-120 -57 -68) (-120 -60 -79) (-104 -60 -79)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -32662,9 +32714,9 @@ entity side { "id" "5918" - "plane" "(-112 -60 -71) (-112 -64 -71) (-96 -64 -71)" + "plane" "(-120 -60 -79) (-120 -64 -79) (-104 -64 -79)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -32673,9 +32725,9 @@ entity side { "id" "5917" - "plane" "(-112 -64 -60) (-112 -57 -60) (-96 -57 -60)" + "plane" "(-120 -64 -68) (-120 -57 -68) (-104 -57 -68)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -32694,10 +32746,10 @@ entity side { "id" "5916" - "plane" "(-112 64 0) (-112 34 0) (-112 34 -32)" + "plane" "(-120 64 -8) (-120 34 -8) (-120 34 -40)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -32705,7 +32757,7 @@ entity side { "id" "5915" - "plane" "(-96 41 -38) (-96 34 -32) (-96 34 0)" + "plane" "(-104 41 -46) (-104 34 -40) (-104 34 -8)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01" "uaxis" "[0 1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -32716,9 +32768,9 @@ entity side { "id" "5914" - "plane" "(-112 34 0) (-112 64 0) (-96 64 0)" + "plane" "(-120 34 -8) (-120 64 -8) (-104 64 -8)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -32727,10 +32779,10 @@ entity side { "id" "5913" - "plane" "(-96 34 0) (-96 34 -32) (-112 34 -32)" + "plane" "(-104 34 -8) (-104 34 -40) (-120 34 -40)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -32738,9 +32790,9 @@ entity side { "id" "5912" - "plane" "(-112 41 -38) (-112 34 -32) (-96 34 -32)" + "plane" "(-120 41 -46) (-120 34 -40) (-104 34 -40)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" + "uaxis" "[1 0 0 24] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -32749,10 +32801,10 @@ entity side { "id" "5911" - "plane" "(-112 64 0) (-112 41 -38) (-96 41 -38)" + "plane" "(-120 64 -8) (-120 41 -46) (-104 41 -46)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -32770,10 +32822,10 @@ entity side { "id" "5910" - "plane" "(-112 -96 0) (-112 -96 -128) (-112 -64 -128)" + "plane" "(-120 -96 -8) (-120 -96 -136) (-120 -64 -136)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -32781,9 +32833,9 @@ entity side { "id" "5909" - "plane" "(-112 -64 -128) (-112 -96 -128) (-96 -96 -128)" + "plane" "(-120 -64 -136) (-120 -96 -136) (-104 -96 -136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -56] 0.25" + "uaxis" "[-1 0 0 -24] 0.25" "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -32792,7 +32844,7 @@ entity side { "id" "5908" - "plane" "(-96 -64 0) (-96 -64 -128) (-96 -96 -128)" + "plane" "(-104 -64 -8) (-104 -64 -136) (-104 -96 -136)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01" "uaxis" "[0 1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -32803,10 +32855,10 @@ entity side { "id" "5907" - "plane" "(-112 -64 0) (-112 -64 -128) (-96 -64 -128)" + "plane" "(-120 -64 -8) (-120 -64 -136) (-104 -64 -136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -32814,10 +32866,10 @@ entity side { "id" "5906" - "plane" "(-96 -96 0) (-96 -96 -128) (-112 -96 -128)" + "plane" "(-104 -96 -8) (-104 -96 -136) (-120 -96 -136)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -56] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -32825,9 +32877,9 @@ entity side { "id" "5905" - "plane" "(-112 -96 0) (-112 -64 0) (-96 -64 0)" + "plane" "(-120 -96 -8) (-120 -64 -8) (-104 -64 -8)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -56] 0.25" + "uaxis" "[-1 0 0 -24] 0.25" "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -32854,8 +32906,8 @@ cameras "activecamera" "0" camera { - "position" "[273.124 -1.76551 -37.5637]" - "look" "[287.512 -1.2621 -39.2802]" + "position" "[27.7619 13.5737 -32.2744]" + "look" "[14.5584 13.6658 -38.2639]" } camera { diff --git a/packages/valve/clean_style/resources/instances/clean/elevator_coop/exit_door.vmf b/packages/valve/clean_style/resources/instances/clean/elevator_coop/exit_door.vmf index 45a38448d8..8a1120acc9 100644 --- a/packages/valve/clean_style/resources/instances/clean/elevator_coop/exit_door.vmf +++ b/packages/valve/clean_style/resources/instances/clean/elevator_coop/exit_door.vmf @@ -952,7 +952,6 @@ entity "OnUser1" "@exit_doorClose0-1" "OnUser2" "@exit_doorOpen0-1" "OnUser3" "@voice_allexitTrigger0-1" - "OnUser3" "@map_finishedTrigger0.5-1" "OnUser3" "@exit_airlock_doorOpen0.5-1" } "origin" "-48 -4.19629e-006 -32" diff --git a/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_1.vmf b/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_1.vmf index 95527ae030..5cef3e09ea 100644 --- a/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_1.vmf +++ b/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_1.vmf @@ -2,7 +2,7 @@ versioninfo { "editorversion" "400" "editorbuild" "9672" - "mapversion" "202" + "mapversion" "206" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "202" + "mapversion" "206" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -3318,7 +3318,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-240 128 -1.99999" editor @@ -3341,7 +3341,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-272 128 -1.99999" editor @@ -3364,7 +3364,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-272 128 126" editor @@ -3387,7 +3387,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-240 128 126" editor @@ -3410,7 +3410,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-288 48 180" editor @@ -3422,94 +3422,6 @@ entity } } entity -{ - "id" "11063" - "classname" "func_detail" - solid - { - "id" "11064" - side - { - "id" "3271" - "plane" "(-232 57 182) (-344 57 182) (-344 57 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3270" - "plane" "(-232 39 181) (-344 39 181) (-344 39 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3269" - "plane" "(-232 39 182) (-344 39 182) (-344 57 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3268" - "plane" "(-232 57 181) (-344 57 181) (-344 39 181)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[-1 0 0 -32] 2" - "vaxis" "[0 -1 0 32] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3267" - "plane" "(-344 39 182) (-344 39 181) (-344 57 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3266" - "plane" "(-232 57 182) (-232 57 181) (-232 39 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity { "id" "11080" "classname" "prop_static" @@ -3521,7 +3433,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-288 80 180" editor @@ -3533,94 +3445,6 @@ entity } } entity -{ - "id" "11090" - "classname" "func_detail" - solid - { - "id" "11091" - side - { - "id" "3343" - "plane" "(-232 89 182) (-344 89 182) (-344 89 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3342" - "plane" "(-232 71 181) (-344 71 181) (-344 71 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3341" - "plane" "(-232 71 182) (-344 71 182) (-344 89 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3340" - "plane" "(-232 89 181) (-344 89 181) (-344 71 181)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[-1 0 0 -32] 2" - "vaxis" "[0 -1 0 32] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3339" - "plane" "(-344 71 182) (-344 71 181) (-344 89 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3338" - "plane" "(-232 89 182) (-232 89 181) (-232 71 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity { "id" "11107" "classname" "prop_static" @@ -3632,7 +3456,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-288 112 180" editor @@ -3644,94 +3468,6 @@ entity } } entity -{ - "id" "11117" - "classname" "func_detail" - solid - { - "id" "11118" - side - { - "id" "3415" - "plane" "(-232 121 182) (-344 121 182) (-344 121 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3414" - "plane" "(-232 103 181) (-344 103 181) (-344 103 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3413" - "plane" "(-232 103 182) (-344 103 182) (-344 121 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3412" - "plane" "(-232 121 181) (-344 121 181) (-344 103 181)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[-1 0 0 -32] 2" - "vaxis" "[0 -1 0 32] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3411" - "plane" "(-344 103 182) (-344 103 181) (-344 121 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3410" - "plane" "(-232 121 182) (-232 121 181) (-232 103 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity { "id" "11134" "classname" "prop_static" @@ -3743,7 +3479,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-368 64 180" editor @@ -3766,7 +3502,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-400 64 180" editor @@ -3779,184 +3515,20 @@ entity } entity { - "id" "11171" - "classname" "func_detail" - solid - { - "id" "11172" - side - { - "id" "3559" - "plane" "(-391 120 181) (-391 8.00003 181) (-391 8.00003 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3558" - "plane" "(-409 8.00004 181) (-409 120 181) (-409 120 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3557" - "plane" "(-409 8.00004 182) (-409 120 182) (-391 120 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3556" - "plane" "(-409 120 181) (-409 8.00004 181) (-391 8.00003 181)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 1 0 -32] 2" - "vaxis" "[-1 0 0 -32] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3555" - "plane" "(-409 120 182) (-409 120 181) (-391 120 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3554" - "plane" "(-409 8.00004 181) (-409 8.00004 182) (-391 8.00003 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "11145" - side - { - "id" "3487" - "plane" "(-359 120 181) (-359 8.00003 181) (-359 8.00003 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3486" - "plane" "(-377 8.00003 181) (-377 120 181) (-377 120 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3485" - "plane" "(-377 8.00003 182) (-377 120 182) (-359 120 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3484" - "plane" "(-377 120 181) (-377 8.00003 181) (-359 8.00003 181)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 1 0 -32] 2" - "vaxis" "[-1 0 0 -32] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3483" - "plane" "(-377 120 182) (-377 120 181) (-359 120 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3482" - "plane" "(-377 8.00003 181) (-377 8.00003 182) (-359 8.00003 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "11188" - "classname" "prop_static" - "angles" "90 270 0" - "disableshadows" "1" - "drawinfastreflection" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_lab/glass_lightcover.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "origin" "-432 64 180" - editor + "id" "11188" + "classname" "prop_static" + "angles" "90 270 0" + "disableshadows" "1" + "drawinfastreflection" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_lab/glass_lightcover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "$strip_skin" + "solid" "6" + "origin" "-432 64 180" + editor { "color" "255 255 0" "visgroupshown" "1" @@ -3965,422 +3537,6 @@ entity } } entity -{ - "id" "11198" - "classname" "func_detail" - solid - { - "id" "11199" - side - { - "id" "3631" - "plane" "(-423 120 181) (-423 8.00004 181) (-423 8.00004 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3630" - "plane" "(-441 8.00004 181) (-441 120 181) (-441 120 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3629" - "plane" "(-441 8.00004 182) (-441 120 182) (-423 120 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3628" - "plane" "(-441 120 181) (-441 8.00004 181) (-423 8.00004 181)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 1 0 -32] 2" - "vaxis" "[-1 0 0 -32] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3627" - "plane" "(-441 120 182) (-441 120 181) (-423 120 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3626" - "plane" "(-441 8.00004 181) (-441 8.00004 182) (-423 8.00004 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "11401" - "classname" "func_detail" - solid - { - "id" "11402" - side - { - "id" "3661" - "plane" "(-231 130 182) (-231 130 70) (-231 129 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3660" - "plane" "(-249 129 182) (-249 129 70) (-249 130 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3659" - "plane" "(-249 130 182) (-249 130 70) (-231 130 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -8] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3658" - "plane" "(-249 129 70) (-249 129 182) (-231 129 182)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 0 -1 24] 2" - "vaxis" "[-1 0 0 -32] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3657" - "plane" "(-249 130 70) (-249 129 70) (-231 129 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3656" - "plane" "(-249 129 182) (-249 130 182) (-231 130 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "11400" - side - { - "id" "3655" - "plane" "(-263 130 182) (-263 130 70) (-263 129 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3654" - "plane" "(-281 129 182) (-281 129 70) (-281 130 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3653" - "plane" "(-281 130 182) (-281 130 70) (-263 130 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -8] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3652" - "plane" "(-281 129 70) (-281 129 182) (-263 129 182)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 0 -1 24] 2" - "vaxis" "[-1 0 0 -32] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3651" - "plane" "(-281 130 70) (-281 129 70) (-263 129 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3650" - "plane" "(-281 129 182) (-281 130 182) (-263 130 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "11502" - "classname" "func_detail" - solid - { - "id" "11503" - side - { - "id" "3685" - "plane" "(-231 130 54) (-231 130 -58) (-231 129 -58)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3684" - "plane" "(-249 129 54) (-249 129 -58) (-249 130 -58)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3683" - "plane" "(-249 130 54) (-249 130 -58) (-231 130 -58)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -8] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3682" - "plane" "(-249 129 -58) (-249 129 54) (-231 129 54)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 0 -1 24] 2" - "vaxis" "[-1 0 0 -32] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3681" - "plane" "(-249 130 -58) (-249 129 -58) (-231 129 -58)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3680" - "plane" "(-249 129 54) (-249 130 54) (-231 130 54)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "11504" - side - { - "id" "3691" - "plane" "(-263 130 54) (-263 130 -58) (-263 129 -58)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3690" - "plane" "(-281 129 54) (-281 129 -58) (-281 130 -58)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3689" - "plane" "(-281 130 54) (-281 130 -58) (-263 130 -58)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -8] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3688" - "plane" "(-281 129 -58) (-281 129 54) (-263 129 54)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 0 -1 24] 2" - "vaxis" "[-1 0 0 -32] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3687" - "plane" "(-281 130 -58) (-281 129 -58) (-263 129 -58)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3686" - "plane" "(-281 129 54) (-281 130 54) (-263 130 54)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity { "id" "8074" "classname" "func_instance" diff --git a/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_3.vmf b/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_3.vmf index 8173baff1c..60d0498571 100644 --- a/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_3.vmf +++ b/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_3.vmf @@ -2,7 +2,7 @@ versioninfo { "editorversion" "400" "editorbuild" "9672" - "mapversion" "252" + "mapversion" "254" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "252" + "mapversion" "254" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -4815,96 +4815,31 @@ entity } entity { - "id" "14640" - "classname" "func_detail" - solid - { - "id" "14641" - side - { - "id" "3811" - "plane" "(-217 187 182) (-217 187 70) (-217 188 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3810" - "plane" "(-199 188 182) (-199 188 70) (-199 187 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3809" - "plane" "(-217 188 182) (-217 188 70) (-199 188 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3808" - "plane" "(-217 187 70) (-217 187 182) (-199 187 182)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 0 1 0.5] 2" - "vaxis" "[1 0 0 20] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3807" - "plane" "(-217 187 182) (-217 188 182) (-199 188 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3806" - "plane" "(-217 188 70) (-217 187 70) (-199 187 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "133 110 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } + "id" "14647" + "classname" "prop_static" + "angles" "0 270 180" + "disableshadows" "1" + "drawinfastreflection" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_lab/glass_lightcover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "$strip_skin" + "solid" "6" + "origin" "-208 184 126" editor { "color" "133 110 0" "groupid" "14867" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "logicalpos" "[2500 -12768]" } } entity { - "id" "14647" + "id" "14670" "classname" "prop_static" "angles" "0 270 180" "disableshadows" "1" @@ -4914,9 +4849,9 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" - "origin" "-208 184 126" + "origin" "-240 184 126" editor { "color" "133 110 0" @@ -4928,98 +4863,33 @@ entity } entity { - "id" "14663" - "classname" "func_detail" - solid - { - "id" "14664" - side - { - "id" "3871" - "plane" "(-249 187 182) (-249 187 70) (-249 188 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3870" - "plane" "(-231 188 182) (-231 188 70) (-231 187 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3869" - "plane" "(-249 188 182) (-249 188 70) (-231 188 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3868" - "plane" "(-249 187 70) (-249 187 182) (-231 187 182)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 0 1 0.5] 2" - "vaxis" "[1 0 0 28] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3867" - "plane" "(-249 187 182) (-249 188 182) (-231 188 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3866" - "plane" "(-249 188 70) (-249 187 70) (-231 187 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "133 110 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } + "id" "14693" + "classname" "prop_static" + "angles" "90 270 0" + "disableshadows" "1" + "drawinfastreflection" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_lab/glass_lightcover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "$strip_skin" + "solid" "6" + "origin" "-240 128 180" editor { "color" "133 110 0" "groupid" "14867" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "logicalpos" "[2500 -12768]" } } entity { - "id" "14670" + "id" "14716" "classname" "prop_static" - "angles" "0 270 180" + "angles" "90 270 0" "disableshadows" "1" "drawinfastreflection" "1" "fademindist" "-1" @@ -5027,9 +4897,9 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" - "origin" "-240 184 126" + "origin" "-208 128 180" editor { "color" "133 110 0" @@ -5041,98 +4911,33 @@ entity } entity { - "id" "14686" - "classname" "func_detail" - solid - { - "id" "14687" - side - { - "id" "3931" - "plane" "(-231 182 183) (-231 70 183) (-231 70 184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3930" - "plane" "(-249 70 183) (-249 182 183) (-249 182 184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3929" - "plane" "(-249 70 184) (-249 182 184) (-231 182 184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3928" - "plane" "(-249 182 183) (-249 70 183) (-231 70 183)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 1 0 0.499992] 2" - "vaxis" "[-1 0 0 -28] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3927" - "plane" "(-249 182 184) (-249 182 183) (-231 182 183)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3926" - "plane" "(-249 70 183) (-249 70 184) (-231 70 184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "133 110 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } + "id" "14739" + "classname" "prop_static" + "angles" "90 270 0" + "disableshadows" "1" + "drawinfastreflection" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_lab/glass_lightcover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "$strip_skin" + "solid" "6" + "origin" "-240 2.09815e-005 180" editor { "color" "133 110 0" "groupid" "14867" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "logicalpos" "[2500 -12768]" } } entity { - "id" "14693" + "id" "14762" "classname" "prop_static" - "angles" "90 270 0" + "angles" "0 270 180" "disableshadows" "1" "drawinfastreflection" "1" "fademindist" "-1" @@ -5140,9 +4945,9 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" - "origin" "-240 128 180" + "origin" "-208 184 -2.00005" editor { "color" "133 110 0" @@ -5154,448 +4959,20 @@ entity } entity { - "id" "14709" - "classname" "func_detail" - solid - { - "id" "14710" - side - { - "id" "3991" - "plane" "(-199 182 183) (-199 70 183) (-199 70 184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3990" - "plane" "(-217 70 183) (-217 182 183) (-217 182 184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3989" - "plane" "(-217 70 184) (-217 182 184) (-199 182 184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3988" - "plane" "(-217 182 183) (-217 70 183) (-199 70 183)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 1 0 0.499992] 2" - "vaxis" "[-1 0 0 -20] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3987" - "plane" "(-217 182 184) (-217 182 183) (-199 182 183)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3986" - "plane" "(-217 70 183) (-217 70 184) (-199 70 184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "133 110 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "133 110 0" - "groupid" "14867" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "14716" - "classname" "prop_static" - "angles" "90 270 0" - "disableshadows" "1" - "drawinfastreflection" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_lab/glass_lightcover.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "origin" "-208 128 180" - editor - { - "color" "133 110 0" - "groupid" "14867" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[2500 -12768]" - } -} -entity -{ - "id" "14732" - "classname" "func_detail" - solid - { - "id" "14733" - side - { - "id" "4051" - "plane" "(-231 54 183) (-231 -58 183) (-231 -58 184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4050" - "plane" "(-249 -58 183) (-249 54 183) (-249 54 184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4049" - "plane" "(-249 -58 184) (-249 54 184) (-231 54 184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4048" - "plane" "(-249 54 183) (-249 -58 183) (-231 -58 183)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 1 0 32.5] 2" - "vaxis" "[-1 0 0 -28] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "4047" - "plane" "(-249 54 184) (-249 54 183) (-231 54 183)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4046" - "plane" "(-249 -58 183) (-249 -58 184) (-231 -58 184)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "133 110 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "133 110 0" - "groupid" "14867" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "14739" - "classname" "prop_static" - "angles" "90 270 0" - "disableshadows" "1" - "drawinfastreflection" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_lab/glass_lightcover.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "origin" "-240 2.09815e-005 180" - editor - { - "color" "133 110 0" - "groupid" "14867" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[2500 -12768]" - } -} -entity -{ - "id" "14755" - "classname" "func_detail" - solid - { - "id" "14756" - side - { - "id" "4111" - "plane" "(-217 187 53.9999) (-217 187 -58.0001) (-217 188 -58.0001)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4110" - "plane" "(-199 188 53.9999) (-199 188 -58.0001) (-199 187 -58.0001)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4109" - "plane" "(-217 188 53.9999) (-217 188 -58.0001) (-199 188 -58.0001)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4108" - "plane" "(-217 187 -58.0001) (-217 187 53.9999) (-199 187 53.9999)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 0 1 32.5] 2" - "vaxis" "[1 0 0 20] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "4107" - "plane" "(-217 187 53.9999) (-217 188 53.9999) (-199 188 53.9999)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4106" - "plane" "(-217 188 -58.0001) (-217 187 -58.0001) (-199 187 -58.0001)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "133 110 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "133 110 0" - "groupid" "14867" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "14762" - "classname" "prop_static" - "angles" "0 270 180" - "disableshadows" "1" - "drawinfastreflection" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_lab/glass_lightcover.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "origin" "-208 184 -2.00005" - editor - { - "color" "133 110 0" - "groupid" "14867" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[2500 -12768]" - } -} -entity -{ - "id" "14778" - "classname" "func_detail" - solid - { - "id" "14779" - side - { - "id" "4171" - "plane" "(-249 187 53.9999) (-249 187 -58) (-249 188 -58)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4170" - "plane" "(-231 188 53.9999) (-231 188 -58) (-231 187 -58)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4169" - "plane" "(-249 188 53.9999) (-249 188 -58) (-231 188 -58)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4168" - "plane" "(-249 187 -58) (-249 187 53.9999) (-231 187 53.9999)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 0 1 32.5] 2" - "vaxis" "[1 0 0 28] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "4167" - "plane" "(-249 187 53.9999) (-249 188 53.9999) (-231 188 53.9999)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4166" - "plane" "(-249 188 -58) (-249 187 -58) (-231 187 -58)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "133 110 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "133 110 0" - "groupid" "14867" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "14785" - "classname" "prop_static" - "angles" "0 270 180" - "disableshadows" "1" - "drawinfastreflection" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_lab/glass_lightcover.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "origin" "-240 184 -2.00005" - editor + "id" "14785" + "classname" "prop_static" + "angles" "0 270 180" + "disableshadows" "1" + "drawinfastreflection" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_lab/glass_lightcover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "$strip_skin" + "solid" "6" + "origin" "-240 184 -2.00005" + editor { "color" "133 110 0" "groupid" "14867" @@ -5616,7 +4993,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-384 48 64" editor @@ -5628,246 +5005,6 @@ entity } } entity -{ - "id" "15207" - "classname" "func_detail" - solid - { - "id" "15208" - side - { - "id" "4435" - "plane" "(-328 57 70) (-440 57 70) (-440 57 69)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4434" - "plane" "(-328 39 69) (-440 39 69) (-440 39 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4433" - "plane" "(-328 39 70) (-440 39 70) (-440 57 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4432" - "plane" "(-328 57 69) (-440 57 69) (-440 39 69)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[-1 0 0 0] 2" - "vaxis" "[0 -1 0 44] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "4431" - "plane" "(-440 39 70) (-440 39 69) (-440 57 69)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4430" - "plane" "(-328 57 70) (-328 57 69) (-328 39 69)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "15233" - side - { - "id" "4507" - "plane" "(-328 25 70) (-440 25 70) (-440 25 69)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4506" - "plane" "(-328 7.00003 69) (-440 7.00004 69) (-440 7.00004 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4505" - "plane" "(-328 7.00003 70) (-440 7.00004 70) (-440 25 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4504" - "plane" "(-328 25 69) (-440 25 69) (-440 7.00004 69)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[-1 0 0 0] 2" - "vaxis" "[0 -1 0 36] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "4503" - "plane" "(-440 7.00004 70) (-440 7.00004 69) (-440 25 69)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4502" - "plane" "(-328 25 70) (-328 25 69) (-328 7.00003 69)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "15258" - side - { - "id" "4579" - "plane" "(-328 177 70) (-440 177 70) (-440 177 69)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4578" - "plane" "(-328 159 69) (-440 159 69) (-440 159 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4577" - "plane" "(-328 159 70) (-440 159 70) (-440 177 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4576" - "plane" "(-328 177 69) (-440 177 69) (-440 159 69)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[-1 0 0 0] 2" - "vaxis" "[0 -1 0 10] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "4575" - "plane" "(-440 159 70) (-440 159 69) (-440 177 69)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4574" - "plane" "(-328 177 70) (-328 177 69) (-328 159 69)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity { "id" "15223" "classname" "prop_static" @@ -5879,7 +5016,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-384 16 64" editor @@ -5902,7 +5039,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-384 168 64" editor diff --git a/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_4.vmf b/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_4.vmf index 484bc0f37d..d4c63120b0 100644 --- a/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_4.vmf +++ b/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_4.vmf @@ -2,7 +2,7 @@ versioninfo { "editorversion" "400" "editorbuild" "9672" - "mapversion" "227" + "mapversion" "230" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "227" + "mapversion" "230" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -5258,7 +5258,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-272 64.0001 180" editor @@ -5282,7 +5282,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-240 64.0001 180" editor @@ -5306,7 +5306,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-240 -63.9999 180" editor @@ -5330,7 +5330,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-240 128 -1.99998" editor @@ -5354,7 +5354,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-272 128 -1.99998" editor @@ -5378,7 +5378,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-272 128 126" editor @@ -5402,7 +5402,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-240 128 126" editor @@ -5415,570 +5415,6 @@ entity } } entity -{ - "id" "12744" - "classname" "func_detail" - solid - { - "id" "12514" - side - { - "id" "3740" - "plane" "(-281 8.00006 181) (-281 120 181) (-281 120 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 16] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3739" - "plane" "(-263 120 181) (-263 8.00005 181) (-263 8.00005 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 16] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3738" - "plane" "(-281 8.00006 182) (-281 120 182) (-263 120 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3737" - "plane" "(-281 120 181) (-281 8.00006 181) (-263 8.00005 181)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 -1 0 48] 4" - "vaxis" "[1 0 0 36] 4" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3736" - "plane" "(-281 8.00006 181) (-281 8.00006 182) (-263 8.00005 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 16] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3735" - "plane" "(-281 120 182) (-281 120 181) (-263 120 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 16] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "12539" - side - { - "id" "3746" - "plane" "(-249 8.00005 181) (-249 120 181) (-249 120 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 16] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3745" - "plane" "(-231 120 181) (-231 8.00005 181) (-231 8.00005 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 16] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3744" - "plane" "(-249 8.00005 182) (-249 120 182) (-231 120 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3743" - "plane" "(-249 120 181) (-249 8.00005 181) (-231 8.00005 181)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 -1 0 0] 2" - "vaxis" "[1 0 0 24] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3742" - "plane" "(-249 8.00005 181) (-249 8.00005 182) (-231 8.00005 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 16] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3741" - "plane" "(-249 120 182) (-249 120 181) (-231 120 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 16] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "12726" - side - { - "id" "3752" - "plane" "(-281 130 70) (-281 129 70) (-263 129 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3751" - "plane" "(-281 129 182) (-281 130 182) (-263 130 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -56] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3750" - "plane" "(-281 129 70) (-281 130 70) (-281 130 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 1 -56] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3749" - "plane" "(-263 130 70) (-263 129 70) (-263 129 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 -56] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3748" - "plane" "(-263 129 70) (-281 129 70) (-281 129 182)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 0 1 16] 4" - "vaxis" "[1 0 0 0] 4" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3747" - "plane" "(-263 130 182) (-281 130 182) (-281 130 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 1 -56] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "12732" - side - { - "id" "3758" - "plane" "(-249 130 70) (-249 129 70) (-231 129 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -8] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3757" - "plane" "(-249 129 182) (-249 130 182) (-231 130 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 8] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3756" - "plane" "(-249 129 70) (-249 130 70) (-249 130 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 1 -56] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3755" - "plane" "(-231 130 70) (-231 129 70) (-231 129 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 -56] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3754" - "plane" "(-231 129 70) (-249 129 70) (-249 129 182)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 0 1 16] 4" - "vaxis" "[1 0 0 -8] 4" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3753" - "plane" "(-231 130 182) (-249 130 182) (-249 130 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -8] 0.25" - "vaxis" "[0 0 1 -56] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "12733" - side - { - "id" "3764" - "plane" "(-249 130 -58) (-249 129 -58) (-231 129 -58)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -8] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3763" - "plane" "(-249 129 54) (-249 130 54) (-231 130 54)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 8] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3762" - "plane" "(-249 129 -58) (-249 130 -58) (-249 130 54)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 1 -56] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3761" - "plane" "(-231 130 -58) (-231 129 -58) (-231 129 54)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 -56] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3760" - "plane" "(-231 129 -58) (-249 129 -58) (-249 129 54)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 0 1 -16] 4" - "vaxis" "[1 0 0 -8] 4" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3759" - "plane" "(-231 130 54) (-249 130 54) (-249 130 -58)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -8] 0.25" - "vaxis" "[0 0 1 -56] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "12737" - side - { - "id" "3770" - "plane" "(-281 130 -58) (-281 129 -58) (-263 129 -58)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3769" - "plane" "(-281 129 54) (-281 130 54) (-263 130 54)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -56] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3768" - "plane" "(-281 129 -58) (-281 130 -58) (-281 130 54)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 1 -56] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3767" - "plane" "(-263 130 -58) (-263 129 -58) (-263 129 54)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 -56] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3766" - "plane" "(-263 129 -58) (-281 129 -58) (-281 129 54)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 0 1 -16] 4" - "vaxis" "[1 0 0 0] 4" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3765" - "plane" "(-263 130 54) (-281 130 54) (-281 130 -58)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 56] 0.25" - "vaxis" "[0 0 1 -56] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "12564" - side - { - "id" "3392" - "plane" "(-249 -120 181) (-249 -7.99995 181) (-249 -7.99995 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 16] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3391" - "plane" "(-231 -7.99995 181) (-231 -120 181) (-231 -120 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 16] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3390" - "plane" "(-249 -120 182) (-249 -7.99995 182) (-231 -7.99995 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3389" - "plane" "(-249 -7.99995 181) (-249 -120 181) (-231 -120 181)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 -1 0 16] 4" - "vaxis" "[1 0 0 28] 4" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3388" - "plane" "(-249 -120 181) (-249 -120 182) (-231 -120 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 16] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3387" - "plane" "(-249 -7.99995 182) (-249 -7.99995 181) (-231 -7.99995 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 16] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 7000]" - } -} -entity -{ - "id" "12061" - "classname" "light" - "_constant_attn" "10000" - "_light" "210 250 250 5" - "_lightHDR" "-1 -1 -1 1" - "_lightscaleHDR" "1" - "_quadratic_attn" "1" - "_shadoworiginoffset" "0 0 0" - "angles" "0 0 0" - "origin" "-256 64.0001 96" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity { "id" "11455" "classname" "prop_static" diff --git a/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_5.vmf b/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_5.vmf index 7a02ff92a7..8beadea255 100644 --- a/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_5.vmf +++ b/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_5.vmf @@ -2,7 +2,7 @@ versioninfo { "editorversion" "400" "editorbuild" "9672" - "mapversion" "227" + "mapversion" "229" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "2" - "mapversion" "227" + "mapversion" "229" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -6785,7 +6785,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-296 -64 180" editor @@ -6808,7 +6808,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-296 64 180" editor @@ -6820,246 +6820,6 @@ entity } } entity -{ - "id" "12511" - "classname" "func_detail" - solid - { - "id" "12512" - side - { - "id" "3482" - "plane" "(-305 8 181) (-305 120 181) (-305 120 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3481" - "plane" "(-287 120 181) (-287 8 181) (-287 8 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3480" - "plane" "(-305 8 182) (-305 120 182) (-287 120 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3479" - "plane" "(-305 120 181) (-305 8 181) (-287 8 181)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 -1 0 48] 2" - "vaxis" "[1 0 0 42] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3478" - "plane" "(-305 8 181) (-305 8 182) (-287 8 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3477" - "plane" "(-305 120 182) (-305 120 181) (-287 120 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "12537" - side - { - "id" "3554" - "plane" "(-320 -103 182) (-432 -103 182) (-432 -103 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3553" - "plane" "(-320 -121 181) (-432 -121 181) (-432 -121 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3552" - "plane" "(-320 -121 182) (-432 -121 182) (-432 -103 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3551" - "plane" "(-320 -103 181) (-432 -103 181) (-432 -121 181)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[-1 0 0 2] 4" - "vaxis" "[0 -1 0 4] 4" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3550" - "plane" "(-432 -121 182) (-432 -121 181) (-432 -103 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3549" - "plane" "(-320 -103 182) (-320 -103 181) (-320 -121 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "12487" - side - { - "id" "3410" - "plane" "(-305 -120 181) (-305 -8 181) (-305 -8 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3409" - "plane" "(-287 -8 181) (-287 -120 181) (-287 -120 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3408" - "plane" "(-305 -120 182) (-305 -8 182) (-287 -8 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3407" - "plane" "(-305 -8 181) (-305 -120 181) (-287 -120 181)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 -1 0 16] 4" - "vaxis" "[1 0 0 42] 4" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3406" - "plane" "(-305 -120 181) (-305 -120 182) (-287 -120 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3405" - "plane" "(-305 -8 182) (-305 -8 181) (-287 -8 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity { "id" "12527" "classname" "prop_static" @@ -7071,7 +6831,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-376 -112 180" editor @@ -7094,7 +6854,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-184 48 64" editor @@ -7106,94 +6866,6 @@ entity } } entity -{ - "id" "12589" - "classname" "func_detail" - solid - { - "id" "12590" - side - { - "id" "3662" - "plane" "(-128 57 66) (-240 57 66) (-240 57 65)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3661" - "plane" "(-128 39 65) (-240 39 65) (-240 39 66)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3660" - "plane" "(-128 39 66) (-240 39 66) (-240 57 66)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3659" - "plane" "(-128 57 65) (-240 57 65) (-240 39 65)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[-1 0 0 -14] 4" - "vaxis" "[0 -1 0 44] 4" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3658" - "plane" "(-240 39 66) (-240 39 65) (-240 57 65)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3657" - "plane" "(-128 57 66) (-128 57 65) (-128 39 65)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity { "id" "12605" "classname" "prop_static" @@ -7205,7 +6877,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-184 -48 64" editor @@ -7217,94 +6889,6 @@ entity } } entity -{ - "id" "12614" - "classname" "func_detail" - solid - { - "id" "12615" - side - { - "id" "3734" - "plane" "(-128 -39 66) (-240 -39 66) (-240 -39 65)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3733" - "plane" "(-128 -57 65) (-240 -57 65) (-240 -57 66)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3732" - "plane" "(-128 -57 66) (-240 -57 66) (-240 -39 66)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3731" - "plane" "(-128 -39 65) (-240 -39 65) (-240 -57 65)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[-1 0 0 -14] 4" - "vaxis" "[0 -1 0 20] 4" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3730" - "plane" "(-240 -57 66) (-240 -57 65) (-240 -39 65)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3729" - "plane" "(-128 -39 66) (-128 -39 65) (-128 -57 65)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity { "id" "11706" "classname" "light" diff --git a/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_6.vmf b/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_6.vmf index 47027304f3..b60954854a 100644 --- a/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_6.vmf +++ b/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_6.vmf @@ -2,7 +2,7 @@ versioninfo { "editorversion" "400" "editorbuild" "9672" - "mapversion" "311" + "mapversion" "316" "formatversion" "100" "prefab" "0" } @@ -14,13 +14,13 @@ viewsettings "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "1" + "nGridSpacing" "8" "bShow3DGrid" "0" } world { "id" "1" - "mapversion" "311" + "mapversion" "316" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -5012,6 +5012,28 @@ world } } entity +{ + "id" "21264" + "classname" "comp_relay" + "ctrl_type" "0" + "ctrl_value" "1" + "delay" "0.0" + "targetname" "entrance_door_close_rl" + connections + { + "OnTrigger" "panelsKill2-1" + "OnTrigger" "@entrance_airlock_doorKill2-1" + } + "origin" "-168 16 -56" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity { "id" "20819" "classname" "comp_relay" @@ -5389,11 +5411,12 @@ entity "angles" "0 180 0" "DefaultAnim" "rampa_stair01_down_idle" "DisableBoneFollowers" "0" + "disableflashlight" "1" "disablereceiveshadows" "0" + "disableshadowdepth" "1" + "disableshadows" "1" "ExplodeDamage" "0" "ExplodeRadius" "0" - "fademindist" "-1" - "fadescale" "1" "HoldAnimation" "0" "MaxAnimTime" "10" "MinAnimTime" "5" @@ -5407,10 +5430,11 @@ entity "renderfx" "0" "SetBodyGroup" "0" "skin" "0" - "solid" "6" + "solid" "0" "spawnflags" "0" "StartDisabled" "0" "SuppressAnimSounds" "0" + "targetname" "panels" "origin" "-280 128 -128" editor { @@ -5427,11 +5451,12 @@ entity "angles" "0 180 0" "DefaultAnim" "rampa_stair01_down_idle" "DisableBoneFollowers" "0" + "disableflashlight" "1" "disablereceiveshadows" "0" + "disableshadowdepth" "1" + "disableshadows" "1" "ExplodeDamage" "0" "ExplodeRadius" "0" - "fademindist" "-1" - "fadescale" "1" "HoldAnimation" "0" "MaxAnimTime" "10" "MinAnimTime" "5" @@ -5445,10 +5470,11 @@ entity "renderfx" "0" "SetBodyGroup" "0" "skin" "0" - "solid" "6" + "solid" "0" "spawnflags" "0" "StartDisabled" "0" "SuppressAnimSounds" "0" + "targetname" "panels" "origin" "-280 64 -128" editor { @@ -5465,11 +5491,12 @@ entity "angles" "0 180 0" "DefaultAnim" "rampa_stair02_down_idle" "DisableBoneFollowers" "0" + "disableflashlight" "1" "disablereceiveshadows" "0" + "disableshadowdepth" "1" + "disableshadows" "1" "ExplodeDamage" "0" "ExplodeRadius" "0" - "fademindist" "-1" - "fadescale" "1" "HoldAnimation" "0" "MaxAnimTime" "10" "MinAnimTime" "5" @@ -5483,10 +5510,11 @@ entity "renderfx" "0" "SetBodyGroup" "0" "skin" "0" - "solid" "6" + "solid" "0" "spawnflags" "0" "StartDisabled" "0" "SuppressAnimSounds" "0" + "targetname" "panels" "origin" "-216 128 -128" editor { @@ -5503,11 +5531,12 @@ entity "angles" "0 180 0" "DefaultAnim" "rampa_stair02_down_idle" "DisableBoneFollowers" "0" + "disableflashlight" "1" "disablereceiveshadows" "0" + "disableshadowdepth" "1" + "disableshadows" "1" "ExplodeDamage" "0" "ExplodeRadius" "0" - "fademindist" "-1" - "fadescale" "1" "HoldAnimation" "0" "MaxAnimTime" "10" "MinAnimTime" "5" @@ -5521,10 +5550,11 @@ entity "renderfx" "0" "SetBodyGroup" "0" "skin" "0" - "solid" "6" + "solid" "0" "spawnflags" "0" "StartDisabled" "0" "SuppressAnimSounds" "0" + "targetname" "panels" "origin" "-216 64 -128" editor { @@ -5541,11 +5571,12 @@ entity "angles" "0 180 0" "DefaultAnim" "64_idle" "DisableBoneFollowers" "0" + "disableflashlight" "1" "disablereceiveshadows" "0" + "disableshadowdepth" "1" + "disableshadows" "1" "ExplodeDamage" "0" "ExplodeRadius" "0" - "fademindist" "-1" - "fadescale" "1" "HoldAnimation" "0" "MaxAnimTime" "10" "MinAnimTime" "5" @@ -5559,10 +5590,11 @@ entity "renderfx" "0" "SetBodyGroup" "0" "skin" "0" - "solid" "6" + "solid" "0" "spawnflags" "0" "StartDisabled" "0" "SuppressAnimSounds" "0" + "targetname" "panels" "origin" "-152 64 -128" editor { @@ -5579,11 +5611,12 @@ entity "angles" "0 180 0" "DefaultAnim" "64_idle" "DisableBoneFollowers" "0" + "disableflashlight" "1" "disablereceiveshadows" "0" + "disableshadowdepth" "1" + "disableshadows" "1" "ExplodeDamage" "0" "ExplodeRadius" "0" - "fademindist" "-1" - "fadescale" "1" "HoldAnimation" "0" "MaxAnimTime" "10" "MinAnimTime" "5" @@ -5597,10 +5630,11 @@ entity "renderfx" "0" "SetBodyGroup" "0" "skin" "0" - "solid" "6" + "solid" "0" "spawnflags" "0" "StartDisabled" "0" "SuppressAnimSounds" "0" + "targetname" "panels" "origin" "-152 128 -128" editor { @@ -5617,11 +5651,12 @@ entity "angles" "0 180 0" "DefaultAnim" "64_idle" "DisableBoneFollowers" "0" + "disableflashlight" "1" "disablereceiveshadows" "0" + "disableshadowdepth" "1" + "disableshadows" "1" "ExplodeDamage" "0" "ExplodeRadius" "0" - "fademindist" "-1" - "fadescale" "1" "HoldAnimation" "0" "MaxAnimTime" "10" "MinAnimTime" "5" @@ -5635,10 +5670,11 @@ entity "renderfx" "0" "SetBodyGroup" "0" "skin" "0" - "solid" "6" + "solid" "0" "spawnflags" "0" "StartDisabled" "0" "SuppressAnimSounds" "0" + "targetname" "panels" "origin" "-152 -1.65299e-005 -128" editor { @@ -5655,11 +5691,12 @@ entity "angles" "0 180 0" "DefaultAnim" "64_idle" "DisableBoneFollowers" "0" + "disableflashlight" "1" "disablereceiveshadows" "0" + "disableshadowdepth" "1" + "disableshadows" "1" "ExplodeDamage" "0" "ExplodeRadius" "0" - "fademindist" "-1" - "fadescale" "1" "HoldAnimation" "0" "MaxAnimTime" "10" "MinAnimTime" "5" @@ -5673,10 +5710,11 @@ entity "renderfx" "0" "SetBodyGroup" "0" "skin" "0" - "solid" "6" + "solid" "0" "spawnflags" "0" "StartDisabled" "0" "SuppressAnimSounds" "0" + "targetname" "panels" "origin" "-216 -32 -128" editor { @@ -7087,7 +7125,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-376 176 64" editor @@ -7100,247 +7138,6 @@ entity } } entity -{ - "id" "14380" - "classname" "func_detail" - solid - { - "id" "14381" - side - { - "id" "4016" - "plane" "(-320 182 66) (-432 182 66) (-432 182 65)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[1 0 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4015" - "plane" "(-320 167 65) (-432 167 65) (-432 167 66)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[1 0 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4014" - "plane" "(-320 167 66) (-432 167 66) (-432 182 66)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4013" - "plane" "(-320 182 65) (-432 182 65) (-432 167 65)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[-1 0 0 2] 2" - "vaxis" "[0 -1 0 12] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "4012" - "plane" "(-432 167 66) (-432 167 65) (-432 182 65)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4011" - "plane" "(-320 182 66) (-320 182 65) (-320 167 65)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "109 190 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "14431" - side - { - "id" "4160" - "plane" "(-320 25 66) (-432 25 66) (-432 25 65)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[1 0 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4159" - "plane" "(-320 7 65) (-432 7.00001 65) (-432 7.00001 66)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[1 0 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4158" - "plane" "(-320 7 66) (-432 7.00001 66) (-432 25 66)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4157" - "plane" "(-320 25 65) (-432 25 65) (-432 7.00001 65)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[-1 0 0 2] 2" - "vaxis" "[0 -1 0 36] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "4156" - "plane" "(-432 7.00001 66) (-432 7.00001 65) (-432 25 65)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4155" - "plane" "(-320 25 66) (-320 25 65) (-320 7 65)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "109 190 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "14406" - side - { - "id" "4088" - "plane" "(-320 57 66) (-432 57 66) (-432 57 65)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[1 0 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4087" - "plane" "(-320 39 65) (-432 39 65) (-432 39 66)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[1 0 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4086" - "plane" "(-320 39 66) (-432 39 66) (-432 57 66)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4085" - "plane" "(-320 57 65) (-432 57 65) (-432 39 65)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[-1 0 0 2] 2" - "vaxis" "[0 -1 0 44] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "4084" - "plane" "(-432 39 66) (-432 39 65) (-432 57 65)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4083" - "plane" "(-320 57 66) (-320 57 65) (-320 39 65)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "109 190 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "109 190 0" - "groupid" "14469" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity { "id" "14396" "classname" "prop_static" @@ -7352,7 +7149,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-376 48 64" editor @@ -7376,7 +7173,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-376 16 64" editor @@ -7400,7 +7197,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-232 184 -1.99999" editor @@ -7424,7 +7221,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-232 184 126" editor @@ -7448,7 +7245,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-200 184 126" editor @@ -7472,7 +7269,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-200 184 -1.99999" editor @@ -7496,7 +7293,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-232 -9.53674e-006 180" editor @@ -7509,95 +7306,6 @@ entity } } entity -{ - "id" "14605" - "classname" "func_detail" - solid - { - "id" "14606" - side - { - "id" "4520" - "plane" "(-223 54 181) (-223 -58 181) (-223 -58 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[0 -1 0 -8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4519" - "plane" "(-241 -58 181) (-241 54 181) (-241 54 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[0 -1 0 -8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4518" - "plane" "(-241 -58 182) (-241 54 182) (-223 54 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 8] 0.25" - "vaxis" "[-1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4517" - "plane" "(-241 54 181) (-241 -58 181) (-223 -58 181)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 1 0 32.5] 2" - "vaxis" "[-1 0 0 -26] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "4516" - "plane" "(-241 54 182) (-241 54 181) (-223 54 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[-1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4515" - "plane" "(-241 -58 181) (-241 -58 182) (-223 -58 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[-1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "146 103 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "146 103 0" - "groupid" "14742" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity { "id" "14621" "classname" "prop_static" @@ -7609,7 +7317,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-232 128 180" editor @@ -7622,95 +7330,6 @@ entity } } entity -{ - "id" "14630" - "classname" "func_detail" - solid - { - "id" "14631" - side - { - "id" "4592" - "plane" "(-223 182 181) (-223 70 181) (-223 70 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[0 -1 0 56] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4591" - "plane" "(-241 70 181) (-241 182 181) (-241 182 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[0 -1 0 56] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4590" - "plane" "(-241 70 182) (-241 182 182) (-223 182 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -56] 0.25" - "vaxis" "[-1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4589" - "plane" "(-241 182 181) (-241 70 181) (-223 70 181)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 1 0 0.499992] 2" - "vaxis" "[-1 0 0 -26] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "4588" - "plane" "(-241 182 182) (-241 182 181) (-223 182 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[-1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4587" - "plane" "(-241 70 181) (-241 70 182) (-223 70 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[-1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "146 103 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "146 103 0" - "groupid" "14742" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity { "id" "14646" "classname" "prop_static" @@ -7722,7 +7341,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-200 128 180" editor @@ -7735,411 +7354,6 @@ entity } } entity -{ - "id" "14655" - "classname" "func_detail" - solid - { - "id" "14656" - side - { - "id" "4664" - "plane" "(-191 182 181) (-191 70 181) (-191 70 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[0 -1 0 56] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4663" - "plane" "(-209 70 181) (-209 182 181) (-209 182 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[0 -1 0 56] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4662" - "plane" "(-209 70 182) (-209 182 182) (-191 182 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -56] 0.25" - "vaxis" "[-1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4661" - "plane" "(-209 182 181) (-209 70 181) (-191 70 181)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 1 0 0.499992] 2" - "vaxis" "[-1 0 0 -18] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "4660" - "plane" "(-209 182 182) (-209 182 181) (-191 182 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[-1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4659" - "plane" "(-209 70 181) (-209 70 182) (-191 70 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[-1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "146 103 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "146 103 0" - "groupid" "14742" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "14787" - "classname" "func_detail" - solid - { - "id" "14788" - side - { - "id" "4700" - "plane" "(-191 186 178) (-191 186 70) (-191 185 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[0 0 1 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4699" - "plane" "(-209 185 178) (-209 185 70) (-209 186 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[0 0 1 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4698" - "plane" "(-209 186 178) (-209 186 70) (-191 186 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -8] 0.25" - "vaxis" "[-1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4697" - "plane" "(-209 185 70) (-209 185 178) (-191 185 178)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 0 -1 -0.5] 2" - "vaxis" "[-1 0 0 -18] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "4696" - "plane" "(-209 186 70) (-209 185 70) (-191 185 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[-1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4695" - "plane" "(-209 185 178) (-209 186 178) (-191 186 178)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[-1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "14808" - side - { - "id" "4724" - "plane" "(-223 186 54) (-223 186 -58) (-223 185 -58)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[0 0 1 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4723" - "plane" "(-241 185 54) (-241 185 -58) (-241 186 -58)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[0 0 1 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4722" - "plane" "(-241 186 54) (-241 186 -58) (-223 186 -58)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -8] 0.25" - "vaxis" "[-1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4721" - "plane" "(-241 185 -58) (-241 185 54) (-223 185 54)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 0 -1 -32.5] 2" - "vaxis" "[-1 0 0 -26] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "4720" - "plane" "(-241 186 -58) (-241 185 -58) (-223 185 -58)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[-1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4719" - "plane" "(-241 185 54) (-241 186 54) (-223 186 54)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[-1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "14744" - side - { - "id" "4682" - "plane" "(-223 186 178) (-223 186 70) (-223 185 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[0 0 1 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4681" - "plane" "(-241 185 178) (-241 185 70) (-241 186 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[0 0 1 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4680" - "plane" "(-241 186 178) (-241 186 70) (-223 186 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -8] 0.25" - "vaxis" "[-1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4679" - "plane" "(-241 185 70) (-241 185 178) (-223 185 178)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 0 -1 -0.5] 2" - "vaxis" "[-1 0 0 -26] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "4678" - "plane" "(-241 186 70) (-241 185 70) (-223 185 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[-1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4677" - "plane" "(-241 185 178) (-241 186 178) (-223 186 178)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[-1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "14792" - side - { - "id" "4712" - "plane" "(-191 186 54) (-191 186 -58) (-191 185 -58)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[0 0 1 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4711" - "plane" "(-209 185 54) (-209 185 -58) (-209 186 -58)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[0 0 1 8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4710" - "plane" "(-209 186 54) (-209 186 -58) (-191 186 -58)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -8] 0.25" - "vaxis" "[-1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4709" - "plane" "(-209 185 -58) (-209 185 54) (-191 185 54)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 0 -1 -32.5] 2" - "vaxis" "[-1 0 0 -18] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "4708" - "plane" "(-209 186 -58) (-209 185 -58) (-191 185 -58)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[-1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4707" - "plane" "(-209 185 54) (-209 186 54) (-191 186 54)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[-1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity { "id" "10894" "classname" "light" diff --git a/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_7.vmf b/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_7.vmf index 5546793a68..5c44a188de 100644 --- a/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_7.vmf +++ b/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_7.vmf @@ -2,7 +2,7 @@ versioninfo { "editorversion" "400" "editorbuild" "9672" - "mapversion" "287" + "mapversion" "288" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "287" + "mapversion" "288" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -5496,7 +5496,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-240 9.53611e-006 180" editor @@ -5508,94 +5508,6 @@ entity } } entity -{ - "id" "14607" - "classname" "func_detail" - solid - { - "id" "14608" - side - { - "id" "3749" - "plane" "(-249 -56 181) (-249 56 181) (-249 56 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3748" - "plane" "(-231 56 181) (-231 -56 181) (-231 -56 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3747" - "plane" "(-249 -56 182) (-249 56 182) (-231 56 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3746" - "plane" "(-249 56 181) (-249 -56 181) (-231 -56 181)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 -1 0 32] 2" - "vaxis" "[1 0 0 16] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3745" - "plane" "(-249 -56 181) (-249 -56 182) (-231 -56 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3744" - "plane" "(-249 56 182) (-249 56 181) (-231 56 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity { "id" "14623" "classname" "prop_static" @@ -5607,7 +5519,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-224 -112 121" editor @@ -5619,94 +5531,6 @@ entity } } entity -{ - "id" "14632" - "classname" "func_detail" - solid - { - "id" "14633" - side - { - "id" "3821" - "plane" "(-223 -121 66) (-223 -121 178) (-222 -121 178)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 1 24] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3820" - "plane" "(-223 -103 178) (-223 -103 66) (-222 -103 66)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 1 24] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3819" - "plane" "(-222 -103 178) (-222 -103 66) (-222 -121 66)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -24] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3818" - "plane" "(-223 -121 178) (-223 -121 66) (-223 -103 66)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 0 -1 26] 2" - "vaxis" "[0 1 0 16] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3817" - "plane" "(-222 -103 66) (-223 -103 66) (-223 -121 66)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3816" - "plane" "(-222 -121 178) (-223 -121 178) (-223 -103 178)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity { "id" "14648" "classname" "prop_static" @@ -5718,7 +5542,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-240 -64 7.62939e-006" editor @@ -5735,69 +5559,69 @@ entity "classname" "func_detail" solid { - "id" "14658" + "id" "15057" side { - "id" "3893" - "plane" "(-249 -68 56) (-249 -68 -56) (-249 -65 -56)" + "id" "3947" + "plane" "(-288 -128 -64) (-288 -128 64) (-256 -128 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3892" - "plane" "(-231 -65 56) (-231 -65 -56) (-231 -68 -56)" + "id" "3946" + "plane" "(-256 -64 64) (-256 -64 -64) (-256 -128 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3891" - "plane" "(-249 -68 -56) (-249 -68 56) (-231 -68 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "3945" + "plane" "(-288 -128 64) (-288 -128 -64) (-288 -64 -64)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[0 -1 0 768] 0.25" + "vaxis" "[0 0 -1 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3890" - "plane" "(-249 -65 56) (-249 -65 -56) (-231 -65 -56)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 0 -1 32] 2" - "vaxis" "[1 0 0 16] 2" + "id" "3944" + "plane" "(-288 -64 -64) (-288 -128 -64) (-256 -128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" - "lightmapscale" "8" + "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3889" - "plane" "(-249 -65 -56) (-249 -68 -56) (-231 -68 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "3943" + "plane" "(-288 -64 64) (-288 -64 -64) (-256 -64 -64)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3888" - "plane" "(-249 -68 56) (-249 -65 56) (-231 -65 56)" + "id" "3942" + "plane" "(-256 -128 64) (-288 -128 64) (-288 -64 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -5961,170 +5785,6 @@ entity "visgroupautoshown" "1" } } - solid - { - "id" "15057" - side - { - "id" "3947" - "plane" "(-288 -128 -64) (-288 -128 64) (-256 -128 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3946" - "plane" "(-256 -64 64) (-256 -64 -64) (-256 -128 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3945" - "plane" "(-288 -128 64) (-288 -128 -64) (-288 -64 -64)" - "material" "METAL/BLACK_WALL_METAL_002A" - "uaxis" "[0 -1 0 768] 0.25" - "vaxis" "[0 0 -1 256] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3944" - "plane" "(-288 -64 -64) (-288 -128 -64) (-256 -128 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3943" - "plane" "(-288 -64 64) (-288 -64 -64) (-256 -64 -64)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3942" - "plane" "(-256 -128 64) (-288 -128 64) (-288 -64 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "14684" - "classname" "func_detail" - solid - { - "id" "14685" - side - { - "id" "3911" - "plane" "(-232 121 182) (-344 121 182) (-344 121 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3910" - "plane" "(-232 103 181) (-344 103 181) (-344 103 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3909" - "plane" "(-232 103 182) (-344 103 182) (-344 121 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3908" - "plane" "(-232 121 181) (-344 121 181) (-344 103 181)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[-1 0 0 0] 2" - "vaxis" "[0 -1 0 16] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3907" - "plane" "(-344 103 182) (-344 103 181) (-344 121 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3906" - "plane" "(-232 121 182) (-232 121 181) (-232 103 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 -48] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } editor { "color" "0 180 0" @@ -6145,7 +5805,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-288 112 180" editor @@ -6356,26 +6016,6 @@ entity } } entity -{ - "id" "12934" - "classname" "light" - "_constant_attn" "10000" - "_light" "210 250 250 5" - "_lightHDR" "-1 -1 -1 1" - "_lightscaleHDR" "1" - "_quadratic_attn" "1" - "_shadoworiginoffset" "0 0 0" - "angles" "0 0 0" - "origin" "-272 6.73858e-006 128" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity { "id" "11706" "classname" "light" diff --git a/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_down_piston.vmf b/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_down_piston.vmf index a9e1070b54..4dea126350 100644 --- a/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_down_piston.vmf +++ b/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_down_piston.vmf @@ -2,7 +2,7 @@ versioninfo { "editorversion" "400" "editorbuild" "9672" - "mapversion" "290" + "mapversion" "291" "formatversion" "100" "prefab" "0" } @@ -26,7 +26,7 @@ viewsettings world { "id" "1" - "mapversion" "290" + "mapversion" "291" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -5125,7 +5125,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-80 -184 288" editor @@ -5148,7 +5148,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-80 -184 160" editor @@ -5160,170 +5160,6 @@ entity } } entity -{ - "id" "18705" - "classname" "func_detail" - solid - { - "id" "18706" - side - { - "id" "4422" - "plane" "(-71 -186 104) (-71 -186 216) (-71 -185 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4421" - "plane" "(-89 -185 104) (-89 -185 216) (-89 -186 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4420" - "plane" "(-89 -186 104) (-89 -186 216) (-71 -186 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4419" - "plane" "(-71 -185 104) (-71 -185 216) (-89 -185 216)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 0 1 -8] 2" - "vaxis" "[-1 0 0 12] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "4418" - "plane" "(-89 -186 216) (-89 -185 216) (-71 -185 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4417" - "plane" "(-89 -185 104) (-89 -186 104) (-71 -186 104)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "18707" - side - { - "id" "4428" - "plane" "(-71 -186 232) (-71 -186 344) (-71 -185 344)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4427" - "plane" "(-89 -185 232) (-89 -185 344) (-89 -186 344)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4426" - "plane" "(-89 -186 232) (-89 -186 344) (-71 -186 344)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4425" - "plane" "(-71 -185 232) (-71 -185 344) (-89 -185 344)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 0 1 -40] 2" - "vaxis" "[-1 0 0 12] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "4424" - "plane" "(-89 -186 344) (-89 -185 344) (-71 -185 344)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4423" - "plane" "(-89 -185 232) (-89 -186 232) (-71 -186 232)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity { "id" "18761" "classname" "prop_static" @@ -5335,7 +5171,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-48 -184 288" editor @@ -5347,94 +5183,6 @@ entity } } entity -{ - "id" "18777" - "classname" "func_detail" - solid - { - "id" "18779" - side - { - "id" "4476" - "plane" "(-39 -186 232) (-39 -186 344) (-39 -185 344)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4475" - "plane" "(-57 -185 232) (-57 -185 344) (-57 -186 344)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4474" - "plane" "(-57 -186 232) (-57 -186 344) (-39 -186 344)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4473" - "plane" "(-39 -185 232) (-39 -185 344) (-57 -185 344)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 0 1 -40] 2" - "vaxis" "[-1 0 0 20] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "4472" - "plane" "(-57 -186 344) (-57 -185 344) (-39 -185 344)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4471" - "plane" "(-57 -185 232) (-57 -186 232) (-39 -186 232)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity { "id" "16626" "classname" "light" @@ -5885,7 +5633,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-112 184 160" editor @@ -5908,7 +5656,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-112 184 288" editor @@ -5921,184 +5669,20 @@ entity } entity { - "id" "14091" - "classname" "func_detail" - solid - { - "id" "14092" - side - { - "id" "3301" - "plane" "(-103 185 232) (-103 185 344) (-103 186 344)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3300" - "plane" "(-121 186 232) (-121 186 344) (-121 185 344)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3299" - "plane" "(-103 186 232) (-103 186 344) (-121 186 344)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3298" - "plane" "(-121 185 232) (-121 185 344) (-103 185 344)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 0 -1 40] 2" - "vaxis" "[-1 0 0 4] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3297" - "plane" "(-121 186 232) (-121 185 232) (-103 185 232)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3296" - "plane" "(-121 185 344) (-121 186 344) (-103 186 344)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "14065" - side - { - "id" "3229" - "plane" "(-103 185 104) (-103 185 216) (-103 186 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3228" - "plane" "(-121 186 104) (-121 186 216) (-121 185 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3227" - "plane" "(-103 186 104) (-103 186 216) (-121 186 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3226" - "plane" "(-121 185 104) (-121 185 216) (-103 185 216)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 0 -1 8] 2" - "vaxis" "[-1 0 0 4] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3225" - "plane" "(-121 186 104) (-121 185 104) (-103 185 104)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3224" - "plane" "(-121 185 216) (-121 186 216) (-103 186 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "14108" - "classname" "prop_static" - "angles" "-90 270 0" - "disableshadows" "1" - "drawinfastreflection" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_lab/glass_lightcover.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "origin" "144 8.39259e-006 96" - editor + "id" "14108" + "classname" "prop_static" + "angles" "-90 270 0" + "disableshadows" "1" + "drawinfastreflection" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_lab/glass_lightcover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "$strip_skin" + "solid" "6" + "origin" "144 8.39259e-006 96" + editor { "color" "255 255 0" "visgroupshown" "1" @@ -6107,94 +5691,6 @@ entity } } entity -{ - "id" "14118" - "classname" "func_detail" - solid - { - "id" "14119" - side - { - "id" "3373" - "plane" "(153 -56 95) (153 56 95) (153 56 94)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3372" - "plane" "(135 56 95) (135 -56 95) (135 -56 94)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3371" - "plane" "(135 56 94) (135 -56 94) (153 -56 94)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3370" - "plane" "(135 -56 95) (135 56 95) (153 56 95)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 -1 0 32] 2" - "vaxis" "[-1 0 0 4] 2" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3369" - "plane" "(135 -56 94) (135 -56 95) (153 -56 95)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3368" - "plane" "(153 56 94) (153 56 95) (135 56 95)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity { "id" "14135" "classname" "prop_static" @@ -6206,7 +5702,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-112 -184 288" editor @@ -6229,7 +5725,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-112 -184 160" editor @@ -6241,170 +5737,6 @@ entity } } entity -{ - "id" "14172" - "classname" "func_detail" - solid - { - "id" "14173" - side - { - "id" "3517" - "plane" "(-103 -186 104) (-103 -186 216) (-103 -185 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3516" - "plane" "(-121 -185 104) (-121 -185 216) (-121 -186 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3515" - "plane" "(-121 -186 104) (-121 -186 216) (-103 -186 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3514" - "plane" "(-103 -185 104) (-103 -185 216) (-121 -185 216)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 0 1 -8] 2" - "vaxis" "[-1 0 0 4] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3513" - "plane" "(-121 -186 216) (-121 -185 216) (-103 -185 216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3512" - "plane" "(-121 -185 104) (-121 -186 104) (-103 -186 104)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "14146" - side - { - "id" "3445" - "plane" "(-103 -186 232) (-103 -186 344) (-103 -185 344)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3444" - "plane" "(-121 -185 232) (-121 -185 344) (-121 -186 344)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3443" - "plane" "(-121 -186 232) (-121 -186 344) (-103 -186 344)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3442" - "plane" "(-103 -185 232) (-103 -185 344) (-121 -185 344)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 0 1 -40] 2" - "vaxis" "[-1 0 0 4] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3441" - "plane" "(-121 -186 344) (-121 -185 344) (-103 -185 344)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3440" - "plane" "(-121 -185 232) (-121 -186 232) (-103 -186 232)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "180" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity { "id" "14669" "classname" "prop_static" diff --git a/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_over_right_turn.vmf b/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_over_right_turn.vmf new file mode 100644 index 0000000000..ff7aba6a9d --- /dev/null +++ b/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_over_right_turn.vmf @@ -0,0 +1,6208 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "380" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ + visgroup + { + "name" "Embed" + "visgroupid" "14" + "color" "191 188 141" + } +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "8" + "bShow3DGrid" "1" +} +world +{ + "id" "1" + "mapversion" "380" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_day01_01" + solid + { + "id" "19255" + side + { + "id" "5234" + "plane" "(-280 144 160) (-248 144 160) (-248 128 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5233" + "plane" "(-280 128 128) (-280 128 160) (-248 128 160)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 0 1 256] 0.25" + "vaxis" "[-1 0 0 800] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5232" + "plane" "(-248 144 160) (-280 144 160) (-280 144 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5231" + "plane" "(-280 144 128) (-280 144 160) (-280 128 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5230" + "plane" "(-280 128 128) (-248 128 128) (-248 144 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5229" + "plane" "(-248 128 128) (-248 128 160) (-248 144 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 205 182" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19256" + side + { + "id" "5240" + "plane" "(-120 144 160) (-88 144 160) (-88 128 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5239" + "plane" "(-88 128 128) (-88 128 160) (-88 144 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5238" + "plane" "(-120 128 160) (-88 128 160) (-88 128 128)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 0 1 256] 0.25" + "vaxis" "[-1 0 0 800] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5237" + "plane" "(-120 144 128) (-88 144 128) (-88 144 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5236" + "plane" "(-120 128 128) (-88 128 128) (-88 144 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5235" + "plane" "(-120 144 128) (-120 144 160) (-120 128 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 205 182" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19426" + side + { + "id" "5259" + "plane" "(-248 136 168) (-120 136 168) (-120 128 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5260" + "plane" "(-248 128 160) (-120 128 160) (-120 136 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5261" + "plane" "(-248 136 168) (-248 128 168) (-248 128 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5262" + "plane" "(-120 136 160) (-120 128 160) (-120 128 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5263" + "plane" "(-120 136 168) (-248 136 168) (-248 136 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5264" + "plane" "(-120 128 160) (-248 128 160) (-248 128 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 226 127" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19428" + side + { + "id" "5265" + "plane" "(-248 144 128) (-248 144 160) (-248 136 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -32] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5266" + "plane" "(-120 136 128) (-120 136 160) (-120 144 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -32] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5267" + "plane" "(-248 144 128) (-248 136 128) (-120 136 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5268" + "plane" "(-120 144 160) (-120 136 160) (-248 136 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5269" + "plane" "(-248 144 160) (-248 144 128) (-120 144 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -32] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5270" + "plane" "(-120 136 160) (-120 136 128) (-248 136 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -32] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 214 183" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19142" + side + { + "id" "5163" + "plane" "(-520 -32 64) (-504 -32 64) (-504 -32 -4.76837e-006)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5164" + "plane" "(-520 32 1.90735e-006) (-504 32 1.90735e-006) (-504 32 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5165" + "plane" "(-520 -32 64) (-520 -32 -4.76837e-006) (-520 32 1.90735e-006)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5166" + "plane" "(-504 32 64) (-504 32 1.90735e-006) (-504 -32 -4.76837e-006)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[0 1 0 -128] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5167" + "plane" "(-504 -32 64) (-520 -32 64) (-520 32 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5168" + "plane" "(-504 32 1.90735e-006) (-520 32 1.90735e-006) (-520 -32 -4.76837e-006)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 191 224" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19145" + side + { + "id" "5180" + "plane" "(-520 64 64) (-504 64 64) (-504 64 -4.76837e-006)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5179" + "plane" "(-520 128 1.90735e-006) (-504 128 1.90735e-006) (-504 128 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5178" + "plane" "(-520 64 64) (-520 64 -4.76837e-006) (-520 128 1.90735e-006)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5177" + "plane" "(-504 128 64) (-504 128 1.90735e-006) (-504 64 -4.76837e-006)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[0 1 0 -512] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5176" + "plane" "(-504 64 64) (-520 64 64) (-520 128 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5175" + "plane" "(-504 128 1.90735e-006) (-520 128 1.90735e-006) (-520 64 -4.76837e-006)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 191 224" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19157" + side + { + "id" "5192" + "plane" "(-520 32 64) (-504 32 64) (-504 32 -4.76837e-006)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5191" + "plane" "(-520 64 1.90735e-006) (-504 64 1.90735e-006) (-504 64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5190" + "plane" "(-520 32 64) (-520 32 -4.76837e-006) (-520 64 1.90735e-006)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5189" + "plane" "(-504 64 64) (-504 64 1.90735e-006) (-504 32 -4.76837e-006)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 1 0 512] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5188" + "plane" "(-504 32 64) (-520 32 64) (-520 64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5187" + "plane" "(-504 64 1.90735e-006) (-520 64 1.90735e-006) (-520 32 -4.76837e-006)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 191 224" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19176" + side + { + "id" "5193" + "plane" "(-504 -160 168) (-376 -160 168) (-376 -184 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5194" + "plane" "(-504 -184 160) (-376 -184 160) (-376 -160 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5195" + "plane" "(-504 -160 168) (-504 -184 168) (-504 -184 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5196" + "plane" "(-376 -160 160) (-376 -184 160) (-376 -184 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5197" + "plane" "(-376 -160 168) (-504 -160 168) (-504 -160 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5198" + "plane" "(-376 -184 160) (-504 -184 160) (-504 -184 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 220 105" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19188" + side + { + "id" "5199" + "plane" "(-504 -160 -64) (-376 -160 -64) (-376 -184 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5200" + "plane" "(-504 -184 -80) (-376 -184 -80) (-376 -160 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5201" + "plane" "(-504 -160 -64) (-504 -184 -64) (-504 -184 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5202" + "plane" "(-376 -160 -80) (-376 -184 -80) (-376 -184 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5203" + "plane" "(-376 -160 -64) (-504 -160 -64) (-504 -160 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5204" + "plane" "(-376 -184 -80) (-504 -184 -80) (-504 -184 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 192 117" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19046" + side + { + "id" "5120" + "plane" "(-280 128 128) (-280 144 128) (-216 144 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5119" + "plane" "(-280 144 4.57764e-006) (-280 144 128) (-280 128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5118" + "plane" "(-280 128 4.57764e-006) (-280 128 128) (-216 128 128)" + "material" "METAL/BLACK_WALL_METAL_002E" + "uaxis" "[-1 0 0 -864] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5117" + "plane" "(-216 144 128) (-280 144 128) (-280 144 4.57764e-006)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5116" + "plane" "(-280 144 4.57764e-006) (-280 128 4.57764e-006) (-216 128 4.57764e-006)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5115" + "plane" "(-216 128 4.57764e-006) (-216 128 128) (-216 144 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 205 182" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19059" + side + { + "id" "5138" + "plane" "(-88 144 128) (-88 144 0) (-88 128 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5137" + "plane" "(-88 128 128) (-88 128 0) (-216 128 0)" + "material" "METAL/BLACK_WALL_METAL_002C" + "uaxis" "[-1 0 0 160] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5136" + "plane" "(-216 144 128) (-216 144 0) (-88 144 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5135" + "plane" "(-216 128 128) (-216 128 0) (-216 144 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5134" + "plane" "(-216 144 128) (-88 144 128) (-88 128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5133" + "plane" "(-216 128 0) (-88 128 0) (-88 144 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 205 182" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19060" + side + { + "id" "5144" + "plane" "(-88 144 0) (-88 144 -32) (-88 128 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5143" + "plane" "(-88 128 0) (-88 128 -32) (-280 128 -32)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 480] 0.25" + "vaxis" "[0 0 -1 768] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5142" + "plane" "(-280 144 0) (-280 144 -32) (-88 144 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5141" + "plane" "(-280 128 -32) (-88 128 -32) (-88 144 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5140" + "plane" "(-280 128 0) (-280 128 -32) (-280 144 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5139" + "plane" "(-280 144 0) (-88 144 0) (-88 128 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 205 182" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19078" + side + { + "id" "5151" + "plane" "(-88 -64 160) (-68 -64 160) (-68 -64 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5152" + "plane" "(-88 128 128) (-68 128 128) (-68 128 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5153" + "plane" "(-88 -64 160) (-88 -64 128) (-88 128 128)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 -1 0 256] 0.25" + "vaxis" "[0 0 -1 640] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5154" + "plane" "(-68 128 160) (-68 128 128) (-68 -64 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5155" + "plane" "(-68 -64 160) (-88 -64 160) (-88 128 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5156" + "plane" "(-68 128 128) (-88 128 128) (-88 -64 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 155 240" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19103" + side + { + "id" "5157" + "plane" "(-520 -32 -64) (-520 -32 64) (-520 -96 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5158" + "plane" "(-504 -96 -64) (-504 -96 64) (-504 -32 64)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[0 1 0 -128] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5159" + "plane" "(-520 -96 -64) (-504 -96 -64) (-504 -32 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5160" + "plane" "(-520 -32 64) (-504 -32 64) (-504 -96 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5161" + "plane" "(-520 -32 -64) (-504 -32 -64) (-504 -32 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5162" + "plane" "(-504 -96 -64) (-520 -96 -64) (-520 -96 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 182 171" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "18577" + side + { + "id" "5048" + "plane" "(-520 -160 -64) (-520 -184 -64) (-504 -184 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5047" + "plane" "(-520 -184 160) (-520 -160 160) (-504 -160 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5046" + "plane" "(-520 -184 -64) (-520 -160 -64) (-520 -160 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5045" + "plane" "(-504 -160 -64) (-504 -184 -64) (-504 -184 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5044" + "plane" "(-504 -184 -64) (-520 -184 -64) (-520 -184 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5043" + "plane" "(-520 -160 -64) (-504 -160 -64) (-504 -160 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 247 252" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "18588" + side + { + "id" "5060" + "plane" "(-360 -160 -64) (-360 -184 -64) (-360 -184 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5059" + "plane" "(-376 -184 -64) (-376 -160 -64) (-376 -160 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5058" + "plane" "(-376 -160 -64) (-376 -184 -64) (-360 -184 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5057" + "plane" "(-376 -184 160) (-376 -160 160) (-360 -160 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5056" + "plane" "(-360 -184 160) (-360 -184 -64) (-376 -184 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5055" + "plane" "(-376 -160 160) (-376 -160 -64) (-360 -160 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 167 120" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "18592" + side + { + "id" "5067" + "plane" "(-504 -128 160) (-504 -160 160) (-376 -160 160)" + "material" "METAL/BLACK_FLOOR_METAL_001C" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5068" + "plane" "(-504 -160 168) (-504 -128 168) (-376 -128 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5069" + "plane" "(-504 -160 160) (-504 -128 160) (-504 -128 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5070" + "plane" "(-376 -128 160) (-376 -160 160) (-376 -160 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5071" + "plane" "(-376 -160 160) (-504 -160 160) (-504 -160 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5072" + "plane" "(-376 -128 168) (-504 -128 168) (-504 -128 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 249 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "17697" + side + { + "id" "4850" + "plane" "(-152 144 -32) (-152 144 -64) (-152 136 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 14] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4849" + "plane" "(-504 136 -32) (-504 136 -64) (-504 144 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4848" + "plane" "(-504 144 -32) (-504 144 -64) (-152 144 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 -34] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4847" + "plane" "(-152 136 -32) (-152 136 -64) (-504 136 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 -34] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4846" + "plane" "(-504 144 -64) (-504 136 -64) (-152 136 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[-1 0 0 -34] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4845" + "plane" "(-504 136 -32) (-504 144 -32) (-152 144 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[-1 0 0 -34] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 219 132" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "16249" + side + { + "id" "4430" + "plane" "(-72 72 -64) (-72 64 -64) (-64 64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4429" + "plane" "(-64 64 64) (-72 64 64) (-72 72 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4428" + "plane" "(-72 64 -64) (-72 72 -64) (-72 72 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4427" + "plane" "(-64 64 -64) (-72 64 -64) (-72 64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4426" + "plane" "(-72 72 -64) (-64 64 -64) (-64 64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-0.707107 0.707107 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 116 133" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "16270" + side + { + "id" "4460" + "plane" "(-72 64 72) (-72 64 64) (-64 64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4459" + "plane" "(-64 -64 64) (-72 -64 64) (-72 -64 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4458" + "plane" "(-72 -64 72) (-72 -64 64) (-72 64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4457" + "plane" "(-64 64 64) (-72 64 64) (-72 -64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4456" + "plane" "(-72 64 72) (-64 64 64) (-64 -64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-0.707107 0 0.707107 53.0194] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 116 133" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "15846" + side + { + "id" "4306" + "plane" "(-532 104 37) (-540 104 37) (-540 104 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 60] 0.25" + "vaxis" "[-1 0 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4307" + "plane" "(-532 96 33) (-540 96 33) (-540 96 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -60] 0.25" + "vaxis" "[-1 0 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4308" + "plane" "(-532 104 33) (-540 104 33) (-540 96 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4309" + "plane" "(-532 96 37) (-540 96 37) (-540 104 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4310" + "plane" "(-532 104 37) (-532 104 33) (-532 96 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -60] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4311" + "plane" "(-540 96 37) (-540 96 33) (-540 104 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 60] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 169 198" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "15851" + side + { + "id" "4323" + "plane" "(-532 104 25) (-540 104 25) (-540 104 21)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 44] 0.25" + "vaxis" "[-1 0 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4322" + "plane" "(-532 96 21) (-540 96 21) (-540 96 25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -44] 0.25" + "vaxis" "[-1 0 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4321" + "plane" "(-532 104 21) (-540 104 21) (-540 96 21)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4320" + "plane" "(-532 96 25) (-540 96 25) (-540 104 25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4319" + "plane" "(-532 104 25) (-532 104 21) (-532 96 21)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -44] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4318" + "plane" "(-540 96 25) (-540 96 21) (-540 104 21)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 44] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 169 198" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "15874" + side + { + "id" "4389" + "plane" "(-544 104 33) (-544 104 25) (-540 104 25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 1 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4388" + "plane" "(-544 96 25) (-544 96 33) (-540 96 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 1 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4387" + "plane" "(-544 96 33) (-544 96 25) (-544 104 25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 28] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4386" + "plane" "(-540 104 33) (-540 104 25) (-540 96 25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -28] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4385" + "plane" "(-540 104 25) (-544 104 25) (-544 96 25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4384" + "plane" "(-540 96 33) (-544 96 33) (-544 104 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 169 198" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "15875" + side + { + "id" "4395" + "plane" "(-532 104 33) (-532 104 25) (-528 104 25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 1 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4394" + "plane" "(-532 96 25) (-532 96 33) (-528 96 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 0 1 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4393" + "plane" "(-532 96 33) (-532 96 25) (-532 104 25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 28] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4392" + "plane" "(-528 104 33) (-528 104 25) (-528 96 25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -28] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4391" + "plane" "(-528 104 25) (-532 104 25) (-532 96 25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4390" + "plane" "(-528 96 33) (-532 96 33) (-532 104 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 169 198" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "15880" + side + { + "id" "4413" + "plane" "(-540 92 33) (-540 92 25) (-540 96 25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 1 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4412" + "plane" "(-532 96 33) (-532 96 25) (-532 92 25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[0 0 1 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4411" + "plane" "(-540 92 25) (-540 92 33) (-532 92 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 28] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4410" + "plane" "(-540 96 33) (-540 96 25) (-532 96 25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -28] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4409" + "plane" "(-540 96 25) (-540 92 25) (-532 92 25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4408" + "plane" "(-540 92 33) (-540 96 33) (-532 96 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 169 198" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "15881" + side + { + "id" "4419" + "plane" "(-540 104 33) (-540 104 25) (-540 108 25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 1 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4418" + "plane" "(-532 108 33) (-532 108 25) (-532 104 25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 0 1 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4417" + "plane" "(-540 104 25) (-540 104 33) (-532 104 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 28] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4416" + "plane" "(-540 108 33) (-540 108 25) (-532 108 25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -28] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4415" + "plane" "(-540 108 25) (-540 104 25) (-532 104 25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4414" + "plane" "(-540 104 33) (-540 108 33) (-532 108 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 169 198" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "15132" + side + { + "id" "4154" + "plane" "(-520 128 160) (-504 128 160) (-504 -160 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4153" + "plane" "(-520 128 160) (-520 -160 160) (-520 -160 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4152" + "plane" "(-504 -160 160) (-504 128 160) (-504 128 64)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 1 0 512] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4151" + "plane" "(-504 128 160) (-520 128 160) (-520 128 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4150" + "plane" "(-520 -160 160) (-504 -160 160) (-504 -160 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4149" + "plane" "(-520 -160 64) (-504 -160 64) (-504 128 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 247 252" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "15143" + side + { + "id" "4178" + "plane" "(-520 -32 -64) (-504 -32 -64) (-504 128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4177" + "plane" "(-520 128 -64) (-520 128 0) (-520 -32 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4176" + "plane" "(-504 128 -64) (-504 -32 -64) (-504 -32 0)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 1 0 512] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4175" + "plane" "(-520 128 -64) (-504 128 -64) (-504 128 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4174" + "plane" "(-520 128 0) (-504 128 0) (-504 -32 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4173" + "plane" "(-504 -32 -64) (-520 -32 -64) (-520 -32 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 247 252" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "15144" + side + { + "id" "4184" + "plane" "(-520 -160 -64) (-504 -160 -64) (-504 -96 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4183" + "plane" "(-520 -160 -64) (-520 -96 -64) (-520 -96 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4182" + "plane" "(-504 -160 -64) (-504 -160 64) (-504 -96 64)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 1 0 512] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4181" + "plane" "(-504 -160 -64) (-520 -160 -64) (-520 -160 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4180" + "plane" "(-520 -96 64) (-504 -96 64) (-504 -160 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4179" + "plane" "(-520 -96 -64) (-504 -96 -64) (-504 -96 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 247 252" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "11068" + side + { + "id" "3147" + "plane" "(-504 -184 -64) (-504 -188 -64) (-376 -188 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3148" + "plane" "(-504 -188 160) (-504 -184 160) (-376 -184 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3149" + "plane" "(-504 -188 -64) (-504 -184 -64) (-504 -184 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3150" + "plane" "(-376 -184 -64) (-376 -188 -64) (-376 -188 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3151" + "plane" "(-376 -188 -64) (-504 -188 -64) (-504 -188 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3152" + "plane" "(-504 -184 -64) (-376 -184 -64) (-376 -184 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 113 206" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "11164" + side + { + "id" "3165" + "plane" "(-88 128 -64) (-504 128 -64) (-504 128 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3166" + "plane" "(-88 -64 -80) (-504 -64 -80) (-504 -64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3167" + "plane" "(-88 128 -80) (-504 128 -80) (-504 -64 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3168" + "plane" "(-88 -64 -64) (-504 -64 -64) (-504 128 -64)" + "material" "METAL/BLACK_FLOOR_METAL_001C" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3169" + "plane" "(-88 128 -64) (-88 128 -80) (-88 -64 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3170" + "plane" "(-504 -64 -64) (-504 -64 -80) (-504 128 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 211 236" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "11307" + side + { + "id" "3471" + "plane" "(-504 -128 -80) (-504 -160 -80) (-376 -160 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3472" + "plane" "(-504 -160 -64) (-504 -128 -64) (-376 -128 -64)" + "material" "METAL/BLACK_FLOOR_METAL_001C" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3473" + "plane" "(-504 -160 -80) (-504 -128 -80) (-504 -128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3474" + "plane" "(-376 -128 -80) (-376 -160 -80) (-376 -160 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3475" + "plane" "(-376 -160 -80) (-504 -160 -80) (-504 -160 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3476" + "plane" "(-504 -128 -80) (-376 -128 -80) (-376 -128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 191 160" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "11310" + side + { + "id" "3477" + "plane" "(-504 -64 -80) (-504 -128 -80) (-184 -128 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3478" + "plane" "(-504 -128 -64) (-504 -64 -64) (-184 -64 -64)" + "material" "METAL/BLACK_FLOOR_METAL_001C" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3479" + "plane" "(-504 -128 -80) (-504 -64 -80) (-504 -64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3480" + "plane" "(-184 -64 -80) (-184 -128 -80) (-184 -128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3481" + "plane" "(-184 -128 -80) (-504 -128 -80) (-504 -128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3482" + "plane" "(-184 -64 -64) (-504 -64 -64) (-504 -64 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 225 134" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "11317" + side + { + "id" "3501" + "plane" "(-184 -128 -64) (-88 -128 -64) (-88 -64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3502" + "plane" "(-184 -64 160) (-88 -64 160) (-88 -128 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3503" + "plane" "(-184 -64 -64) (-184 -64 160) (-184 -128 160)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 -1 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3504" + "plane" "(-88 -128 -64) (-88 -128 160) (-88 -64 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3505" + "plane" "(-184 -128 -64) (-184 -128 160) (-88 -128 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3506" + "plane" "(-184 -64 160) (-184 -64 -64) (-88 -64 -64)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 252" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "11325" + side + { + "id" "3525" + "plane" "(-88 128 -64) (-88 64 -64) (-72 64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3526" + "plane" "(-88 64 128) (-88 128 128) (-72 128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3527" + "plane" "(-88 64 -64) (-88 128 -64) (-88 128 128)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 -1 0 256] 0.25" + "vaxis" "[0 0 -1 640] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3528" + "plane" "(-72 128 -64) (-72 64 -64) (-72 64 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3529" + "plane" "(-72 64 -64) (-88 64 -64) (-88 64 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3530" + "plane" "(-88 128 -64) (-72 128 -64) (-72 128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 203 152" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "11326" + side + { + "id" "3531" + "plane" "(-88 64 64) (-88 -64 64) (-72 -64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3532" + "plane" "(-88 -64 128) (-88 64 128) (-72 64 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3533" + "plane" "(-88 -64 64) (-88 64 64) (-88 64 128)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3534" + "plane" "(-72 64 64) (-72 -64 64) (-72 -64 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3535" + "plane" "(-72 -64 64) (-88 -64 64) (-88 -64 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3536" + "plane" "(-88 64 64) (-72 64 64) (-72 64 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 221 166" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12570" + side + { + "id" "3542" + "plane" "(-504 128 160) (-504 144 160) (-376 144 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3541" + "plane" "(-504 144 -32) (-504 144 160) (-504 128 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3540" + "plane" "(-376 128 -32) (-376 128 160) (-376 144 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3539" + "plane" "(-504 128 -32) (-504 128 160) (-376 128 160)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 640] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3538" + "plane" "(-376 144 160) (-504 144 160) (-504 144 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3537" + "plane" "(-504 144 -32) (-504 128 -32) (-376 128 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 207 232" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12573" + side + { + "id" "3560" + "plane" "(-376 -160 -64) (-184 -160 -64) (-184 -128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3559" + "plane" "(-376 -160 -64) (-376 -128 -64) (-376 -128 -32)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 640] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3558" + "plane" "(-184 -128 -64) (-184 -160 -64) (-184 -160 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3557" + "plane" "(-184 -160 -64) (-376 -160 -64) (-376 -160 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3556" + "plane" "(-376 -128 -64) (-184 -128 -64) (-184 -128 -32)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 640] 0.25" + "rotation" "270" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3555" + "plane" "(-376 -128 -32) (-184 -128 -32) (-184 -160 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 181 110" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12640" + side + { + "id" "5102" + "plane" "(-280 136 -64) (-280 128 -64) (-280 128 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5101" + "plane" "(-376 128 -64) (-376 136 -64) (-376 136 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5100" + "plane" "(-376 136 -64) (-376 128 -64) (-280 128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5099" + "plane" "(-376 128 -32) (-376 136 -32) (-280 136 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5098" + "plane" "(-280 128 -32) (-280 128 -64) (-376 128 -64)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 480] 0.25" + "vaxis" "[0 0 -1 768] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5097" + "plane" "(-376 136 -32) (-376 136 -64) (-280 136 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 125 194" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12656" + side + { + "id" "3590" + "plane" "(-152 128 -64) (-88 128 -64) (-88 144 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3589" + "plane" "(-88 144 -32) (-88 144 -64) (-88 128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3588" + "plane" "(-88 128 -64) (-152 128 -64) (-152 128 -32)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 480] 0.25" + "vaxis" "[0 0 -1 768] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3587" + "plane" "(-152 144 -64) (-88 144 -64) (-88 144 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3586" + "plane" "(-152 144 -32) (-88 144 -32) (-88 128 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3585" + "plane" "(-152 128 -32) (-152 128 -64) (-152 144 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 205 182" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12682" + side + { + "id" "3614" + "plane" "(-152 136 -72) (-152 128 -72) (-152 128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3613" + "plane" "(-504 128 -72) (-504 136 -72) (-504 136 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3612" + "plane" "(-504 136 -72) (-504 128 -72) (-152 128 -72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3611" + "plane" "(-504 128 -64) (-504 136 -64) (-152 136 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3610" + "plane" "(-152 128 -64) (-152 128 -72) (-504 128 -72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3609" + "plane" "(-504 136 -64) (-504 136 -72) (-152 136 -72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 174 127" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12689" + side + { + "id" "3615" + "plane" "(-512 136 -64.5) (-512 128 -64.5) (-504 128 -64.5)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3616" + "plane" "(-512 128 -31.5) (-512 136 -31.5) (-504 136 -31.5)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3617" + "plane" "(-512 128 -64.5) (-512 136 -64.5) (-512 136 -31.5)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3618" + "plane" "(-504 136 -64.5) (-504 128 -64.5) (-504 128 -31.5)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3619" + "plane" "(-504 128 -64.5) (-512 128 -64.5) (-512 128 -31.5)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3620" + "plane" "(-504 136 -31.5) (-512 136 -31.5) (-512 136 -64.5)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 222 195" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13162" + side + { + "id" "5096" + "plane" "(-376 144 160) (-376 128 160) (-280 128 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5095" + "plane" "(-376 128 168) (-376 144 168) (-280 144 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5094" + "plane" "(-376 128 160) (-376 144 160) (-376 144 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5093" + "plane" "(-280 144 160) (-280 128 160) (-280 128 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5092" + "plane" "(-280 128 160) (-376 128 160) (-376 128 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5091" + "plane" "(-280 144 168) (-376 144 168) (-376 144 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 241 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13185" + side + { + "id" "3800" + "plane" "(-80 64 160) (-88 64 160) (-88 64 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3799" + "plane" "(-88 64 160) (-80 64 160) (-80 128 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3798" + "plane" "(-80 64 168) (-88 64 168) (-88 128 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3797" + "plane" "(-80 128 160) (-80 64 160) (-80 64 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3796" + "plane" "(-80 128 168) (-88 128 168) (-88 128 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3795" + "plane" "(-88 64 168) (-88 64 160) (-88 128 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 211 236" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13194" + side + { + "id" "3824" + "plane" "(-88 -64 160) (-216 -64 160) (-216 -64 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3823" + "plane" "(-88 128 160) (-216 128 160) (-216 -64 160)" + "material" "METAL/BLACK_FLOOR_METAL_001C" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3822" + "plane" "(-88 -64 168) (-216 -64 168) (-216 128 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3821" + "plane" "(-216 128 160) (-88 128 160) (-88 128 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3820" + "plane" "(-88 128 160) (-88 -64 160) (-88 -64 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3819" + "plane" "(-216 -64 168) (-216 -64 160) (-216 128 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 211 236" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13223" + side + { + "id" "4028" + "plane" "(-504 128 160) (-216 128 160) (-216 128 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4027" + "plane" "(-216 128 160) (-504 128 160) (-504 0 160)" + "material" "METAL/BLACK_FLOOR_METAL_001C" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4026" + "plane" "(-216 0 168) (-504 0 168) (-504 128 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4025" + "plane" "(-216 0 160) (-504 0 160) (-504 0 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4024" + "plane" "(-504 0 160) (-504 128 160) (-504 128 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4023" + "plane" "(-216 128 168) (-216 128 160) (-216 0 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 211 236" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13925" + side + { + "id" "4040" + "plane" "(-216 -64 160) (-504 -64 160) (-504 -128 160)" + "material" "METAL/BLACK_FLOOR_METAL_001C" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4039" + "plane" "(-216 -128 168) (-504 -128 168) (-504 -64 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4038" + "plane" "(-504 -128 160) (-504 -64 160) (-504 -64 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4037" + "plane" "(-216 -128 160) (-504 -128 160) (-504 -128 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4036" + "plane" "(-216 -64 168) (-504 -64 168) (-504 -64 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4035" + "plane" "(-216 -64 160) (-216 -128 160) (-216 -128 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 225 134" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13926" + side + { + "id" "4010" + "plane" "(-216 -128 160) (-184 -128 160) (-184 -64 160)" + "material" "METAL/BLACK_FLOOR_METAL_001C" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4009" + "plane" "(-216 -64 168) (-184 -64 168) (-184 -128 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4008" + "plane" "(-184 -64 160) (-184 -128 160) (-184 -128 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4007" + "plane" "(-184 -128 160) (-216 -128 160) (-216 -128 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4006" + "plane" "(-184 -64 168) (-216 -64 168) (-216 -64 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4005" + "plane" "(-216 -128 160) (-216 -64 160) (-216 -64 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 225 134" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13937" + side + { + "id" "4016" + "plane" "(-472 -64 160) (-504 -64 160) (-504 -64 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4015" + "plane" "(-472 2.60048e-005 160) (-504 2.88023e-005 160) (-504 -64 160)" + "material" "METAL/BLACK_FLOOR_METAL_001C" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4014" + "plane" "(-472 -64 168) (-504 -64 168) (-504 2.88023e-005 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4013" + "plane" "(-504 -64 168) (-504 -64 160) (-504 2.88023e-005 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4012" + "plane" "(-472 2.60048e-005 168) (-504 2.88023e-005 168) (-504 2.88023e-005 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4011" + "plane" "(-472 2.60048e-005 160) (-472 -64 160) (-472 -64 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 211 236" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13938" + side + { + "id" "4034" + "plane" "(-216 -64 160) (-472 -64 160) (-472 -64 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4033" + "plane" "(-216 3.62453e-006 160) (-472 2.60048e-005 160) (-472 -64 160)" + "material" "METAL/BLACK_FLOOR_METAL_001C" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4032" + "plane" "(-216 -64 168) (-472 -64 168) (-472 2.60048e-005 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4031" + "plane" "(-216 3.62453e-006 168) (-472 2.60048e-005 168) (-472 2.60048e-005 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4030" + "plane" "(-216 3.62453e-006 160) (-216 -64 160) (-216 -64 168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4029" + "plane" "(-472 -64 168) (-472 -64 160) (-472 2.60048e-005 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 211 236" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13980" + side + { + "id" "4082" + "plane" "(-376 -128 160) (-184 -128 160) (-184 -160 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4081" + "plane" "(-376 -160 160) (-376 -160 -32) (-376 -128 -32)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 640] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4080" + "plane" "(-376 -160 160) (-184 -160 160) (-184 -160 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4079" + "plane" "(-376 -128 -32) (-184 -128 -32) (-184 -128 160)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 640] 0.25" + "rotation" "270" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4078" + "plane" "(-376 -160 -32) (-184 -160 -32) (-184 -128 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4077" + "plane" "(-184 -128 160) (-184 -128 -32) (-184 -160 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 181 110" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "10438" + side + { + "id" "2924" + "plane" "(-88 -64 -64) (-88 -64 64) (-88 -88 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2923" + "plane" "(-88 -88 -64) (-88 -88 64) (-64 -64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2922" + "plane" "(-64 -64 -64) (-88 -64 -64) (-88 -88 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2921" + "plane" "(-64 -64 -64) (-64 -64 64) (-88 -64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2919" + "plane" "(-64 -64 64) (-88 -88 64) (-88 -64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 224 137" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "10442" + side + { + "id" "2936" + "plane" "(-88 64 -80) (-88 64 -64) (-88 -64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2935" + "plane" "(-80 -64 -80) (-64 -64 -64) (-64 64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2934" + "plane" "(-80 -64 -80) (-80 64 -80) (-88 64 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2933" + "plane" "(-80 64 -80) (-64 64 -64) (-88 64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2932" + "plane" "(-88 -64 -80) (-88 -64 -64) (-64 -64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2931" + "plane" "(-64 64 -64) (-64 -64 -64) (-88 -64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 116 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7966" + side + { + "id" "2331" + "plane" "(-576 -192 192) (-576 192 192) (-64 192 192)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2332" + "plane" "(-576 192 -192) (-576 -192 -192) (-64 -192 -192)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2333" + "plane" "(-64 192 -192) (-64 -192 -192) (-64 -192 192)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2334" + "plane" "(-576 -192 -192) (-576 192 -192) (-576 192 192)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2335" + "plane" "(-64 -192 -192) (-576 -192 -192) (-576 -192 192)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2336" + "plane" "(-64 192 192) (-576 192 192) (-576 192 -192)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 184 161" + "visgroupid" "14" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } +} +entity +{ + "id" "19260" + "classname" "prop_static" + "angles" "0 270 90" + "disableshadows" "1" + "drawinfastreflection" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_lab/glass_lightcover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "$strip_skin" + "solid" "6" + "origin" "-184 128 144" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2500 -12768]" + } +} +entity +{ + "id" "19197" + "classname" "prop_static" + "angles" "0 90 90" + "disableshadows" "1" + "drawinfastreflection" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_lab/glass_lightcover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "$strip_skin" + "solid" "6" + "origin" "-440 -160 144" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2500 -12768]" + } +} +entity +{ + "id" "18978" + "classname" "comp_relay" + "ctrl_type" "0" + "ctrl_value" "1" + "delay" "0.0" + "targetname" "@spawn_corridor_rl" + connections + { + "OnTrigger" "info_signinstance:info_panel;SetActive0-1" + } + "origin" "-144 24 -56" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "18980" + "classname" "comp_relay" + "ctrl_type" "0" + "ctrl_value" "1" + "delay" "0.0" + "targetname" "entrance_door_close_rl" + connections + { + "OnTrigger" "camKill2-1" + "OnTrigger" "@entrance_airlock_doorKill2-1" + } + "origin" "-144 -24 -56" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "17673" + "classname" "prop_static" + "angles" "0 270 90" + "disableshadows" "1" + "drawinfastreflection" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_lab/glass_lightcover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "$strip_skin" + "solid" "6" + "origin" "-440 128 -48" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2500 -12768]" + } +} +entity +{ + "id" "17698" + "classname" "prop_static" + "angles" "0 270 90" + "disableshadows" "1" + "drawinfastreflection" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_lab/glass_lightcover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "$strip_skin" + "solid" "6" + "origin" "-216 128 -48" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2500 -12768]" + } +} +entity +{ + "id" "12722" + "classname" "npc_security_camera" + "angles" "0 180 0" + "LookAtPlayerPings" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "spawnflags" "32" + "targetname" "cam" + "TeamPlayerToLookAt" "0" + "TeamToLookAt" "1" + "origin" "-184 -80 112" + editor + { + "color" "0 200 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 2000]" + } +} +entity +{ + "id" "8074" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/bee2/clean/info_sign.vmf" + "targetname" "info_sign" + "origin" "-328 128 -32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "7736" + "classname" "point_teleport" + "angles" "0 0 0" + "model" "models/editor/angle_helper.mdl" + "spawnflags" "0" + "target" "!player" + "targetname" "@player_start_teleport" + "origin" "-152 -1.97053e-006 -56" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "6804" + "classname" "prop_testchamber_door" + "angles" "0 270 0" + "renderamt" "255" + "rendercolor" "255 255 255" + "solid" "6" + "targetname" "@entrance_airlock_door" + connections + { + "OnFullyClosed" "@entrance_door_open_rlTrigger0-1" + "OnOpen" "@entrance_door_open_rlFireUser401" + } + "origin" "-440 -172 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "6820" + "classname" "func_detail" + solid + { + "id" "6821" + side + { + "id" "2144" + "plane" "(-376 -160 43) (-376 -160 128) (-504 -160 128)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2143" + "plane" "(-504 -184 43) (-504 -184 128) (-376 -184 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2142" + "plane" "(-376 -184 128) (-504 -184 128) (-504 -160 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2141" + "plane" "(-376 -160 128) (-376 -160 43) (-376 -184 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2140" + "plane" "(-504 -184 128) (-504 -184 43) (-504 -160 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2139" + "plane" "(-376 -160 43) (-504 -160 43) (-504 -184 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6822" + side + { + "id" "2150" + "plane" "(-491 -160 -53) (-504 -160 -53) (-504 -160 -64)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2149" + "plane" "(-481 -184 -64) (-504 -184 -64) (-504 -184 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2148" + "plane" "(-481 -160 -64) (-504 -160 -64) (-504 -184 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2147" + "plane" "(-504 -184 -53) (-504 -184 -64) (-504 -160 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2146" + "plane" "(-491 -184 -53) (-504 -184 -53) (-504 -160 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2145" + "plane" "(-491 -160 -53) (-481 -160 -64) (-481 -184 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6823" + side + { + "id" "2156" + "plane" "(-399 -160 -64) (-376 -160 -64) (-376 -160 -53)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2155" + "plane" "(-376 -184 -64) (-399 -184 -64) (-389 -184 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2154" + "plane" "(-376 -160 -64) (-399 -160 -64) (-399 -184 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2153" + "plane" "(-376 -160 -53) (-376 -160 -64) (-376 -184 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2152" + "plane" "(-376 -184 -53) (-389 -184 -53) (-389 -160 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2151" + "plane" "(-389 -184 -53) (-399 -184 -64) (-399 -160 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6824" + side + { + "id" "2162" + "plane" "(-383 -160 -42) (-376 -160 -42) (-376 -160 -31)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2161" + "plane" "(-380 -184 -31) (-376 -184 -31) (-376 -184 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2160" + "plane" "(-376 -160 -31) (-376 -160 -42) (-376 -184 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2159" + "plane" "(-376 -184 -31) (-380 -184 -31) (-380 -160 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2158" + "plane" "(-376 -160 -42) (-383 -160 -42) (-383 -184 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2157" + "plane" "(-380 -184 -31) (-383 -184 -42) (-383 -160 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6825" + side + { + "id" "2168" + "plane" "(-406 -160 32) (-376 -160 32) (-376 -160 37)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2167" + "plane" "(-416 -184 37) (-376 -184 37) (-376 -184 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2166" + "plane" "(-376 -160 37) (-376 -160 32) (-376 -184 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2165" + "plane" "(-376 -184 37) (-416 -184 37) (-416 -160 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2164" + "plane" "(-376 -160 32) (-406 -160 32) (-406 -184 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2163" + "plane" "(-406 -160 32) (-416 -160 37) (-416 -184 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6826" + side + { + "id" "2174" + "plane" "(-399 -160 26) (-376 -160 26) (-376 -160 32)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2173" + "plane" "(-406 -184 32) (-376 -184 32) (-376 -184 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2172" + "plane" "(-376 -160 32) (-376 -160 26) (-376 -184 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2171" + "plane" "(-376 -184 32) (-406 -184 32) (-406 -160 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2170" + "plane" "(-376 -160 26) (-399 -160 26) (-399 -184 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2169" + "plane" "(-399 -160 26) (-406 -160 32) (-406 -184 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6827" + side + { + "id" "2180" + "plane" "(-389 -160 15) (-376 -160 15) (-376 -160 26)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2179" + "plane" "(-399 -184 26) (-376 -184 26) (-376 -184 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2178" + "plane" "(-376 -160 26) (-376 -160 15) (-376 -184 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2177" + "plane" "(-376 -184 26) (-399 -184 26) (-399 -160 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2176" + "plane" "(-376 -160 15) (-389 -160 15) (-389 -184 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2175" + "plane" "(-399 -184 26) (-389 -184 15) (-389 -160 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6828" + side + { + "id" "2186" + "plane" "(-491 -160 15) (-504 -160 15) (-504 -160 4.00002)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2185" + "plane" "(-497 -184 4.00002) (-504 -184 4.00002) (-504 -184 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2184" + "plane" "(-504 -184 15) (-504 -184 4.00002) (-504 -160 4.00002)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2183" + "plane" "(-491 -184 15) (-504 -184 15) (-504 -160 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2182" + "plane" "(-497 -160 4.00002) (-504 -160 4.00002) (-504 -184 4.00002)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2181" + "plane" "(-491 -160 15) (-497 -160 4.00002) (-497 -184 4.00002)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6829" + side + { + "id" "2192" + "plane" "(-497 -160 4.00002) (-504 -160 4.00002) (-504 -160 -6.99998)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2191" + "plane" "(-500 -184 -6.99998) (-504 -184 -6.99998) (-504 -184 4.00002)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2190" + "plane" "(-504 -184 4.00002) (-504 -184 -6.99998) (-504 -160 -6.99998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2189" + "plane" "(-497 -184 4.00002) (-504 -184 4.00002) (-504 -160 4.00002)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2188" + "plane" "(-500 -160 -6.99998) (-504 -160 -6.99998) (-504 -184 -6.99998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2187" + "plane" "(-497 -160 4.00002) (-500 -160 -6.99998) (-500 -184 -6.99998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6830" + side + { + "id" "2198" + "plane" "(-500 -160 -6.99998) (-504 -160 -6.99998) (-504 -160 -19)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2197" + "plane" "(-501 -184 -19) (-504 -184 -19) (-504 -184 -6.99998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2196" + "plane" "(-504 -184 -6.99998) (-504 -184 -19) (-504 -160 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2195" + "plane" "(-500 -184 -6.99998) (-504 -184 -6.99998) (-504 -160 -6.99998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2194" + "plane" "(-501 -160 -19) (-504 -160 -19) (-504 -184 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2193" + "plane" "(-500 -160 -6.99998) (-501 -160 -19) (-501 -184 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6831" + side + { + "id" "2204" + "plane" "(-501 -160 -19) (-504 -160 -19) (-504 -160 -31)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2203" + "plane" "(-500 -184 -31) (-504 -184 -31) (-504 -184 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2202" + "plane" "(-504 -184 -19) (-504 -184 -31) (-504 -160 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2201" + "plane" "(-501 -184 -19) (-504 -184 -19) (-504 -160 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2200" + "plane" "(-500 -160 -31) (-504 -160 -31) (-504 -184 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2199" + "plane" "(-501 -160 -19) (-500 -160 -31) (-500 -184 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6832" + side + { + "id" "2210" + "plane" "(-500 -160 -31) (-504 -160 -31) (-504 -160 -42)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2209" + "plane" "(-497 -184 -42) (-504 -184 -42) (-504 -184 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2208" + "plane" "(-504 -184 -31) (-504 -184 -42) (-504 -160 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2207" + "plane" "(-500 -184 -31) (-504 -184 -31) (-504 -160 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2206" + "plane" "(-497 -160 -42) (-504 -160 -42) (-504 -184 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2205" + "plane" "(-500 -160 -31) (-497 -160 -42) (-497 -184 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6833" + side + { + "id" "2216" + "plane" "(-497 -160 -42) (-504 -160 -42) (-504 -160 -53)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2215" + "plane" "(-491 -184 -53) (-504 -184 -53) (-504 -184 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2214" + "plane" "(-504 -184 -42) (-504 -184 -53) (-504 -160 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2213" + "plane" "(-497 -184 -42) (-504 -184 -42) (-504 -160 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2212" + "plane" "(-491 -160 -53) (-504 -160 -53) (-504 -184 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2211" + "plane" "(-497 -160 -42) (-491 -160 -53) (-491 -184 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6834" + side + { + "id" "2222" + "plane" "(-389 -160 -53) (-376 -160 -53) (-376 -160 -42)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2221" + "plane" "(-383 -184 -42) (-376 -184 -42) (-376 -184 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2220" + "plane" "(-376 -160 -42) (-376 -160 -53) (-376 -184 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2219" + "plane" "(-376 -184 -42) (-383 -184 -42) (-383 -160 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2218" + "plane" "(-376 -160 -53) (-389 -160 -53) (-389 -184 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2217" + "plane" "(-383 -184 -42) (-389 -184 -53) (-389 -160 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6835" + side + { + "id" "2228" + "plane" "(-380 -160 -31) (-376 -160 -31) (-376 -160 -19)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2227" + "plane" "(-379 -184 -19) (-376 -184 -19) (-376 -184 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2226" + "plane" "(-376 -160 -19) (-376 -160 -31) (-376 -184 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2225" + "plane" "(-376 -184 -19) (-379 -184 -19) (-379 -160 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2224" + "plane" "(-376 -160 -31) (-380 -160 -31) (-380 -184 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2223" + "plane" "(-379 -184 -19) (-380 -184 -31) (-380 -160 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6836" + side + { + "id" "2234" + "plane" "(-464 -160 37) (-504 -160 37) (-504 -160 32)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2233" + "plane" "(-474 -184 32) (-504 -184 32) (-504 -184 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2232" + "plane" "(-504 -184 37) (-504 -184 32) (-504 -160 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2231" + "plane" "(-464 -184 37) (-504 -184 37) (-504 -160 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2230" + "plane" "(-474 -160 32) (-504 -160 32) (-504 -184 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2229" + "plane" "(-464 -160 37) (-474 -160 32) (-474 -184 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6837" + side + { + "id" "2240" + "plane" "(-474 -160 32) (-504 -160 32) (-504 -160 26)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2239" + "plane" "(-481 -184 26) (-504 -184 26) (-504 -184 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2238" + "plane" "(-504 -184 32) (-504 -184 26) (-504 -160 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2237" + "plane" "(-474 -184 32) (-504 -184 32) (-504 -160 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2236" + "plane" "(-481 -160 26) (-504 -160 26) (-504 -184 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2235" + "plane" "(-474 -160 32) (-481 -160 26) (-481 -184 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6838" + side + { + "id" "2246" + "plane" "(-481 -160 26) (-504 -160 26) (-504 -160 15)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2245" + "plane" "(-491 -184 15) (-504 -184 15) (-504 -184 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2244" + "plane" "(-504 -184 26) (-504 -184 15) (-504 -160 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2243" + "plane" "(-481 -184 26) (-504 -184 26) (-504 -160 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2242" + "plane" "(-491 -160 15) (-504 -160 15) (-504 -184 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2241" + "plane" "(-481 -160 26) (-491 -160 15) (-491 -184 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6839" + side + { + "id" "2252" + "plane" "(-383 -160 4.00002) (-376 -160 4.00002) (-376 -160 15)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2251" + "plane" "(-389 -184 15) (-376 -184 15) (-376 -184 4.00002)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2250" + "plane" "(-376 -160 15) (-376 -160 4.00002) (-376 -184 4.00002)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2249" + "plane" "(-376 -184 15) (-389 -184 15) (-389 -160 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2248" + "plane" "(-376 -160 4.00002) (-383 -160 4.00002) (-383 -184 4.00002)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2247" + "plane" "(-389 -184 15) (-383 -184 4.00002) (-383 -160 4.00002)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6840" + side + { + "id" "2258" + "plane" "(-380 -160 -6.99998) (-376 -160 -6.99998) (-376 -160 4.00002)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2257" + "plane" "(-383 -184 4.00002) (-376 -184 4.00002) (-376 -184 -6.99998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2256" + "plane" "(-376 -160 4.00002) (-376 -160 -6.99998) (-376 -184 -6.99998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2255" + "plane" "(-376 -184 4.00002) (-383 -184 4.00002) (-383 -160 4.00002)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2254" + "plane" "(-376 -160 -6.99998) (-380 -160 -6.99998) (-380 -184 -6.99998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2253" + "plane" "(-383 -184 4.00002) (-380 -184 -6.99998) (-380 -160 -6.99998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6841" + side + { + "id" "2264" + "plane" "(-379 -160 -19) (-376 -160 -19) (-376 -160 -6.99998)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2263" + "plane" "(-380 -184 -6.99998) (-376 -184 -6.99998) (-376 -184 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2262" + "plane" "(-376 -160 -6.99998) (-376 -160 -19) (-376 -184 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2261" + "plane" "(-376 -184 -6.99998) (-380 -184 -6.99998) (-380 -160 -6.99998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2260" + "plane" "(-376 -160 -19) (-379 -160 -19) (-379 -184 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2259" + "plane" "(-380 -184 -6.99998) (-379 -184 -19) (-379 -160 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6842" + side + { + "id" "2270" + "plane" "(-416 -160 37) (-376 -160 37) (-376 -160 43)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2269" + "plane" "(-434 -184 43) (-376 -184 43) (-376 -184 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2268" + "plane" "(-376 -160 43) (-376 -160 37) (-376 -184 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2267" + "plane" "(-376 -160 37) (-416 -160 37) (-416 -184 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2266" + "plane" "(-376 -184 43) (-434 -184 43) (-434 -160 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2265" + "plane" "(-416 -160 37) (-434 -160 43) (-434 -184 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6843" + side + { + "id" "2276" + "plane" "(-446 -160 43) (-504 -160 43) (-504 -160 37)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2275" + "plane" "(-464 -184 37) (-504 -184 37) (-504 -184 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2274" + "plane" "(-504 -184 43) (-504 -184 37) (-504 -160 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2273" + "plane" "(-464 -160 37) (-504 -160 37) (-504 -184 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2272" + "plane" "(-446 -184 43) (-504 -184 43) (-504 -160 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2271" + "plane" "(-446 -160 43) (-464 -160 37) (-464 -184 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 7000]" + } +} +entity +{ + "id" "7407" + "classname" "trigger_once" + "origin" "-344 -88 0" + "solid" "6" + "spawnflags" "4097" + "StartDisabled" "0" + connections + { + "OnTrigger" "@entrance_airlock_doorClose0-1" + "OnTrigger" "info_signinstance:info_panel;SetActive0-1" + } + solid + { + "id" "7402" + side + { + "id" "5090" + "plane" "(-184 -80 64) (-504 -80 64) (-504 -80 -64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5089" + "plane" "(-184 -96 -64) (-504 -96 -64) (-504 -96 64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 32.0039] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5088" + "plane" "(-184 -96 64) (-504 -96 64) (-504 -80 64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 32.0039] 0.25" + "vaxis" "[0 -1 0 0.00120544] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5087" + "plane" "(-184 -80 -64) (-504 -80 -64) (-504 -96 -64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 32.0039] 0.25" + "vaxis" "[0 -1 0 0.00120544] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5086" + "plane" "(-184 -80 64) (-184 -80 -64) (-184 -96 -64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 0 1 0.00320435] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5085" + "plane" "(-504 -96 64) (-504 -96 -64) (-504 -80 -64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 0 -1 -31.8523] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5500]" + } +} +entity +{ + "id" "6011" + "classname" "linked_portal_door" + "angles" "0 90 0" + "height" "64" + "partnername" "@entrance_portal_elevator_side" + "renderamt" "255" + "rendercolor" "255 255 255" + "targetname" "@entrance_portal_chamber_side" + "width" "64" + "origin" "-440 -176 2.28882e-005" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -15768]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_over_small_right.vmf b/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_over_small_right.vmf new file mode 100644 index 0000000000..8eb0a38c4b --- /dev/null +++ b/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_over_small_right.vmf @@ -0,0 +1,5342 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "372" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ + visgroup + { + "name" "Bounds" + "visgroupid" "36" + "color" "219 232 249" + } +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "8" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "372" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_day01_01" + solid + { + "id" "33172" + side + { + "id" "5285" + "plane" "(-280 64 140) (-280 96 140) (-88 96 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5284" + "plane" "(-280 96 128) (-280 64 128) (-88 64 128)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 1 0 640] 0.25" + "vaxis" "[1 0 0 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5283" + "plane" "(-280 64 128) (-280 96 128) (-280 96 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5282" + "plane" "(-88 96 128) (-88 64 128) (-88 64 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5281" + "plane" "(-280 96 128) (-88 96 128) (-88 96 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5280" + "plane" "(-88 64 128) (-280 64 128) (-280 64 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 202 231" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "33215" + side + { + "id" "5351" + "plane" "(-280 64 140) (-152 64 140) (-152 0 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5350" + "plane" "(-280 0 128) (-152 0 128) (-152 64 128)" + "material" "METAL/BLACK_WALL_METAL_002E" + "uaxis" "[0 1 0 768] 0.25" + "vaxis" "[1 0 0 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5349" + "plane" "(-152 0 128) (-280 0 128) (-280 0 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5348" + "plane" "(-280 64 128) (-152 64 128) (-152 64 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5347" + "plane" "(-280 0 128) (-280 64 128) (-280 64 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5346" + "plane" "(-152 64 128) (-152 0 128) (-152 0 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 202 231" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "33216" + side + { + "id" "5357" + "plane" "(-152 64 140) (-88 64 140) (-88 0 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5356" + "plane" "(-152 0 128) (-88 0 128) (-88 64 128)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[0 -1 0 256] 0.25" + "vaxis" "[-1 0 0 416] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5355" + "plane" "(-88 64 128) (-88 0 128) (-88 0 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5354" + "plane" "(-88 0 128) (-152 0 128) (-152 0 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5353" + "plane" "(-152 64 128) (-88 64 128) (-88 64 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5352" + "plane" "(-152 0 128) (-152 64 128) (-152 64 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 202 231" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "33217" + side + { + "id" "5363" + "plane" "(-280 0 140) (-152 0 140) (-152 -64 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5362" + "plane" "(-280 -64 128) (-152 -64 128) (-152 0 128)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[-1 0 0 -864] 0.25" + "vaxis" "[0 1 0 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5361" + "plane" "(-152 -64 128) (-280 -64 128) (-280 -64 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5360" + "plane" "(-280 0 128) (-152 0 128) (-152 0 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5359" + "plane" "(-280 -64 128) (-280 0 128) (-280 0 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5358" + "plane" "(-152 0 128) (-152 -64 128) (-152 -64 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 202 231" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "33218" + side + { + "id" "5369" + "plane" "(-152 0 140) (-88 0 140) (-88 -128 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5368" + "plane" "(-152 -128 128) (-88 -128 128) (-88 0 128)" + "material" "METAL/BLACK_WALL_METAL_002E" + "uaxis" "[-1 0 0 -352] 0.25" + "vaxis" "[0 1 0 512] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5367" + "plane" "(-88 0 128) (-88 -128 128) (-88 -128 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5366" + "plane" "(-88 -128 128) (-152 -128 128) (-152 -128 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5365" + "plane" "(-152 0 128) (-88 0 128) (-88 0 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5364" + "plane" "(-152 -128 128) (-152 0 128) (-152 0 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 202 231" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "33239" + side + { + "id" "5382" + "plane" "(-280 -64 140) (-152 -64 140) (-152 -128 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5383" + "plane" "(-280 -128 128) (-152 -128 128) (-152 -64 128)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 1 0 640] 0.25" + "vaxis" "[1 0 0 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5384" + "plane" "(-280 -64 140) (-280 -128 140) (-280 -128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5385" + "plane" "(-152 -64 128) (-152 -128 128) (-152 -128 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5386" + "plane" "(-152 -64 140) (-280 -64 140) (-280 -64 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5387" + "plane" "(-152 -128 128) (-280 -128 128) (-280 -128 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 241 130" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "33264" + side + { + "id" "5393" + "plane" "(-296 64 -64) (-296 0 -64) (-280 0 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5392" + "plane" "(-296 0 -64) (-296 64 -64) (-296 64 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5391" + "plane" "(-280 64 -64) (-280 0 -64) (-280 0 0)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[0 1 0 -256] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5390" + "plane" "(-296 64 -64) (-280 64 -64) (-280 64 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5389" + "plane" "(-280 0 -64) (-296 0 -64) (-296 0 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5388" + "plane" "(-296 0 0) (-296 64 0) (-280 64 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 168 253" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "33265" + side + { + "id" "5399" + "plane" "(-296 0 128) (-296 64 128) (-280 64 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5398" + "plane" "(-296 64 0) (-296 64 128) (-296 0 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5397" + "plane" "(-280 0 0) (-280 0 128) (-280 64 128)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[0 1 0 -256] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5396" + "plane" "(-280 64 0) (-280 64 128) (-296 64 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5395" + "plane" "(-296 0 0) (-296 0 128) (-280 0 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5394" + "plane" "(-296 64 0) (-296 0 0) (-280 0 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 168 253" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "33271" + side + { + "id" "5411" + "plane" "(-296 0 -64) (-296 -64 -64) (-280 -64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5410" + "plane" "(-296 -64 -64) (-296 -0 -64) (-296 -0 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5409" + "plane" "(-280 -0 64) (-280 0 -64) (-280 -64 -64)" + "material" "METAL/BLACK_WALL_METAL_002E" + "uaxis" "[0 1 0 768] 0.25" + "vaxis" "[0 0 1 768] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5408" + "plane" "(-296 0 64) (-296 0 -64) (-280 0 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5407" + "plane" "(-296 -64 64) (-296 -0 64) (-280 0 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5406" + "plane" "(-280 -64 64) (-280 -64 -64) (-296 -64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 168 253" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "33278" + side + { + "id" "5423" + "plane" "(-296 128 64) (-296 64 64) (-280 64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5422" + "plane" "(-296 64 128) (-296 128 128) (-280 128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5421" + "plane" "(-296 64 64) (-296 128 64) (-296 128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5420" + "plane" "(-280 128 64) (-280 64 64) (-280 64 128)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[0 1 0 -256] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "270" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5419" + "plane" "(-280 64 64) (-296 64 64) (-296 64 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5418" + "plane" "(-296 128 64) (-280 128 64) (-280 128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 150 175" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "33297" + side + { + "id" "5441" + "plane" "(-280 128 128) (-280 144 128) (-216 144 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5440" + "plane" "(-280 144 64) (-280 144 128) (-280 128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5439" + "plane" "(-216 128 64) (-216 128 128) (-216 144 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 45] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5438" + "plane" "(-280 128 64) (-280 128 128) (-216 128 128)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[-1 0 0 -864] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5437" + "plane" "(-216 144 64) (-216 144 128) (-280 144 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5436" + "plane" "(-280 144 64) (-280 128 64) (-216 128 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 240 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "33298" + side + { + "id" "5447" + "plane" "(-280 128 64) (-280 128 0) (-280 144 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5446" + "plane" "(-216 144 64) (-216 144 0) (-216 128 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 45] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5445" + "plane" "(-216 128 64) (-216 128 0) (-280 128 0)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 736] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5444" + "plane" "(-280 144 64) (-280 144 0) (-216 144 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5443" + "plane" "(-280 128 64) (-280 144 64) (-216 144 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5442" + "plane" "(-280 144 0) (-280 128 0) (-216 128 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 240 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "33299" + side + { + "id" "5453" + "plane" "(-280 144 -64) (-280 128 -64) (-216 128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5452" + "plane" "(-280 128 0) (-280 128 -64) (-280 144 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5451" + "plane" "(-216 144 0) (-216 144 -64) (-216 128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 45] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5450" + "plane" "(-216 128 0) (-216 128 -64) (-280 128 -64)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[-1 0 0 -864] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5449" + "plane" "(-280 144 0) (-280 144 -64) (-216 144 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5448" + "plane" "(-280 128 0) (-280 144 0) (-216 144 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 240 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "33337" + side + { + "id" "5627" + "plane" "(-296 -64 -64) (-296 -128 -64) (-280 -128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5626" + "plane" "(-296 -128 0) (-296 -128 -64) (-296 -64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5625" + "plane" "(-280 -64 -64) (-280 -128 -64) (-280 -128 0)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 1 0 128] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5624" + "plane" "(-280 -128 0) (-280 -128 -64) (-296 -128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5623" + "plane" "(-296 -64 0) (-296 -64 -64) (-280 -64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5622" + "plane" "(-296 -128 0) (-296 -64 0) (-280 -64 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 168 253" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "33338" + side + { + "id" "5633" + "plane" "(-296 -128 64) (-296 -128 0) (-296 -64 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5632" + "plane" "(-280 -128 0) (-280 -128 64) (-280 -64 64)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[0 1 0 -256] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5631" + "plane" "(-280 -128 64) (-280 -128 0) (-296 -128 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5630" + "plane" "(-296 -128 64) (-296 -64 64) (-280 -64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5629" + "plane" "(-296 -64 64) (-296 -64 0) (-280 -64 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5628" + "plane" "(-296 -64 0) (-296 -128 0) (-280 -128 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 168 253" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "32957" + side + { + "id" "5177" + "plane" "(-152 128 140) (-88 128 140) (-88 96 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5176" + "plane" "(-152 96 128) (-88 96 128) (-88 128 128)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 1 0 640] 0.25" + "vaxis" "[1 0 0 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5175" + "plane" "(-88 128 128) (-88 96 128) (-88 96 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5174" + "plane" "(-152 128 128) (-88 128 128) (-88 128 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5173" + "plane" "(-88 96 128) (-152 96 128) (-152 96 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5172" + "plane" "(-152 96 128) (-152 128 128) (-152 128 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 202 231" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "33078" + side + { + "id" "5190" + "plane" "(-280 144 140) (-152 144 140) (-152 128 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5191" + "plane" "(-280 128 128) (-152 128 128) (-152 144 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5192" + "plane" "(-280 144 140) (-280 128 140) (-280 128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5193" + "plane" "(-152 144 128) (-152 128 128) (-152 128 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5194" + "plane" "(-152 144 140) (-280 144 140) (-280 144 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5195" + "plane" "(-152 128 128) (-280 128 128) (-280 128 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 159 160" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "33080" + side + { + "id" "5196" + "plane" "(-280 128 140) (-280 128 148) (-280 96 148)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5197" + "plane" "(-152 96 140) (-152 96 148) (-152 128 148)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5198" + "plane" "(-280 128 140) (-280 96 140) (-152 96 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5199" + "plane" "(-152 128 148) (-152 96 148) (-280 96 148)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5200" + "plane" "(-280 128 148) (-280 128 140) (-152 128 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -32] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5201" + "plane" "(-152 96 148) (-152 96 140) (-280 96 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -32] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 243 172" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "33081" + side + { + "id" "5202" + "plane" "(-296 128 140) (-280 128 140) (-280 96 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5203" + "plane" "(-296 96 128) (-280 96 128) (-280 128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5204" + "plane" "(-296 128 140) (-296 96 140) (-296 96 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5205" + "plane" "(-280 128 128) (-280 96 128) (-280 96 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5206" + "plane" "(-280 128 140) (-296 128 140) (-296 128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5207" + "plane" "(-280 96 128) (-296 96 128) (-296 96 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 133 158" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "32321" + side + { + "id" "5027" + "plane" "(-296 -128 96) (-296 -128 64) (-296 0 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5026" + "plane" "(-280 0 96) (-280 0 64) (-280 -128 64)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 1 0 128] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5025" + "plane" "(-280 -128 96) (-280 -128 64) (-296 -128 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5024" + "plane" "(-296 0 96) (-296 0 64) (-280 0 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5023" + "plane" "(-296 0 64) (-296 -128 64) (-280 -128 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5022" + "plane" "(-296 -128 96) (-296 0 96) (-280 0 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 168 253" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "32393" + side + { + "id" "5052" + "plane" "(-292 -128 128) (-292 -128 96) (-296 -128 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5053" + "plane" "(-296 0 128) (-296 0 96) (-292 0 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5054" + "plane" "(-296 -128 128) (-296 -128 96) (-296 0 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5055" + "plane" "(-292 0 128) (-292 0 96) (-292 -128 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5056" + "plane" "(-292 -128 128) (-296 -128 128) (-296 0 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5057" + "plane" "(-292 0 96) (-296 0 96) (-296 -128 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 213 246" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "32394" + side + { + "id" "5058" + "plane" "(-280 -128 136) (-280 -128 128) (-292 -128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5059" + "plane" "(-292 0 136) (-292 0 128) (-280 0 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5060" + "plane" "(-292 -128 136) (-292 -128 128) (-292 0 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -48] 0.25" + "vaxis" "[0 1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5061" + "plane" "(-280 0 136) (-280 0 128) (-280 -128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -48] 0.25" + "vaxis" "[0 1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5062" + "plane" "(-280 -128 136) (-292 -128 136) (-292 0 136)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5063" + "plane" "(-280 0 128) (-292 0 128) (-292 -128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 123 252" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "32395" + side + { + "id" "5064" + "plane" "(-292 -152 128) (-292 -128 128) (-280 -128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5065" + "plane" "(-292 -128 96) (-292 -152 96) (-280 -152 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5066" + "plane" "(-292 -152 96) (-292 -128 96) (-292 -128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5067" + "plane" "(-280 -128 96) (-280 -152 96) (-280 -152 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5068" + "plane" "(-292 -128 96) (-280 -128 96) (-280 -128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5069" + "plane" "(-280 -152 96) (-292 -152 96) (-292 -152 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 161 138" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "32412" + side + { + "id" "5087" + "plane" "(-120 128 128) (-120 140 128) (-88 140 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5086" + "plane" "(-120 140 96) (-120 140 128) (-120 128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 45] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5085" + "plane" "(-88 128 96) (-88 128 128) (-88 140 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5084" + "plane" "(-120 128 96) (-120 128 128) (-88 128 128)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 352] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5083" + "plane" "(-88 140 96) (-88 140 128) (-120 140 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5082" + "plane" "(-120 140 96) (-120 128 96) (-88 128 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 254 179" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "32413" + side + { + "id" "5093" + "plane" "(-120 144 -64) (-120 128 -64) (-88 128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5092" + "plane" "(-120 128 -32) (-120 128 -64) (-120 144 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 45] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5091" + "plane" "(-88 144 -32) (-88 144 -64) (-88 128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5090" + "plane" "(-88 128 -32) (-88 128 -64) (-120 128 -64)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 352] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5089" + "plane" "(-120 144 -32) (-120 144 -64) (-88 144 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5088" + "plane" "(-120 128 -32) (-120 144 -32) (-88 144 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 254 179" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "32896" + side + { + "id" "5118" + "plane" "(-120 144 96) (-88 144 96) (-88 140 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5119" + "plane" "(-120 140 -32) (-88 140 -32) (-88 144 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5120" + "plane" "(-120 144 96) (-120 140 96) (-120 140 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5121" + "plane" "(-88 144 -32) (-88 140 -32) (-88 140 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5122" + "plane" "(-88 144 96) (-120 144 96) (-120 144 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5123" + "plane" "(-88 140 -32) (-120 140 -32) (-120 140 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 149 110" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "32897" + side + { + "id" "5124" + "plane" "(-88 128 96) (-88 144 96) (-80 144 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5125" + "plane" "(-88 144 -32) (-88 128 -32) (-80 128 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5126" + "plane" "(-88 128 -32) (-88 144 -32) (-88 144 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5127" + "plane" "(-80 144 -32) (-80 128 -32) (-80 128 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5128" + "plane" "(-88 144 -32) (-80 144 -32) (-80 144 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5129" + "plane" "(-80 128 -32) (-88 128 -32) (-88 128 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 211 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "32909" + side + { + "id" "5130" + "plane" "(-124 132 96) (-124 144 96) (-120 144 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5131" + "plane" "(-124 144 -32) (-124 132 -32) (-120 132 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5132" + "plane" "(-124 132 -32) (-124 144 -32) (-124 144 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5133" + "plane" "(-120 144 -32) (-120 132 -32) (-120 132 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5134" + "plane" "(-124 144 -32) (-120 144 -32) (-120 144 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5135" + "plane" "(-120 132 -32) (-124 132 -32) (-124 132 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 129 106" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "27392" + side + { + "id" "4441" + "plane" "(-248 -128 -72) (-120 -128 -72) (-120 -128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4440" + "plane" "(-120 -152 -72) (-248 -152 -72) (-248 -152 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4439" + "plane" "(-120 -128 -72) (-248 -128 -72) (-248 -152 -72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4438" + "plane" "(-120 -152 -64) (-248 -152 -64) (-248 -128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -8] 0.25" + "vaxis" "[-1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4437" + "plane" "(-120 -128 -64) (-120 -128 -72) (-120 -152 -72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 32] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4436" + "plane" "(-248 -152 -64) (-248 -152 -72) (-248 -128 -72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 240 185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "27256" + side + { + "id" "4412" + "plane" "(-64 64 64) (-72 64 64) (-72 72 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4411" + "plane" "(-72 72 -64) (-72 64 -64) (-64 64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4410" + "plane" "(-72 64 -64) (-72 72 -64) (-72 72 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4409" + "plane" "(-64 64 -64) (-72 64 -64) (-72 64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4408" + "plane" "(-64 64 64) (-72 72 64) (-72 72 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0.707107 -0.707107 0 54.3518] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 240 185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "27257" + side + { + "id" "4417" + "plane" "(-72 -72 64) (-72 -64 64) (-64 -64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4416" + "plane" "(-64 -64 -64) (-72 -64 -64) (-72 -72 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4415" + "plane" "(-64 -64 64) (-72 -64 64) (-72 -64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4414" + "plane" "(-72 -72 -64) (-72 -64 -64) (-72 -64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4413" + "plane" "(-64 -64 -64) (-72 -72 -64) (-72 -72 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-0.707107 -0.707107 0 53.0194] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 240 185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "27269" + side + { + "id" "4429" + "plane" "(-88 64 -80) (-80 64 -80) (-64 64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4428" + "plane" "(-88 -64 -64) (-64 -64 -64) (-80 -64 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 0 1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4427" + "plane" "(-88 -64 -80) (-88 64 -80) (-88 64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4426" + "plane" "(-88 -64 -64) (-88 64 -64) (-64 64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -40] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4425" + "plane" "(-80 64 -80) (-80 -64 -80) (-64 -64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0.707107 0 0.707107 54.3518] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4424" + "plane" "(-88 64 -80) (-88 -64 -80) (-80 -64 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 240 185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13756" + side + { + "id" "3369" + "plane" "(-72 64 128) (-88 64 128) (-88 64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3370" + "plane" "(-72 -64 64) (-88 -64 64) (-88 -64 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3371" + "plane" "(-72 64 64) (-88 64 64) (-88 -64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3372" + "plane" "(-72 -64 128) (-88 -64 128) (-88 64 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3373" + "plane" "(-72 64 128) (-72 64 64) (-72 -64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3374" + "plane" "(-88 -64 128) (-88 -64 64) (-88 64 64)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[0 -1 0 512] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 240 185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13763" + side + { + "id" "3391" + "plane" "(-72 64 72) (-72 64 64) (-64 64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3390" + "plane" "(-64 -64 64) (-72 -64 64) (-72 -64 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3389" + "plane" "(-64 64 64) (-72 64 64) (-72 -64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3388" + "plane" "(-72 -64 72) (-72 -64 64) (-72 64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3387" + "plane" "(-64 -64 64) (-72 -64 72) (-72 64 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-0.707107 0 0.707107 53.0194] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 240 185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13764" + side + { + "id" "3403" + "plane" "(-72 128 128) (-88 128 128) (-88 128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3402" + "plane" "(-72 64 -64) (-88 64 -64) (-88 64 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3401" + "plane" "(-72 128 -64) (-88 128 -64) (-88 64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3400" + "plane" "(-72 64 128) (-88 64 128) (-88 128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3399" + "plane" "(-72 128 128) (-72 128 -64) (-72 64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3398" + "plane" "(-88 64 128) (-88 64 -64) (-88 128 -64)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[0 -1 0 512] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 240 185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13775" + side + { + "id" "3415" + "plane" "(-88 -64 -64) (-72 -64 -64) (-72 -64 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3414" + "plane" "(-72 -128 -64) (-88 -128 -64) (-88 -128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3413" + "plane" "(-72 -64 -64) (-88 -64 -64) (-88 -128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 36.5714] 0.21875" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3412" + "plane" "(-72 -128 128) (-88 -128 128) (-88 -64 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -36.5714] 0.21875" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3411" + "plane" "(-72 -64 128) (-72 -64 -64) (-72 -128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 36.5714] 0.21875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3410" + "plane" "(-88 -128 128) (-88 -128 -64) (-88 -64 -64)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[0 -1 0 512] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 240 185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13864" + side + { + "id" "3463" + "plane" "(-120 -128 -64) (-88 -128 -64) (-88 -128 64)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 544] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3462" + "plane" "(-88 -152 -64) (-120 -152 -64) (-120 -152 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3461" + "plane" "(-88 -128 -64) (-120 -128 -64) (-120 -152 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3460" + "plane" "(-88 -152 64) (-120 -152 64) (-120 -128 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3459" + "plane" "(-88 -128 64) (-88 -128 -64) (-88 -152 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3458" + "plane" "(-120 -152 64) (-120 -152 -64) (-120 -128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 240 185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13868" + side + { + "id" "3487" + "plane" "(-248 -152 -64) (-120 -152 -64) (-120 -152 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3486" + "plane" "(-120 -160 -64) (-248 -160 -64) (-248 -160 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3485" + "plane" "(-120 -152 -64) (-248 -152 -64) (-248 -160 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3484" + "plane" "(-120 -160 64) (-248 -160 64) (-248 -152 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3483" + "plane" "(-120 -152 64) (-120 -152 -64) (-120 -160 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3482" + "plane" "(-248 -160 64) (-248 -160 -64) (-248 -152 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 240 185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "13886" + side + { + "id" "4973" + "plane" "(-280 -128 64) (-88 -128 64) (-88 -128 128)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[-1 0 0 -864] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4972" + "plane" "(-88 -152 64) (-280 -152 64) (-280 -152 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4971" + "plane" "(-88 -128 64) (-280 -128 64) (-280 -152 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 53.3333] 0.15" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4970" + "plane" "(-88 -152 128) (-280 -152 128) (-280 -128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -53.3333] 0.15" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4969" + "plane" "(-88 -128 128) (-88 -128 64) (-88 -152 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 53.3333] 0.15" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4968" + "plane" "(-280 -152 128) (-280 -152 64) (-280 -128 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 53.3333] 0.15" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 107 224" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14308" + side + { + "id" "4979" + "plane" "(-280 -128 -64) (-280 -152 -64) (-248 -152 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4978" + "plane" "(-280 -152 64) (-280 -128 64) (-248 -128 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4977" + "plane" "(-280 -152 -64) (-280 -128 -64) (-280 -128 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4976" + "plane" "(-248 -128 -64) (-248 -152 -64) (-248 -152 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4975" + "plane" "(-248 -152 -64) (-280 -152 -64) (-280 -152 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4974" + "plane" "(-280 -128 -64) (-248 -128 -64) (-248 -128 64)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 544] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 117 114" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "14342" + side + { + "id" "3613" + "plane" "(-280 128 -80) (-88 128 -80) (-88 128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3612" + "plane" "(-88 -128 -80) (-280 -128 -80) (-280 -128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3611" + "plane" "(-88 128 -80) (-280 128 -80) (-280 -128 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3610" + "plane" "(-88 -128 -64) (-280 -128 -64) (-280 128 -64)" + "material" "METAL/BLACK_FLOOR_METAL_001C" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3609" + "plane" "(-88 128 -64) (-88 128 -80) (-88 -128 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3608" + "plane" "(-280 -128 -64) (-280 -128 -80) (-280 128 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 240 185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + hidden + { + solid + { + "id" "7966" + side + { + "id" "2331" + "plane" "(-576 -192 192) (-576 192 192) (-64 192 192)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2332" + "plane" "(-576 192 -192) (-576 -192 -192) (-64 -192 -192)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2333" + "plane" "(-64 192 -192) (-64 -192 -192) (-64 -192 192)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2334" + "plane" "(-576 -192 -192) (-576 192 -192) (-576 192 192)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2335" + "plane" "(-64 -192 -192) (-576 -192 -192) (-576 -192 192)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2336" + "plane" "(-64 192 192) (-576 192 192) (-576 192 -192)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 184 161" + "visgroupid" "36" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + solid + { + "id" "15061" + side + { + "id" "3829" + "plane" "(-296 128 -64) (-296 64 -64) (-280 64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3828" + "plane" "(-296 64 64) (-296 128 64) (-280 128 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3827" + "plane" "(-296 64 -64) (-296 128 -64) (-296 128 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3826" + "plane" "(-280 128 -64) (-280 64 -64) (-280 64 64)" + "material" "METAL/BLACK_WALL_METAL_002E" + "uaxis" "[0 1 0 768] 0.25" + "vaxis" "[0 0 1 768] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3825" + "plane" "(-280 64 -64) (-296 64 -64) (-296 64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3824" + "plane" "(-296 128 -64) (-280 128 -64) (-280 128 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 150 175" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } +} +entity +{ + "id" "32962" + "classname" "prop_static" + "angles" "90 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props_lab/glass_lightcover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "$strip_skin" + "solid" "6" + "origin" "-216 112 128" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "32329" + "classname" "prop_static" + "angles" "0 0 -90" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props_lab/glass_lightcover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "$strip_skin" + "solid" "6" + "origin" "-280 -64 112" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "32423" + "classname" "prop_static" + "angles" "0 270 180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props_lab/glass_lightcover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "$strip_skin" + "solid" "6" + "origin" "-104 128 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "32275" + "classname" "comp_relay" + "ctrl_type" "0" + "ctrl_value" "1" + "delay" "0.0" + "targetname" "entrance_door_close_rl" + connections + { + "OnTrigger" "@entrance_airlock_doorKill2-1" + } + "origin" "-136 -24 -56" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "32277" + "classname" "comp_relay" + "ctrl_type" "0" + "ctrl_value" "1" + "delay" "0.0" + "targetname" "@spawn_corridor_rl" + connections + { + "OnTrigger" "info_signinstance:info_panel;SetActive0-1" + } + "origin" "-136 24 -56" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "8074" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/bee2/clean/info_sign.vmf" + "targetname" "info_sign" + "origin" "-168 128 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "7736" + "classname" "point_teleport" + "angles" "0 0 0" + "model" "models/editor/angle_helper.mdl" + "target" "!player" + "targetname" "@player_start_teleport" + "origin" "-160 -1.65299e-005 -44" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "6804" + "classname" "prop_testchamber_door" + "angles" "0 270 0" + "renderamt" "255" + "rendercolor" "255 255 255" + "solid" "6" + "targetname" "@entrance_airlock_door" + connections + { + "OnFullyClosed" "@entrance_door_open_rlTrigger0-1" + "OnOpen" "@wp_hole_3_chamOpen0-1" + } + "origin" "-184 -140 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "6820" + "classname" "func_detail" + solid + { + "id" "6821" + side + { + "id" "2144" + "plane" "(-120 -128 43) (-120 -128 64) (-248 -128 64)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 544] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2143" + "plane" "(-248 -152 43) (-248 -152 64) (-120 -152 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2142" + "plane" "(-120 -152 64) (-248 -152 64) (-248 -128 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2141" + "plane" "(-120 -128 64) (-120 -128 43) (-120 -152 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2140" + "plane" "(-248 -152 64) (-248 -152 43) (-248 -128 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2139" + "plane" "(-120 -128 43) (-248 -128 43) (-248 -152 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6822" + side + { + "id" "2150" + "plane" "(-248 -128 -53) (-248 -128 -64) (-225 -128 -64)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 544] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2149" + "plane" "(-225 -152 -64) (-248 -152 -64) (-248 -152 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2148" + "plane" "(-225 -128 -64) (-248 -128 -64) (-248 -152 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2147" + "plane" "(-248 -152 -53) (-248 -152 -64) (-248 -128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2146" + "plane" "(-235 -152 -53) (-248 -152 -53) (-248 -128 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2145" + "plane" "(-235 -128 -53) (-225 -128 -64) (-225 -152 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.672673 0 0.73994 18.9501] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6823" + side + { + "id" "2156" + "plane" "(-143 -128 -64) (-120 -128 -64) (-120 -128 -53)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 544] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2155" + "plane" "(-120 -152 -53) (-120 -152 -64) (-143 -152 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2154" + "plane" "(-120 -128 -64) (-143 -128 -64) (-143 -152 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2153" + "plane" "(-120 -128 -53) (-120 -128 -64) (-120 -152 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2152" + "plane" "(-120 -152 -53) (-133 -152 -53) (-133 -128 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2151" + "plane" "(-133 -152 -53) (-143 -152 -64) (-143 -128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.672673 0 -0.73994 -39.8991] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6824" + side + { + "id" "2162" + "plane" "(-127 -128 -42) (-120 -128 -42) (-120 -128 -31)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 544] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2161" + "plane" "(-120 -152 -31) (-120 -152 -42) (-127 -152 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2160" + "plane" "(-120 -128 -31) (-120 -128 -42) (-120 -152 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2159" + "plane" "(-120 -152 -31) (-124 -152 -31) (-124 -128 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2158" + "plane" "(-120 -128 -42) (-127 -128 -42) (-127 -152 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2157" + "plane" "(-124 -152 -31) (-127 -152 -42) (-127 -128 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.263117 0 -0.964764 -46.5598] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6825" + side + { + "id" "2168" + "plane" "(-150 -128 32) (-120 -128 32) (-120 -128 37)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 544] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2167" + "plane" "(-120 -152 37) (-120 -152 32) (-150 -152 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2166" + "plane" "(-120 -128 37) (-120 -128 32) (-120 -152 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2165" + "plane" "(-120 -152 37) (-160 -152 37) (-160 -128 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2164" + "plane" "(-120 -128 32) (-150 -128 32) (-150 -152 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2163" + "plane" "(-150 -128 32) (-160 -128 37) (-160 -152 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-0.894427 0 0.447214 47.1085] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6826" + side + { + "id" "2174" + "plane" "(-143 -128 26) (-120 -128 26) (-120 -128 32)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 544] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2173" + "plane" "(-120 -152 32) (-120 -152 26) (-143 -152 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2172" + "plane" "(-120 -128 32) (-120 -128 26) (-120 -152 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2171" + "plane" "(-120 -152 32) (-150 -152 32) (-150 -128 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2170" + "plane" "(-120 -128 26) (-143 -128 26) (-143 -152 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2169" + "plane" "(-143 -128 26) (-150 -128 32) (-150 -152 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-0.759257 0 0.650791 30.8987] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6827" + side + { + "id" "2180" + "plane" "(-133 -128 15) (-120 -128 15) (-120 -128 26)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 544] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2179" + "plane" "(-120 -152 26) (-120 -152 15) (-133 -152 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2178" + "plane" "(-120 -128 26) (-120 -128 15) (-120 -152 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2177" + "plane" "(-120 -152 26) (-143 -152 26) (-143 -128 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2176" + "plane" "(-120 -128 15) (-133 -128 15) (-133 -152 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2175" + "plane" "(-143 -152 26) (-133 -152 15) (-133 -128 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.672673 0 -0.73994 -18.9501] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6828" + side + { + "id" "2186" + "plane" "(-248 -128 15) (-248 -128 4) (-241 -128 4)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 544] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2185" + "plane" "(-241 -152 4) (-248 -152 4) (-248 -152 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2184" + "plane" "(-248 -152 15) (-248 -152 4) (-248 -128 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2183" + "plane" "(-235 -152 15) (-248 -152 15) (-248 -128 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2182" + "plane" "(-241 -128 4) (-248 -128 4) (-248 -152 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2181" + "plane" "(-235 -128 15) (-241 -128 4) (-241 -152 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.478852 0 0.877895 17.4178] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6829" + side + { + "id" "2192" + "plane" "(-248 -128 4) (-248 -128 -7) (-244 -128 -7)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 544] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2191" + "plane" "(-244 -152 -7) (-248 -152 -7) (-248 -152 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2190" + "plane" "(-248 -152 4) (-248 -152 -7) (-248 -128 -7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2189" + "plane" "(-241 -152 4) (-248 -152 4) (-248 -128 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2188" + "plane" "(-244 -128 -7) (-248 -128 -7) (-248 -152 -7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2187" + "plane" "(-241 -128 4) (-244 -128 -7) (-244 -152 -7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.263117 0 0.964764 46.5598] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6830" + side + { + "id" "2198" + "plane" "(-248 -128 -7) (-248 -128 -19) (-245 -128 -19)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 544] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2197" + "plane" "(-245 -152 -19) (-248 -152 -19) (-248 -152 -7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2196" + "plane" "(-248 -152 -7) (-248 -152 -19) (-248 -128 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2195" + "plane" "(-244 -152 -7) (-248 -152 -7) (-248 -128 -7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2194" + "plane" "(-245 -128 -19) (-248 -128 -19) (-248 -152 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2193" + "plane" "(-244 -128 -7) (-245 -128 -19) (-245 -152 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.0830455 0 0.996546 60.4583] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6831" + side + { + "id" "2204" + "plane" "(-248 -128 -19) (-248 -128 -31) (-244 -128 -31)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 544] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2203" + "plane" "(-244 -152 -31) (-248 -152 -31) (-248 -152 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2202" + "plane" "(-248 -152 -19) (-248 -152 -31) (-248 -128 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2201" + "plane" "(-245 -152 -19) (-248 -152 -19) (-248 -128 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2200" + "plane" "(-244 -128 -31) (-248 -128 -31) (-248 -152 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2199" + "plane" "(-245 -128 -19) (-244 -128 -31) (-244 -152 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.0830455 0 0.996546 1.77322] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6832" + side + { + "id" "2210" + "plane" "(-248 -128 -31) (-248 -128 -42) (-241 -128 -42)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 544] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2209" + "plane" "(-241 -152 -42) (-248 -152 -42) (-248 -152 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2208" + "plane" "(-248 -152 -31) (-248 -152 -42) (-248 -128 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2207" + "plane" "(-244 -152 -31) (-248 -152 -31) (-248 -128 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2206" + "plane" "(-241 -128 -42) (-248 -128 -42) (-248 -152 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2205" + "plane" "(-244 -128 -31) (-241 -128 -42) (-241 -152 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.263117 0 0.964764 63.3993] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6833" + side + { + "id" "2216" + "plane" "(-248 -128 -42) (-248 -128 -53) (-235 -128 -53)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 544] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2215" + "plane" "(-235 -152 -53) (-248 -152 -53) (-248 -152 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2214" + "plane" "(-248 -152 -42) (-248 -152 -53) (-248 -128 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2213" + "plane" "(-241 -152 -42) (-248 -152 -42) (-248 -128 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2212" + "plane" "(-235 -128 -53) (-248 -128 -53) (-248 -152 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2211" + "plane" "(-241 -128 -42) (-235 -128 -53) (-235 -152 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.478852 0 0.877895 48.0644] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6834" + side + { + "id" "2222" + "plane" "(-133 -128 -53) (-120 -128 -53) (-120 -128 -42)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 544] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2221" + "plane" "(-120 -152 -42) (-120 -152 -53) (-133 -152 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2220" + "plane" "(-120 -128 -42) (-120 -128 -53) (-120 -152 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2219" + "plane" "(-120 -152 -42) (-127 -152 -42) (-127 -128 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2218" + "plane" "(-120 -128 -53) (-133 -128 -53) (-133 -152 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2217" + "plane" "(-127 -152 -42) (-133 -152 -53) (-133 -128 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.478852 0 -0.877895 -17.4178] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6835" + side + { + "id" "2228" + "plane" "(-124 -128 -31) (-120 -128 -31) (-120 -128 -19)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 544] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2227" + "plane" "(-120 -152 -19) (-120 -152 -31) (-124 -152 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2226" + "plane" "(-120 -128 -19) (-120 -128 -31) (-120 -152 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2225" + "plane" "(-120 -152 -19) (-123 -152 -19) (-123 -128 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2224" + "plane" "(-120 -128 -31) (-124 -128 -31) (-124 -152 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2223" + "plane" "(-123 -152 -19) (-124 -152 -31) (-124 -128 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.0830455 0 -0.996546 -60.4583] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6836" + side + { + "id" "2234" + "plane" "(-248 -128 37) (-248 -128 32) (-218 -128 32)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 544] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2233" + "plane" "(-218 -152 32) (-248 -152 32) (-248 -152 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2232" + "plane" "(-248 -152 37) (-248 -152 32) (-248 -128 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2231" + "plane" "(-208 -152 37) (-248 -152 37) (-248 -128 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2230" + "plane" "(-218 -128 32) (-248 -128 32) (-248 -152 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2229" + "plane" "(-208 -128 37) (-218 -128 32) (-218 -152 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-0.894427 0 -0.447214 -53.8651] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6837" + side + { + "id" "2240" + "plane" "(-248 -128 32) (-248 -128 26) (-225 -128 26)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 544] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2239" + "plane" "(-225 -152 26) (-248 -152 26) (-248 -152 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2238" + "plane" "(-248 -152 32) (-248 -152 26) (-248 -128 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2237" + "plane" "(-218 -152 32) (-248 -152 32) (-248 -128 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2236" + "plane" "(-225 -128 26) (-248 -128 26) (-248 -152 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2235" + "plane" "(-218 -128 32) (-225 -128 26) (-225 -152 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-0.759258 0 -0.65079 -46.306] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6838" + side + { + "id" "2246" + "plane" "(-248 -128 26) (-248 -128 15) (-235 -128 15)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 544] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2245" + "plane" "(-235 -152 15) (-248 -152 15) (-248 -152 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2244" + "plane" "(-248 -152 26) (-248 -152 15) (-248 -128 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2243" + "plane" "(-225 -152 26) (-248 -152 26) (-248 -128 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2242" + "plane" "(-235 -128 15) (-248 -128 15) (-248 -152 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2241" + "plane" "(-225 -128 26) (-235 -128 15) (-235 -152 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.672673 0 0.73994 39.8991] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6839" + side + { + "id" "2252" + "plane" "(-127 -128 4) (-120 -128 4) (-120 -128 15)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 544] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2251" + "plane" "(-120 -152 15) (-120 -152 4) (-127 -152 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2250" + "plane" "(-120 -128 15) (-120 -128 4) (-120 -152 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2249" + "plane" "(-120 -152 15) (-133 -152 15) (-133 -128 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2248" + "plane" "(-120 -128 4) (-127 -128 4) (-127 -152 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2247" + "plane" "(-133 -152 15) (-127 -152 4) (-127 -128 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.478852 0 -0.877895 -48.0644] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6840" + side + { + "id" "2258" + "plane" "(-124 -128 -7) (-120 -128 -7) (-120 -128 4)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 544] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2257" + "plane" "(-120 -152 4) (-120 -152 -7) (-124 -152 -7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2256" + "plane" "(-120 -128 4) (-120 -128 -7) (-120 -152 -7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2255" + "plane" "(-120 -152 4) (-127 -152 4) (-127 -128 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2254" + "plane" "(-120 -128 -7) (-124 -128 -7) (-124 -152 -7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2253" + "plane" "(-127 -152 4) (-124 -152 -7) (-124 -128 -7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.263117 0 -0.964764 -63.3993] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6841" + side + { + "id" "2264" + "plane" "(-123 -128 -19) (-120 -128 -19) (-120 -128 -7)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 544] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2263" + "plane" "(-120 -152 -7) (-120 -152 -19) (-123 -152 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2262" + "plane" "(-120 -128 -7) (-120 -128 -19) (-120 -152 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2261" + "plane" "(-120 -152 -7) (-124 -152 -7) (-124 -128 -7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2260" + "plane" "(-120 -128 -19) (-123 -128 -19) (-123 -152 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2259" + "plane" "(-124 -152 -7) (-123 -152 -19) (-123 -128 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.0830455 0 -0.996546 -1.77322] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6842" + side + { + "id" "2270" + "plane" "(-160 -128 37) (-120 -128 37) (-120 -128 43)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 544] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2269" + "plane" "(-120 -152 43) (-120 -152 37) (-160 -152 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2268" + "plane" "(-120 -128 43) (-120 -128 37) (-120 -152 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2267" + "plane" "(-120 -128 37) (-160 -128 37) (-160 -152 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2266" + "plane" "(-120 -152 43) (-178 -152 43) (-178 -128 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2265" + "plane" "(-160 -128 37) (-178 -128 43) (-178 -152 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-0.948683 0 0.316228 15.3122] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6843" + side + { + "id" "2276" + "plane" "(-248 -128 43) (-248 -128 37) (-208 -128 37)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 544] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2275" + "plane" "(-207.988 -152 37) (-248 -152 37) (-248 -152 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2274" + "plane" "(-248 -152 43) (-248 -152 37) (-248 -128 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2273" + "plane" "(-208 -128 37) (-248 -128 37) (-248 -152 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2272" + "plane" "(-190 -152 43) (-248 -152 43) (-248 -128 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2271" + "plane" "(-190 -128 43) (-208 -128 37) (-208 -152 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-0.948683 0 -0.316228 -18.5965] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 7000]" + } +} +entity +{ + "id" "7407" + "classname" "trigger_once" + "origin" "-180 -72 0" + "solid" "6" + "spawnflags" "4097" + "StartDisabled" "0" + connections + { + "OnTrigger" "@entrance_airlock_doorClose0-1" + "OnTrigger" "info_signinstance:info_panel;SetActive0-1" + } + solid + { + "id" "7402" + side + { + "id" "2306" + "plane" "(-88 -64 64) (-272 -64 64) (-272 -64 -64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2305" + "plane" "(-88 -80 -64) (-272 -80 -64) (-272 -80 64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 -63.9961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2304" + "plane" "(-88 -80 64) (-272 -80 64) (-272 -64 64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 -63.9961] 0.25" + "vaxis" "[0 -1 0 -0.1465] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2303" + "plane" "(-88 -64 -64) (-272 -64 -64) (-272 -80 -64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 -63.9961] 0.25" + "vaxis" "[0 -1 0 -0.1465] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2302" + "plane" "(-88 -64 64) (-88 -64 -64) (-88 -80 -64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 -0.144501] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2301" + "plane" "(-272 -80 64) (-272 -80 -64) (-272 -64 -64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 -32] 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" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5500]" + } +} +entity +{ + "id" "6011" + "classname" "linked_portal_door" + "angles" "0 90 0" + "height" "64" + "partnername" "@entrance_portal_elevator_side" + "renderamt" "255" + "rendercolor" "255 255 255" + "targetname" "@entrance_portal_chamber_side" + "width" "64" + "origin" "-184 -143 7.62939e-006" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -15768]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_over_white_left.vmf b/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_over_white_left.vmf new file mode 100644 index 0000000000..2a0e4ffc04 --- /dev/null +++ b/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_over_white_left.vmf @@ -0,0 +1,8582 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "469" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ + visgroup + { + "name" "Frame" + "visgroupid" "29" + "color" "105 174 167" + } +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "8" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "469" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_day01_01" + solid + { + "id" "30213" + side + { + "id" "6555" + "plane" "(-504 96 -80) (-504 -64 -80) (-440 -64 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6554" + "plane" "(-440 96 -72) (-440 -64 -72) (-504 -64 -72)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01" + "uaxis" "[0 -1 0 256] 0.25" + "vaxis" "[-1 0 0 -224] 0.25" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "6553" + "plane" "(-440 96 -80) (-440 -64 -80) (-440 -64 -72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6552" + "plane" "(-440 -64 -80) (-504 -64 -80) (-504 -64 -72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6551" + "plane" "(-504 -64 -80) (-504 96 -80) (-504 96 -72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6550" + "plane" "(-504 96 -80) (-440 96 -80) (-440 96 -72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 157 126" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "30240" + side + { + "id" "6556" + "plane" "(-504 -64 -64) (-440 -64 -64) (-440 -160 -64)" + "material" "TILE/WHITE_FLOOR_TILE002A" + "uaxis" "[0 -1 0 -256] 0.25" + "vaxis" "[-1 0 0 -352] 0.25" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "6557" + "plane" "(-504 -160 -80) (-440 -160 -80) (-440 -64 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6558" + "plane" "(-504 -64 -64) (-504 -160 -64) (-504 -160 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6559" + "plane" "(-440 -64 -80) (-440 -160 -80) (-440 -160 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6560" + "plane" "(-440 -64 -64) (-504 -64 -64) (-504 -64 -80)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS" + "uaxis" "[0 0 1 348] 0.25" + "vaxis" "[1 0 0 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6561" + "plane" "(-440 -160 -80) (-504 -160 -80) (-504 -160 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 165 130" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "30241" + side + { + "id" "6562" + "plane" "(-536 128 -64) (-504 128 -64) (-504 -160 -64)" + "material" "TILE/WHITE_FLOOR_TILE002A" + "uaxis" "[0 -1 0 -256] 0.25" + "vaxis" "[-1 0 0 -352] 0.25" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "6563" + "plane" "(-536 -160 -80) (-504 -160 -80) (-504 128 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6564" + "plane" "(-536 128 -64) (-536 -160 -64) (-536 -160 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6565" + "plane" "(-504 128 -80) (-504 -160 -80) (-504 -160 -64)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS" + "uaxis" "[0 0 1 312] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6566" + "plane" "(-504 128 -64) (-536 128 -64) (-536 128 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6567" + "plane" "(-504 -160 -80) (-536 -160 -80) (-536 -160 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 239 216" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "30242" + side + { + "id" "6568" + "plane" "(-504 160 -64) (-344 160 -64) (-344 128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6569" + "plane" "(-504 128 -80) (-344 128 -80) (-344 160 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6570" + "plane" "(-504 160 -64) (-504 128 -64) (-504 128 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6571" + "plane" "(-344 160 -80) (-344 128 -80) (-344 128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6572" + "plane" "(-344 160 -64) (-504 160 -64) (-504 160 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6573" + "plane" "(-344 128 -80) (-504 128 -80) (-504 128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 245 226" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "30278" + side + { + "id" "6574" + "plane" "(-504 128 -64) (-440 128 -64) (-440 96 -64)" + "material" "TILE/WHITE_FLOOR_TILE002A" + "uaxis" "[0 -1 0 -256] 0.25" + "vaxis" "[-1 0 0 -352] 0.25" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "6575" + "plane" "(-504 96 -80) (-440 96 -80) (-440 128 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6576" + "plane" "(-504 128 -64) (-504 96 -64) (-504 96 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6577" + "plane" "(-440 128 -80) (-440 96 -80) (-440 96 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6578" + "plane" "(-440 128 -64) (-504 128 -64) (-504 128 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6579" + "plane" "(-440 96 -80) (-504 96 -80) (-504 96 -64)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS" + "uaxis" "[0 0 1 312] 0.25" + "vaxis" "[1 0 0 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 227 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "30366" + side + { + "id" "6591" + "plane" "(-120 128 -80) (-440 128 -80) (-440 -96 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6590" + "plane" "(-440 -96 -64) (-440 128 -64) (-120 128 -64)" + "material" "TILE/WHITE_FLOOR_TILE002A" + "uaxis" "[0 -1 0 -256] 0.25" + "vaxis" "[-1 0 0 -352] 0.25" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "6589" + "plane" "(-440 128 -80) (-120 128 -80) (-120 128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6588" + "plane" "(-120 128 -80) (-120 -96 -80) (-120 -96 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6587" + "plane" "(-440 -96 -80) (-440 128 -80) (-440 128 -64)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS" + "uaxis" "[0 0 1 312] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6586" + "plane" "(-120 -96 -80) (-440 -96 -80) (-440 -96 -64)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS" + "uaxis" "[0 0 1 312] 0.25" + "vaxis" "[1 0 0 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 157 126" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "30420" + side + { + "id" "6609" + "plane" "(-408 -160 -80) (-280 -160 -80) (-280 -96 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6608" + "plane" "(-280 -160 -72) (-408 -160 -72) (-408 -96 -72)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01" + "uaxis" "[0 -1 0 -384] 0.25" + "vaxis" "[-1 0 0 -352] 0.25" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "6607" + "plane" "(-280 -160 -80) (-408 -160 -80) (-408 -160 -72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6606" + "plane" "(-408 -96 -80) (-280 -96 -80) (-280 -96 -72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6605" + "plane" "(-408 -160 -80) (-408 -96 -80) (-408 -96 -72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6604" + "plane" "(-280 -96 -80) (-280 -160 -80) (-280 -160 -72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 157 126" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "30421" + side + { + "id" "6615" + "plane" "(-280 -160 -80) (-120 -160 -80) (-120 -96 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6614" + "plane" "(-120 -160 -64) (-280 -160 -64) (-280 -96 -64)" + "material" "TILE/WHITE_FLOOR_TILE002A" + "uaxis" "[0 -1 0 -256] 0.25" + "vaxis" "[-1 0 0 -352] 0.25" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "6613" + "plane" "(-120 -160 -80) (-280 -160 -80) (-280 -160 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6612" + "plane" "(-120 -96 -80) (-120 -160 -80) (-120 -160 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6611" + "plane" "(-280 -96 -80) (-120 -96 -80) (-120 -96 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6610" + "plane" "(-280 -160 -80) (-280 -96 -80) (-280 -96 -64)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS" + "uaxis" "[0 0 1 312] 0.25" + "vaxis" "[0 -1 0 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 157 126" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "30422" + side + { + "id" "6621" + "plane" "(-440 -96 -80) (-440 -160 -80) (-408 -160 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6620" + "plane" "(-408 -160 -64) (-440 -160 -64) (-440 -96 -64)" + "material" "TILE/WHITE_FLOOR_TILE002A" + "uaxis" "[0 -1 0 -256] 0.25" + "vaxis" "[-1 0 0 -352] 0.25" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "6619" + "plane" "(-408 -160 -80) (-440 -160 -80) (-440 -160 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6618" + "plane" "(-440 -160 -80) (-440 -96 -80) (-440 -96 -64)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS" + "uaxis" "[0 0 1 348] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6617" + "plane" "(-440 -96 -80) (-408 -96 -80) (-408 -96 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6616" + "plane" "(-408 -96 -80) (-408 -160 -80) (-408 -160 -64)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS" + "uaxis" "[0 0 1 312] 0.25" + "vaxis" "[0 1 0 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 157 126" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "30574" + side + { + "id" "6634" + "plane" "(-408 -160 -64) (-280 -160 -64) (-280 -168 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6635" + "plane" "(-408 -168 -72) (-280 -168 -72) (-280 -160 -72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6636" + "plane" "(-408 -160 -64) (-408 -168 -64) (-408 -168 -72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6637" + "plane" "(-280 -160 -72) (-280 -168 -72) (-280 -168 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6638" + "plane" "(-280 -160 -64) (-408 -160 -64) (-408 -160 -72)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS" + "uaxis" "[0 0 1 312] 0.25" + "vaxis" "[1 0 0 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6639" + "plane" "(-280 -168 -72) (-408 -168 -72) (-408 -168 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 107 160" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "29991" + side + { + "id" "6466" + "plane" "(-248 144 144) (-120 144 144) (-120 128 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6467" + "plane" "(-248 128 128) (-120 128 128) (-120 144 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6468" + "plane" "(-248 144 144) (-248 128 144) (-248 128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6469" + "plane" "(-120 144 128) (-120 128 128) (-120 128 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6470" + "plane" "(-120 144 144) (-248 144 144) (-248 144 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6471" + "plane" "(-120 128 128) (-248 128 128) (-248 128 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 125 150" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "30155" + side + { + "id" "6489" + "plane" "(-264 -160 -64) (-344 -160 -64) (-344 -176 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6488" + "plane" "(-264 -176 64) (-344 -176 64) (-344 -160 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6487" + "plane" "(-264 -176 -64) (-344 -176 -64) (-344 -176 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6486" + "plane" "(-344 -160 -64) (-264 -160 -64) (-264 -160 64)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[1 0 0 352] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6485" + "plane" "(-264 -160 -64) (-264 -176 -64) (-264 -176 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6484" + "plane" "(-344 -176 -64) (-344 -160 -64) (-344 -160 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 134 171" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "30156" + side + { + "id" "6495" + "plane" "(-536 -176 -64) (-536 -160 -64) (-536 -160 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6494" + "plane" "(-472 -160 -64) (-536 -160 -64) (-536 -176 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6493" + "plane" "(-472 -176 64) (-536 -176 64) (-536 -160 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6492" + "plane" "(-472 -176 -64) (-536 -176 -64) (-536 -176 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6491" + "plane" "(-536 -160 64) (-536 -160 -64) (-472 -160 -64)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[1 0 0 352] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6490" + "plane" "(-472 -160 -64) (-472 -176 -64) (-472 -176 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 134 171" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "30157" + side + { + "id" "6501" + "plane" "(-344 -160 -64) (-472 -160 -64) (-472 -176 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6500" + "plane" "(-344 -176 64) (-472 -176 64) (-472 -160 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6499" + "plane" "(-344 -176 -64) (-472 -176 -64) (-472 -176 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6498" + "plane" "(-472 -160 -64) (-344 -160 -64) (-344 -160 64)" + "material" "TILE/WHITE_WALL_TILE003H" + "uaxis" "[1 0 0 352] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6497" + "plane" "(-344 -160 -64) (-344 -176 -64) (-344 -176 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6496" + "plane" "(-472 -176 -64) (-472 -160 -64) (-472 -160 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 134 171" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "30162" + side + { + "id" "6502" + "plane" "(-536 -160 144) (-408 -160 144) (-408 -176 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6503" + "plane" "(-536 -176 128) (-408 -176 128) (-408 -160 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6504" + "plane" "(-536 -160 144) (-536 -176 144) (-536 -176 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6505" + "plane" "(-408 -160 128) (-408 -176 128) (-408 -176 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6506" + "plane" "(-408 -160 144) (-536 -160 144) (-536 -160 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6507" + "plane" "(-408 -176 128) (-536 -176 128) (-536 -176 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 197 198" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "28826" + side + { + "id" "6280" + "plane" "(-552 -32 96) (-548 -32 96) (-548 -160 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6281" + "plane" "(-552 -160 64) (-548 -160 64) (-548 -32 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6282" + "plane" "(-552 -32 96) (-552 -160 96) (-552 -160 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6283" + "plane" "(-548 -32 64) (-548 -160 64) (-548 -160 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6284" + "plane" "(-548 -32 96) (-552 -32 96) (-552 -32 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6285" + "plane" "(-548 -160 64) (-552 -160 64) (-552 -160 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 107 224" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "28828" + side + { + "id" "6297" + "plane" "(-552 -32 128) (-536 -32 128) (-536 -160 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6296" + "plane" "(-552 -160 96) (-536 -160 96) (-536 -32 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6295" + "plane" "(-552 -32 128) (-552 -160 128) (-552 -160 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6294" + "plane" "(-536 -32 96) (-536 -160 96) (-536 -160 128)" + "material" "TILE/WHITE_WALL_TILE003F" + "uaxis" "[0 1 0 128] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6293" + "plane" "(-536 -32 128) (-552 -32 128) (-552 -32 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6292" + "plane" "(-536 -160 96) (-552 -160 96) (-552 -160 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 107 224" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "28833" + side + { + "id" "6298" + "plane" "(-548 -160 128) (-536 -160 128) (-536 -176 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6299" + "plane" "(-548 -176 64) (-536 -176 64) (-536 -160 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6300" + "plane" "(-548 -160 128) (-548 -176 128) (-548 -176 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6301" + "plane" "(-536 -160 64) (-536 -176 64) (-536 -176 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6302" + "plane" "(-536 -160 128) (-548 -160 128) (-548 -160 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6303" + "plane" "(-536 -176 64) (-548 -176 64) (-548 -176 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 189 118" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "28970" + side + { + "id" "6304" + "plane" "(-536 -176 128) (-536 -172 128) (-408 -172 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6305" + "plane" "(-536 -172 96) (-536 -176 96) (-408 -176 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6306" + "plane" "(-536 -176 96) (-536 -172 96) (-536 -172 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6307" + "plane" "(-408 -172 96) (-408 -176 96) (-408 -176 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6308" + "plane" "(-536 -172 96) (-408 -172 96) (-408 -172 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6309" + "plane" "(-408 -176 96) (-536 -176 96) (-536 -176 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 113 150" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "28998" + side + { + "id" "6345" + "plane" "(-264 -160 64) (-408 -160 64) (-408 -176 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6344" + "plane" "(-264 -176 128) (-264 -176 64) (-408 -176 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6343" + "plane" "(-408 -160 128) (-408 -160 64) (-264 -160 64)" + "material" "TILE/WHITE_WALL_TILE003F" + "uaxis" "[-1 0 0 -224] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6342" + "plane" "(-408 -176 128) (-408 -176 64) (-408 -160 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6341" + "plane" "(-264 -160 128) (-264 -160 64) (-264 -176 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6340" + "plane" "(-264 -176 128) (-408 -176 128) (-408 -160 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 134 171" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "29667" + side + { + "id" "6406" + "plane" "(-120 144 128) (-120 144 96) (-248 144 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6407" + "plane" "(-248 160 128) (-248 160 96) (-120 160 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6408" + "plane" "(-248 144 128) (-248 144 96) (-248 160 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 56] 0.25" + "vaxis" "[0 1 0 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6409" + "plane" "(-120 160 128) (-120 160 96) (-120 144 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 56] 0.25" + "vaxis" "[0 1 0 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6410" + "plane" "(-120 144 128) (-248 144 128) (-248 160 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6411" + "plane" "(-120 160 96) (-248 160 96) (-248 144 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 182 247" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "29670" + side + { + "id" "6412" + "plane" "(-120 128 128) (-120 144 128) (-88 144 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6413" + "plane" "(-120 144 96) (-120 128 96) (-88 128 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6414" + "plane" "(-120 128 96) (-120 144 96) (-120 144 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6415" + "plane" "(-88 144 96) (-88 128 96) (-88 128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6416" + "plane" "(-120 144 96) (-88 144 96) (-88 144 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6417" + "plane" "(-88 128 96) (-120 128 96) (-120 128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 204 137" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "28658" + side + { + "id" "6250" + "plane" "(-88 -64 64) (-80 -64 64) (-80 -96 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6251" + "plane" "(-88 -96 -64) (-80 -96 -64) (-80 -64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6252" + "plane" "(-88 -64 64) (-88 -96 64) (-88 -96 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6253" + "plane" "(-80 -64 -64) (-80 -96 -64) (-80 -96 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6254" + "plane" "(-80 -64 64) (-88 -64 64) (-88 -64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6255" + "plane" "(-80 -96 -64) (-88 -96 -64) (-88 -96 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 138 151" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "26044" + side + { + "id" "5712" + "plane" "(-152 -160 -64) (-168 -160 -64) (-168 -176 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5711" + "plane" "(-152 -176 64) (-168 -176 64) (-168 -160 64)" + "material" "CONCRETE/CONCRETE_MODULAR_FLOOR001E" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5710" + "plane" "(-152 -176 -64) (-168 -176 -64) (-168 -176 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5709" + "plane" "(-152 -160 64) (-168 -160 64) (-168 -160 -64)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[1 0 0 352] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5708" + "plane" "(-152 -160 -64) (-152 -176 -64) (-152 -176 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5707" + "plane" "(-168 -176 -64) (-168 -160 -64) (-168 -160 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 134 171" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "26046" + side + { + "id" "5724" + "plane" "(-152 -160 64) (-168 -160 64) (-168 -176 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5723" + "plane" "(-152 -176 128) (-168 -176 128) (-168 -160 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5722" + "plane" "(-152 -176 64) (-168 -176 64) (-168 -176 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5721" + "plane" "(-152 -160 128) (-168 -160 128) (-168 -160 64)" + "material" "TILE/WHITE_WALL_TILE003F" + "uaxis" "[-1 0 0 -224] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5720" + "plane" "(-152 -160 64) (-152 -176 64) (-152 -176 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5719" + "plane" "(-168 -176 64) (-168 -160 64) (-168 -160 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 134 171" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "24592" + side + { + "id" "5394" + "plane" "(-120.5 88 -64) (-120.5 -96 -64) (-112 -96 -64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5393" + "plane" "(-120.5 -96 64) (-120.5 88 64) (-112 88 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5392" + "plane" "(-120.5 -96 -64) (-120.5 88 -64) (-120.5 88 64)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5391" + "plane" "(-112 88 -64) (-112 -96 -64) (-112 -96 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5390" + "plane" "(-112 -96 -64) (-120.5 -96 -64) (-120.5 -96 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5389" + "plane" "(-112 88 64) (-120.5 88 64) (-120.5 88 -64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 189 250" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "24719" + side + { + "id" "5413" + "plane" "(-472 160 -64) (-472 156 -64) (-344 156 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5414" + "plane" "(-472 156 64) (-472 160 64) (-344 160 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5415" + "plane" "(-472 156 -64) (-472 160 -64) (-472 160 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5416" + "plane" "(-344 160 -64) (-344 156 -64) (-344 156 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5417" + "plane" "(-344 156 -64) (-472 156 -64) (-472 156 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5418" + "plane" "(-472 160 -64) (-344 160 -64) (-344 160 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 209 138" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "24754" + side + { + "id" "5448" + "plane" "(-344 144 -64) (-472 144 -64) (-472 128 -64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 34] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5447" + "plane" "(-344 128 64) (-472 128 64) (-472 144 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 34] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5446" + "plane" "(-344 128 -64) (-472 128 -64) (-472 128 64)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5445" + "plane" "(-344 144 64) (-472 144 64) (-472 144 -64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5444" + "plane" "(-344 144 -64) (-344 128 -64) (-344 128 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 34] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5443" + "plane" "(-472 128 -64) (-472 144 -64) (-472 144 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 34] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 189 250" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "22998" + side + { + "id" "5081" + "plane" "(-88 -64 64) (-88 -96 64) (-88 -96 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5080" + "plane" "(-120 -96 64) (-120 -64 64) (-120 -64 128)" + "material" "TILE/WHITE_WALL_TILE003F" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5079" + "plane" "(-120 -64 64) (-120 -96 64) (-88 -96 64)" + "material" "BEE2/CLEAN/BLACK_CEIL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 -352] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5078" + "plane" "(-120 -96 128) (-120 -64 128) (-88 -64 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5077" + "plane" "(-120 -64 128) (-120 -64 64) (-88 -64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5076" + "plane" "(-120 -96 64) (-120 -96 128) (-88 -96 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 134 171" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "22999" + side + { + "id" "5087" + "plane" "(-88 -96 64) (-88 -160 64) (-88 -160 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5086" + "plane" "(-120 -160 64) (-120 -96 64) (-120 -96 128)" + "material" "TILE/WHITE_WALL_TILE003F" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5085" + "plane" "(-120 -96 64) (-120 -160 64) (-88 -160 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5084" + "plane" "(-120 -160 128) (-120 -96 128) (-88 -96 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5083" + "plane" "(-120 -160 64) (-120 -160 128) (-88 -160 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5082" + "plane" "(-120 -96 128) (-120 -96 64) (-88 -96 64)" + "material" "TILE/WHITE_WALL_TILE003F" + "uaxis" "[-1 0 0 -256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 134 171" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23021" + side + { + "id" "5105" + "plane" "(-120 -160 64) (-152 -160 64) (-152 -176 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5104" + "plane" "(-120 -176 128) (-152 -176 128) (-152 -160 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5103" + "plane" "(-120 -176 64) (-152 -176 64) (-152 -176 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5102" + "plane" "(-120 -160 128) (-152 -160 128) (-152 -160 64)" + "material" "TILE/WHITE_WALL_TILE003F" + "uaxis" "[-1 0 0 416] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5101" + "plane" "(-120 -160 64) (-120 -176 64) (-120 -176 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5100" + "plane" "(-152 -176 64) (-152 -160 64) (-152 -160 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 134 171" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19531" + side + { + "id" "4667" + "plane" "(-88 64 64) (-88 -64 64) (-88 -64 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4666" + "plane" "(-120 -64 64) (-120 64 64) (-120 64 128)" + "material" "TILE/WHITE_WALL_TILE003G" + "uaxis" "[0 0 1 -256] 0.25" + "vaxis" "[0 -1 0 -256] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4665" + "plane" "(-120 64 64) (-120 -64 64) (-88 -64 64)" + "material" "BEE2/CLEAN/BLACK_CEIL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 -352] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4664" + "plane" "(-120 -64 128) (-120 64 128) (-88 64 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4663" + "plane" "(-120 64 128) (-120 64 64) (-88 64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4662" + "plane" "(-120 -64 64) (-120 -64 128) (-88 -64 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 134 171" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19533" + side + { + "id" "4679" + "plane" "(-88 128 64) (-88 64 64) (-88 64 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4678" + "plane" "(-120 64 64) (-120 128 64) (-120 128 128)" + "material" "TILE/WHITE_WALL_TILE003F" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4677" + "plane" "(-120 128 64) (-120 64 64) (-88 64 64)" + "material" "BEE2/CLEAN/BLACK_CEIL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 -352] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4676" + "plane" "(-120 64 128) (-120 128 128) (-88 128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4675" + "plane" "(-120 128 128) (-120 128 64) (-88 128 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4674" + "plane" "(-120 64 64) (-120 64 128) (-88 64 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 134 171" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19389" + side + { + "id" "4583" + "plane" "(-120 -160 -64) (-120 -176 -64) (-120 -176 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4582" + "plane" "(-152 -176 -64) (-120 -176 -64) (-120 -160 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4581" + "plane" "(-152 -160 64) (-120 -160 64) (-120 -176 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4580" + "plane" "(-152 -176 64) (-120 -176 64) (-120 -176 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4579" + "plane" "(-152 -160 -64) (-120 -160 -64) (-120 -160 64)" + "material" "TILE/WHITE_WALL_TILE003F" + "uaxis" "[1 0 0 352] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4578" + "plane" "(-152 -176 -64) (-152 -160 -64) (-152 -160 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 134 171" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19404" + side + { + "id" "4601" + "plane" "(-88 128 -64) (-88 88 -64) (-88 88 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4600" + "plane" "(-120 88 -64) (-120 128 -64) (-120 128 64)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4599" + "plane" "(-120 128 -64) (-120 88 -64) (-88 88 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4598" + "plane" "(-120 88 64) (-120 128 64) (-88 128 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4597" + "plane" "(-120 128 64) (-120 128 -64) (-88 128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4596" + "plane" "(-120 88 -64) (-120 88 64) (-88 88 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 134 171" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19458" + side + { + "id" "4631" + "plane" "(-88 88 -80) (-88 -96 -80) (-88 -96 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4630" + "plane" "(-120 -96 -80) (-88 -96 -80) (-88 88 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4629" + "plane" "(-120 88 -64) (-88 88 -64) (-88 -96 -64)" + "material" "METAL/BLACK_FLOOR_METAL_001A" + "uaxis" "[0 -1 0 -256] 0.25" + "vaxis" "[-1 0 0 -352] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4628" + "plane" "(-88 -96 -64) (-88 -96 -80) (-120 -96 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4627" + "plane" "(-120 88 -80) (-88 88 -80) (-88 88 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4626" + "plane" "(-120 -96 -80) (-120 88 -80) (-120 88 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 157 126" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "16584" + side + { + "id" "3758" + "plane" "(-64 64 -64) (-88 64 -64) (-88 64 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3757" + "plane" "(-80 -64 -80) (-88 -64 -80) (-88 -64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3756" + "plane" "(-88 -64 -64) (-88 -64 -80) (-88 64 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3755" + "plane" "(-80 64 -80) (-88 64 -80) (-88 -64 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3754" + "plane" "(-64 -64 -64) (-88 -64 -64) (-88 64 -64)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3753" + "plane" "(-64 64 -64) (-80 64 -80) (-80 -64 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-0.707107 0 -0.707107 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 201 242" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "16640" + side + { + "id" "3793" + "plane" "(-88 64 64) (-64 64 64) (-88 64 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3792" + "plane" "(-64 -64 64) (-88 -64 64) (-88 -64 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3791" + "plane" "(-64 64 64) (-88 64 64) (-88 -64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3790" + "plane" "(-64 -64 64) (-88 -64 88) (-88 64 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0.707107 0 -0.707107 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3789" + "plane" "(-88 -64 88) (-88 -64 64) (-88 64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 201 242" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "16641" + side + { + "id" "3798" + "plane" "(-64 -64 -64) (-80 -64 -64) (-80 -80 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3797" + "plane" "(-80 -64 64) (-64 -64 64) (-80 -80 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3796" + "plane" "(-80 -64 -64) (-64 -64 -64) (-64 -64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3795" + "plane" "(-64 -64 -64) (-80 -80 -64) (-80 -80 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3794" + "plane" "(-80 -80 -64) (-80 -64 -64) (-80 -64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 201 242" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "16642" + side + { + "id" "3803" + "plane" "(-88 64 -64) (-64 64 -64) (-88 88 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3802" + "plane" "(-64 64 64) (-88 64 64) (-88 88 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3801" + "plane" "(-64 64 -64) (-88 64 -64) (-88 64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3800" + "plane" "(-88 88 -64) (-64 64 -64) (-64 64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3799" + "plane" "(-88 64 -64) (-88 88 -64) (-88 88 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 201 242" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "16660" + side + { + "id" "3839" + "plane" "(-536 128 -64) (-536 -160 -64) (-536 -160 64)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3838" + "plane" "(-552 -160 -64) (-552 128 -64) (-552 128 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3837" + "plane" "(-552 128 -64) (-552 -160 -64) (-536 -160 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3836" + "plane" "(-552 -160 64) (-552 128 64) (-536 128 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3835" + "plane" "(-552 -160 -64) (-552 -160 64) (-536 -160 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3834" + "plane" "(-552 128 64) (-552 128 -64) (-536 128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 134 171" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "17085" + side + { + "id" "4295" + "plane" "(-536 128 64) (-536 -32 64) (-536 -32 128)" + "material" "TILE/WHITE_WALL_TILE003F" + "uaxis" "[0 1 0 128] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4294" + "plane" "(-552 -32 64) (-552 128 64) (-552 128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4293" + "plane" "(-552 128 64) (-552 -32 64) (-536 -32 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4292" + "plane" "(-552 -32 128) (-552 128 128) (-536 128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4291" + "plane" "(-536 -32 128) (-536 -32 64) (-552 -32 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4290" + "plane" "(-552 128 128) (-552 128 64) (-536 128 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 134 171" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "17512" + side + { + "id" "4313" + "plane" "(-88 -96 -64) (-88 -160 -64) (-88 -160 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4312" + "plane" "(-120 -160 -64) (-120 -96 -64) (-120 -96 64)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[0 -1 0 384] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4311" + "plane" "(-120 -96 -64) (-120 -160 -64) (-88 -160 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4310" + "plane" "(-120 -160 64) (-120 -96 64) (-88 -96 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4309" + "plane" "(-120 -96 64) (-120 -96 -64) (-88 -96 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4308" + "plane" "(-88 -160 64) (-88 -160 -64) (-120 -160 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 134 171" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7966" + side + { + "id" "2331" + "plane" "(-572 -188 188) (-572 188 188) (-68 188 188)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2332" + "plane" "(-572 188 -188) (-572 -188 -188) (-68 -188 -188)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2333" + "plane" "(-68 188 -188) (-68 -188 -188) (-68 -188 188)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2334" + "plane" "(-572 -188 -188) (-572 188 -188) (-572 188 188)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2335" + "plane" "(-68 -188 -188) (-572 -188 -188) (-572 -188 188)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2336" + "plane" "(-572 188 -188) (-68 188 -188) (-68 188 188)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 184 161" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23578" + side + { + "id" "6339" + "plane" "(-536 -176 64) (-536 -160 64) (-536 -160 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6338" + "plane" "(-408 -160 64) (-536 -160 64) (-536 -176 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6337" + "plane" "(-408 -176 96) (-536 -176 96) (-536 -160 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6336" + "plane" "(-408 -176 64) (-536 -176 64) (-536 -176 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6335" + "plane" "(-536 -160 96) (-536 -160 64) (-408 -160 64)" + "material" "TILE/WHITE_WALL_TILE003F" + "uaxis" "[-1 0 0 -224] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6334" + "plane" "(-408 -160 64) (-408 -176 64) (-408 -176 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 225 238" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25092" + side + { + "id" "6399" + "plane" "(-120 160 64) (-248 160 64) (-248 128 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6398" + "plane" "(-120 128 96) (-248 128 96) (-248 160 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6397" + "plane" "(-120 128 64) (-248 128 64) (-248 128 96)" + "material" "TILE/WHITE_WALL_TILE003F" + "uaxis" "[-1 0 0 -352] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6396" + "plane" "(-248 160 64) (-120 160 64) (-120 160 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6395" + "plane" "(-120 160 64) (-120 128 64) (-120 128 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6394" + "plane" "(-248 128 64) (-248 160 64) (-248 160 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 225 162" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19391" + side + { + "id" "4595" + "plane" "(-120 160 -64) (-120 128 -64) (-120 128 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4594" + "plane" "(-152 128 -64) (-120 128 -64) (-120 160 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4593" + "plane" "(-152 160 64) (-120 160 64) (-120 128 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4592" + "plane" "(-120 128 64) (-120 128 -64) (-152 128 -64)" + "material" "TILE/WHITE_WALL_TILE003F" + "uaxis" "[1 0 0 352] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4591" + "plane" "(-152 160 -64) (-120 160 -64) (-120 160 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4590" + "plane" "(-152 128 -64) (-152 160 -64) (-152 160 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 109 246" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "24927" + side + { + "id" "6435" + "plane" "(-536 128 -64) (-536 160 -64) (-536 160 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6434" + "plane" "(-472 160 -64) (-536 160 -64) (-536 128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6433" + "plane" "(-472 128 64) (-536 128 64) (-536 160 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6432" + "plane" "(-472 128 -64) (-536 128 -64) (-536 128 64)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[1 0 0 352] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6431" + "plane" "(-536 160 64) (-536 160 -64) (-472 160 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6430" + "plane" "(-472 160 -64) (-472 128 -64) (-472 128 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 103 232" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "16655" + side + { + "id" "6441" + "plane" "(-248 160 64) (-248 128 64) (-248 128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6440" + "plane" "(-536 128 64) (-536 160 64) (-536 160 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6439" + "plane" "(-536 160 64) (-536 128 64) (-248 128 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6438" + "plane" "(-536 128 128) (-536 160 128) (-248 160 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6437" + "plane" "(-248 128 128) (-248 128 64) (-536 128 64)" + "material" "TILE/WHITE_WALL_TILE003F" + "uaxis" "[-1 0 0 -352] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6436" + "plane" "(-536 160 128) (-536 160 64) (-248 160 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 197 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25057" + side + { + "id" "6447" + "plane" "(-344 128 -64) (-344 160 -64) (-344 160 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6446" + "plane" "(-152 160 -64) (-344 160 -64) (-344 128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6445" + "plane" "(-152 128 64) (-344 128 64) (-344 160 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6444" + "plane" "(-152 128 -64) (-344 128 -64) (-344 128 64)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[1 0 0 352] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6443" + "plane" "(-344 160 64) (-344 160 -64) (-152 160 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6442" + "plane" "(-152 160 -64) (-152 128 -64) (-152 128 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 119 156" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "24208" + side + { + "id" "5268" + "plane" "(-536 -160 128) (-536 128 128) (-536 128 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5267" + "plane" "(-120 128 128) (-536 128 128) (-536 -160 128)" + "material" "TILE/WHITE_CEILING_TILE002A" + "uaxis" "[0 1 0 640] 0.25" + "vaxis" "[-1 0 0 -96] 0.25" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "5266" + "plane" "(-120 -160 144) (-536 -160 144) (-536 128 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5265" + "plane" "(-120 -160 128) (-536 -160 128) (-536 -160 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5264" + "plane" "(-536 128 144) (-536 128 128) (-120 128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5263" + "plane" "(-120 128 128) (-120 -160 128) (-120 -160 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 219 236" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "26488" + editor + { + "color" "156 181 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } +} +entity +{ + "id" "30643" + "classname" "comp_relay" + "ctrl_type" "0" + "ctrl_value" "1" + "delay" "0.0" + "targetname" "@spawn_corridor_rl" + connections + { + "OnTrigger" "info_signinstance:info_panel;SetActive0-1" + } + "origin" "-152 24 -56" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "30209" + "classname" "func_detail" + solid + { + "id" "30212" + side + { + "id" "6549" + "plane" "(-504 96 -72) (-504 -64 -72) (-440 -64 -72)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6548" + "plane" "(-440 96 -64) (-440 -64 -64) (-504 -64 -64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6547" + "plane" "(-440 96 -72) (-440 -64 -72) (-440 -64 -64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6546" + "plane" "(-440 -64 -72) (-504 -64 -72) (-504 -64 -64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6545" + "plane" "(-504 -64 -72) (-504 96 -72) (-504 96 -64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6544" + "plane" "(-504 96 -72) (-440 96 -72) (-440 96 -64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -15768]" + } +} +entity +{ + "id" "30215" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/anim_wp/framework/squarebeam_off.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "origin" "-440 32 -64" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 14500]" + } +} +entity +{ + "id" "30219" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/anim_wp/framework/squarebeam_off.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "origin" "-472 -32 -64" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 14500]" + } +} +entity +{ + "id" "30227" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/anim_wp/framework/squarebeam_off.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "origin" "-472 96 -64" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 14500]" + } +} +entity +{ + "id" "30325" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/anim_wp/framework/squarebeam_off.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "origin" "-504 32 -64" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 14500]" + } +} +entity +{ + "id" "30526" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/anim_wp/framework/squarebeam_off.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "origin" "-376 -128 -64" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 14500]" + } +} +entity +{ + "id" "30550" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/anim_wp/framework/squarebeam_off.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "origin" "-312 -128 -64" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 14500]" + } +} +entity +{ + "id" "30558" + "classname" "func_detail" + solid + { + "id" "30559" + side + { + "id" "6633" + "plane" "(-408 -96 -72) (-408 -160 -72) (-280 -160 -72)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6632" + "plane" "(-280 -96 -64) (-280 -160 -64) (-408 -160 -64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6631" + "plane" "(-280 -96 -72) (-280 -160 -72) (-280 -160 -64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6630" + "plane" "(-280 -160 -72) (-408 -160 -72) (-408 -160 -64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6629" + "plane" "(-408 -160 -72) (-408 -96 -72) (-408 -96 -64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6628" + "plane" "(-408 -96 -72) (-280 -96 -72) (-280 -96 -64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -15768]" + } +} +entity +{ + "id" "28834" + "classname" "prop_static" + "angles" "0 0 -90" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props_lab/glass_lightcover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "$strip_skin" + "solid" "6" + "origin" "-536 -96 80" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "28869" + "classname" "prop_static" + "angles" "0 90 -90" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props_lab/glass_lightcover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "$strip_skin" + "solid" "6" + "origin" "-472 -160 112" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "29298" + "classname" "prop_static" + "angles" "0 270 -90" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props_lab/glass_lightcover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "$strip_skin" + "solid" "6" + "origin" "-184 128 112" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "29762" + "classname" "comp_relay" + "ctrl_type" "0" + "ctrl_value" "1" + "delay" "0.0" + "targetname" "entrance_door_close_rl" + connections + { + "OnTrigger" "entry_camKill2-1" + "OnTrigger" "@entrance_airlock_doorKill2-1" + } + "origin" "-152 -24 -56" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "26268" + "classname" "func_detail" + hidden + { + solid + { + "id" "26269" + side + { + "id" "5892" + "plane" "(-88 64 43) (-88 64 64) (-88 -64 64)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1" + } + side + { + "id" "5891" + "plane" "(-76 -64 43) (-76 -64 64) (-76 64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5890" + "plane" "(-88 -64 64) (-88 64 64) (-76 64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5889" + "plane" "(-88 64 64) (-88 64 43) (-76 64 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5888" + "plane" "(-88 -64 43) (-88 -64 64) (-76 -64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5887" + "plane" "(-88 64 43) (-88 -64 43) (-76 -64 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "156 181 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "26270" + side + { + "id" "5898" + "plane" "(-88 -64 -53) (-88 -64 -64) (-88 -41 -64)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1" + } + side + { + "id" "5897" + "plane" "(-76 -41 -64) (-76 -64 -64) (-76 -64 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5896" + "plane" "(-88 -41 -64) (-88 -64 -64) (-76 -64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5895" + "plane" "(-88 -64 -64) (-88 -64 -53) (-76 -64 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5894" + "plane" "(-88 -64 -53) (-88 -51 -53) (-76 -51 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5893" + "plane" "(-88 -51 -53) (-88 -41 -64) (-76 -41 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0.672673 -0.73994 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "156 181 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "26271" + side + { + "id" "5904" + "plane" "(-88 41 -64) (-88 64 -64) (-88 64 -53)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1" + } + side + { + "id" "5903" + "plane" "(-76 64 -53) (-76 64 -64) (-76 41 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5902" + "plane" "(-88 64 -64) (-88 41 -64) (-76 41 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5901" + "plane" "(-88 64 -53) (-88 64 -64) (-76 64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5900" + "plane" "(-88 51 -53) (-88 64 -53) (-76 64 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5899" + "plane" "(-88 41 -64) (-88 51 -53) (-76 51 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -0.672673 -0.73994 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "156 181 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "26272" + side + { + "id" "5910" + "plane" "(-88 57 -42) (-88 64 -42) (-88 64 -31)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1" + } + side + { + "id" "5909" + "plane" "(-76 64 -31) (-76 64 -42) (-76 57 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5908" + "plane" "(-88 64 -31) (-88 64 -42) (-76 64 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5907" + "plane" "(-88 60 -31) (-88 64 -31) (-76 64 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5906" + "plane" "(-88 64 -42) (-88 57 -42) (-76 57 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5905" + "plane" "(-88 57 -42) (-88 60 -31) (-76 60 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -0.263117 -0.964764 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "156 181 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "26273" + side + { + "id" "5916" + "plane" "(-88 34 32) (-88 64 32) (-88 64 37)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1" + } + side + { + "id" "5915" + "plane" "(-76 64 37) (-76 64 32) (-76 34 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5914" + "plane" "(-88 64 37) (-88 64 32) (-76 64 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5913" + "plane" "(-88 24 37) (-88 64 37) (-76 64 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5912" + "plane" "(-88 64 32) (-88 34 32) (-76 34 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5911" + "plane" "(-88 34 32) (-88 24 37) (-76 24 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -0.894427 0.447214 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "156 181 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "26274" + side + { + "id" "5922" + "plane" "(-88 41 26) (-88 64 26) (-88 64 32)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1" + } + side + { + "id" "5921" + "plane" "(-76 64 32) (-76 64 26) (-76 41 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5920" + "plane" "(-88 64 32) (-88 64 26) (-76 64 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5919" + "plane" "(-88 34 32) (-88 64 32) (-76 64 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5918" + "plane" "(-88 64 26) (-88 41 26) (-76 41 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5917" + "plane" "(-88 41 26) (-88 34 32) (-76 34 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -0.759257 0.650791 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "156 181 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "26275" + side + { + "id" "5928" + "plane" "(-88 51 15) (-88 64 15) (-88 64 26)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1" + } + side + { + "id" "5927" + "plane" "(-76 64 26) (-76 64 15) (-76 51 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5926" + "plane" "(-88 64 26) (-88 64 15) (-76 64 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5925" + "plane" "(-88 41 26) (-88 64 26) (-76 64 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5924" + "plane" "(-88 64 15) (-88 51 15) (-76 51 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5923" + "plane" "(-88 51 15) (-88 41 26) (-76 41 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0.672673 -0.73994 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "156 181 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "26276" + side + { + "id" "5934" + "plane" "(-88 -64 15) (-88 -64 3.99999) (-88 -57 3.99999)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1" + } + side + { + "id" "5933" + "plane" "(-76 -57 3.99998) (-76 -64 3.99998) (-76 -64 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5932" + "plane" "(-88 -64 3.99999) (-88 -64 15) (-76 -64 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5931" + "plane" "(-88 -64 15) (-88 -51 15) (-76 -51 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5930" + "plane" "(-88 -57 3.99999) (-88 -64 3.99999) (-76 -64 3.99998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5929" + "plane" "(-88 -51 15) (-88 -57 3.99999) (-76 -57 3.99998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -0.478852 -0.877896 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "156 181 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "26277" + side + { + "id" "5940" + "plane" "(-88 -64 3.99999) (-88 -64 -7.00001) (-88 -60 -7.00001)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1" + } + side + { + "id" "5939" + "plane" "(-76 -60 -7.00001) (-76 -64 -7.00001) (-76 -64 3.99998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5938" + "plane" "(-88 -64 -7.00001) (-88 -64 3.99999) (-76 -64 3.99998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5937" + "plane" "(-88 -64 3.99999) (-88 -57 3.99999) (-76 -57 3.99998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5936" + "plane" "(-88 -60 -7.00001) (-88 -64 -7.00001) (-76 -64 -7.00001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5935" + "plane" "(-88 -57 3.99999) (-88 -60 -7.00001) (-76 -60 -7.00001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -0.263117 -0.964764 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "156 181 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "26278" + side + { + "id" "5946" + "plane" "(-88 -64 -7.00001) (-88 -64 -19) (-88 -61 -19)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1" + } + side + { + "id" "5945" + "plane" "(-76 -61 -19) (-76 -64 -19) (-76 -64 -7.00001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5944" + "plane" "(-88 -64 -19) (-88 -64 -7.00001) (-76 -64 -7.00001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5943" + "plane" "(-88 -64 -7.00001) (-88 -60 -7.00001) (-76 -60 -7.00001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5942" + "plane" "(-88 -61 -19) (-88 -64 -19) (-76 -64 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5941" + "plane" "(-88 -60 -7.00001) (-88 -61 -19) (-76 -61 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -0.0830455 -0.996546 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "156 181 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "26279" + side + { + "id" "5952" + "plane" "(-88 -64 -19) (-88 -64 -31) (-88 -60 -31)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1" + } + side + { + "id" "5951" + "plane" "(-76 -60 -31) (-76 -64 -31) (-76 -64 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5950" + "plane" "(-88 -64 -31) (-88 -64 -19) (-76 -64 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5949" + "plane" "(-88 -64 -19) (-88 -61 -19) (-76 -61 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5948" + "plane" "(-88 -60 -31) (-88 -64 -31) (-76 -64 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5947" + "plane" "(-88 -61 -19) (-88 -60 -31) (-76 -60 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0.0830455 -0.996546 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "156 181 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "26280" + side + { + "id" "5958" + "plane" "(-88 -64 -31) (-88 -64 -42) (-88 -57 -42)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1" + } + side + { + "id" "5957" + "plane" "(-76 -57 -42) (-76 -64 -42) (-76 -64 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5956" + "plane" "(-88 -64 -42) (-88 -64 -31) (-76 -64 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5955" + "plane" "(-88 -64 -31) (-88 -60 -31) (-76 -60 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5954" + "plane" "(-88 -57 -42) (-88 -64 -42) (-76 -64 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5953" + "plane" "(-88 -60 -31) (-88 -57 -42) (-76 -57 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0.263117 -0.964764 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "156 181 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "26281" + side + { + "id" "5964" + "plane" "(-88 -64 -42) (-88 -64 -53) (-88 -51 -53)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1" + } + side + { + "id" "5963" + "plane" "(-76 -51 -53) (-76 -64 -53) (-76 -64 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5962" + "plane" "(-88 -64 -53) (-88 -64 -42) (-76 -64 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5961" + "plane" "(-88 -64 -42) (-88 -57 -42) (-76 -57 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5960" + "plane" "(-88 -51 -53) (-88 -64 -53) (-76 -64 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5959" + "plane" "(-88 -57 -42) (-88 -51 -53) (-76 -51 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0.478852 -0.877896 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "156 181 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "26282" + side + { + "id" "5970" + "plane" "(-88 51 -53) (-88 64 -53) (-88 64 -42)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1" + } + side + { + "id" "5969" + "plane" "(-76 64 -42) (-76 64 -53) (-76 51 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5968" + "plane" "(-88 64 -42) (-88 64 -53) (-76 64 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5967" + "plane" "(-88 57 -42) (-88 64 -42) (-76 64 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5966" + "plane" "(-88 64 -53) (-88 51 -53) (-76 51 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5965" + "plane" "(-88 51 -53) (-88 57 -42) (-76 57 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -0.478852 -0.877896 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "156 181 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "26283" + side + { + "id" "5976" + "plane" "(-88 60 -31) (-88 64 -31) (-88 64 -19)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1" + } + side + { + "id" "5975" + "plane" "(-76 64 -19) (-76 64 -31) (-76 60 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5974" + "plane" "(-88 64 -19) (-88 64 -31) (-76 64 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5973" + "plane" "(-88 61 -19) (-88 64 -19) (-76 64 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5972" + "plane" "(-88 64 -31) (-88 60 -31) (-76 60 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5971" + "plane" "(-88 60 -31) (-88 61 -19) (-76 61 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -0.0830455 -0.996546 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "156 181 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "26284" + side + { + "id" "5982" + "plane" "(-88 -64 37) (-88 -64 32) (-88 -34 32)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1" + } + side + { + "id" "5981" + "plane" "(-76 -34 32) (-76 -64 32) (-76 -64 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5980" + "plane" "(-88 -64 32) (-88 -64 37) (-76 -64 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5979" + "plane" "(-88 -64 37) (-88 -24 37) (-76 -24 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5978" + "plane" "(-88 -34 32) (-88 -64 32) (-76 -64 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5977" + "plane" "(-88 -24 37) (-88 -34 32) (-76 -34 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -0.894427 -0.447214 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "156 181 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "26285" + side + { + "id" "5988" + "plane" "(-88 -64 32) (-88 -64 26) (-88 -41 26)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1" + } + side + { + "id" "5987" + "plane" "(-76 -41 26) (-76 -64 26) (-76 -64 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5986" + "plane" "(-88 -64 26) (-88 -64 32) (-76 -64 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5985" + "plane" "(-88 -64 32) (-88 -34 32) (-76 -34 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5984" + "plane" "(-88 -41 26) (-88 -64 26) (-76 -64 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5983" + "plane" "(-88 -34 32) (-88 -41 26) (-76 -41 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -0.759257 -0.650791 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "156 181 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "26286" + side + { + "id" "5994" + "plane" "(-88 -64 26) (-88 -64 15) (-88 -51 15)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1" + } + side + { + "id" "5993" + "plane" "(-76 -51 15) (-76 -64 15) (-76 -64 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5992" + "plane" "(-88 -64 15) (-88 -64 26) (-76 -64 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5991" + "plane" "(-88 -64 26) (-88 -41 26) (-76 -41 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5990" + "plane" "(-88 -51 15) (-88 -64 15) (-76 -64 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5989" + "plane" "(-88 -41 26) (-88 -51 15) (-76 -51 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -0.672673 -0.73994 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "156 181 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "26287" + side + { + "id" "6000" + "plane" "(-88 57 3.99999) (-88 64 3.99999) (-88 64 15)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1" + } + side + { + "id" "5999" + "plane" "(-76 64 15) (-76 64 3.99998) (-76 57 3.99998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5998" + "plane" "(-88 64 15) (-88 64 3.99999) (-76 64 3.99998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5997" + "plane" "(-88 51 15) (-88 64 15) (-76 64 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5996" + "plane" "(-88 64 3.99999) (-88 57 3.99999) (-76 57 3.99998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5995" + "plane" "(-88 57 3.99999) (-88 51 15) (-76 51 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0.478852 -0.877896 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "156 181 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "26288" + side + { + "id" "6006" + "plane" "(-88 60 -7.00001) (-88 64 -7.00001) (-88 64 3.99999)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1" + } + side + { + "id" "6005" + "plane" "(-76 64 3.99998) (-76 64 -7.00001) (-76 60 -7.00001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6004" + "plane" "(-88 64 3.99999) (-88 64 -7.00001) (-76 64 -7.00001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6003" + "plane" "(-88 57 3.99999) (-88 64 3.99999) (-76 64 3.99998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6002" + "plane" "(-88 64 -7.00001) (-88 60 -7.00001) (-76 60 -7.00001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6001" + "plane" "(-88 60 -7.00001) (-88 57 3.99999) (-76 57 3.99998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0.263117 -0.964764 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "156 181 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "26289" + side + { + "id" "6012" + "plane" "(-88 61 -19) (-88 64 -19) (-88 64 -7.00001)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1" + } + side + { + "id" "6011" + "plane" "(-76 64 -7.00001) (-76 64 -19) (-76 61 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6010" + "plane" "(-88 64 -7.00001) (-88 64 -19) (-76 64 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6009" + "plane" "(-88 60 -7.00001) (-88 64 -7.00001) (-76 64 -7.00001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6008" + "plane" "(-88 64 -19) (-88 61 -19) (-76 61 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6007" + "plane" "(-88 61 -19) (-88 60 -7.00001) (-76 60 -7.00001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0.0830455 -0.996546 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "156 181 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "26290" + side + { + "id" "6018" + "plane" "(-88 24 37) (-88 64 37) (-88 64 43)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1" + } + side + { + "id" "6017" + "plane" "(-76 64 43) (-76 64 37) (-76 24 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6016" + "plane" "(-88 64 43) (-88 64 37) (-76 64 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6015" + "plane" "(-88 64 37) (-88 24 37) (-76 24 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6014" + "plane" "(-88 6.00001 43) (-88 64 43) (-76 64 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6013" + "plane" "(-88 24 37) (-88 6.00001 43) (-76 6.00001 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -0.948683 0.316228 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "156 181 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "26291" + side + { + "id" "6024" + "plane" "(-88 -64 43) (-88 -64 37) (-88 -24 37)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1" + } + side + { + "id" "6023" + "plane" "(-76 -24 37) (-76 -64 37) (-76 -64 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6022" + "plane" "(-88 -64 37) (-88 -64 43) (-76 -64 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6021" + "plane" "(-88 -24 37) (-88 -64 37) (-76 -64 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6020" + "plane" "(-88 -64 43) (-88 -5.99999 43) (-76 -5.99999 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6019" + "plane" "(-88 -5.99999 43) (-88 -24 37) (-76 -24 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -0.948683 -0.316228 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "156 181 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + } + editor + { + "color" "156 181 0" + "groupid" "26488" + "visgroupid" "29" + "visgroupshown" "0" + "visgroupautoshown" "1" + "logicalpos" "[1000 7000]" + } + } +} +entity +{ + "id" "25485" + "classname" "npc_security_camera" + "angles" "0 180 0" + "LookAtPlayerPings" "0" + "physdamagescale" "1.0" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "spawnflags" "32" + "targetname" "entry_cam" + "TeamPlayerToLookAt" "0" + "TeamToLookAt" "1" + "origin" "-120 -112 80" + editor + { + "color" "0 200 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "24584" + "classname" "func_detail" + solid + { + "id" "17515" + side + { + "id" "5376" + "plane" "(-112 -64 -64) (-112 -96 -64) (-112 -96 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5375" + "plane" "(-120 -96 -64) (-120 -64 -64) (-120 -64 64)" + "material" "TILE/WHITE_WALL_TILE003F" + "uaxis" "[0 1 0 -256] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5374" + "plane" "(-120 -64 -64) (-120 -96 -64) (-112 -96 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5373" + "plane" "(-120 -96 64) (-120 -64 64) (-112 -64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5372" + "plane" "(-120 -64 64) (-120 -64 -64) (-112 -64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5371" + "plane" "(-120 -96 -64) (-120 -96 64) (-112 -96 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19405" + side + { + "id" "5382" + "plane" "(-112 88 -64) (-112 64 -64) (-112 64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5381" + "plane" "(-120 64 -64) (-120 88 -64) (-120 88 64)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5380" + "plane" "(-120 88 -64) (-120 64 -64) (-112 64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5379" + "plane" "(-120 64 64) (-120 88 64) (-112 88 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5378" + "plane" "(-120 64 -64) (-120 64 64) (-112 64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5377" + "plane" "(-120 88 64) (-120 88 -64) (-112 88 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "18907" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/fizzler.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "origin" "-104 -64 -7.62939e-006" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -13268]" + } +} +entity +{ + "id" "18946" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/fizzler.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "origin" "-104 64 -7.62939e-006" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -13268]" + } +} +entity +{ + "id" "19474" + "classname" "trigger_portal_cleanser" + "drawinfastreflection" "1" + "origin" "-104 0 0" + "renderamt" "255" + "rendercolor" "255 255 255" + "solid" "6" + "spawnflags" "4105" + "StartDisabled" "0" + "targetname" "fizz" + "UseScanline" "1" + "Visible" "1" + solid + { + "id" "19466" + side + { + "id" "4649" + "plane" "(-104.5 64 -64) (-104.5 -64 -64) (-103.5 -64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4648" + "plane" "(-104.5 -64 64) (-104.5 64 64) (-103.5 64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4647" + "plane" "(-104.5 -64 -64) (-104.5 64 -64) (-104.5 64 64)" + "material" "EFFECTS/FIZZLER" + "uaxis" "[0 -1 0 512] 0.125" + "vaxis" "[0 0 -1 -512] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4646" + "plane" "(-103.5 64 -64) (-103.5 -64 -64) (-103.5 -64 64)" + "material" "EFFECTS/FIZZLER" + "uaxis" "[0 -1 0 512] 0.125" + "vaxis" "[0 0 1 512] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4645" + "plane" "(-103.5 -64 -64) (-104.5 -64 -64) (-104.5 -64 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4644" + "plane" "(-103.5 64 64) (-104.5 64 64) (-104.5 64 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 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" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -7268]" + } +} +entity +{ + "id" "11411" + "classname" "func_instance" + "angles" "-0 180 0" + "file" "instances/bee2/clean/info_sign.vmf" + "targetname" "info_sign" + "origin" "-216 -160 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "7736" + "classname" "point_teleport" + "angles" "0 0 0" + "model" "models/editor/angle_helper.mdl" + "target" "!player" + "targetname" "@player_start_teleport" + "origin" "-160 1.39876e-005 -56" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "6804" + "classname" "prop_testchamber_door" + "angles" "0 90 0" + "renderamt" "255" + "rendercolor" "255 255 255" + "solid" "6" + "targetname" "@entrance_airlock_door" + connections + { + "OnFullyClosed" "@entrance_door_open_rlTrigger0-1" + "OnOpen" "@entrance_door_open_rlFireUser401" + } + "origin" "-408 140 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "6820" + "classname" "func_detail" + solid + { + "id" "6821" + side + { + "id" "2144" + "plane" "(-472 128 43) (-472 128 64) (-344 128 64)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2143" + "plane" "(-344 152 64) (-472 152 64) (-472 152 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2142" + "plane" "(-344 128 64) (-472 128 64) (-472 152 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2141" + "plane" "(-472 128 64) (-472 128 43) (-472 152 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2140" + "plane" "(-344 152 64) (-344 152 43) (-344 128 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2139" + "plane" "(-344 152 43) (-472 152 43) (-472 128 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6822" + side + { + "id" "2150" + "plane" "(-344 128 -64) (-367 128 -64) (-357 128 -53)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2149" + "plane" "(-367 152 -64) (-344 152 -64) (-344 152 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2148" + "plane" "(-344 152 -64) (-367 152 -64) (-367 128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2147" + "plane" "(-344 152 -53) (-344 152 -64) (-344 128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2146" + "plane" "(-344 128 -53) (-357 128 -53) (-357 152 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2145" + "plane" "(-357 128 -53) (-367 128 -64) (-367 152 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-0.672673 0 -0.73994 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6823" + side + { + "id" "2156" + "plane" "(-449 128 -64) (-472 128 -64) (-472 128 -53)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2155" + "plane" "(-459 152 -53) (-472 152 -53) (-472 152 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2154" + "plane" "(-449 152 -64) (-472 152 -64) (-472 128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2153" + "plane" "(-472 128 -53) (-472 128 -64) (-472 152 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2152" + "plane" "(-459 128 -53) (-472 128 -53) (-472 152 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2151" + "plane" "(-459 152 -53) (-449 152 -64) (-449 128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0.672673 0 -0.73994 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6824" + side + { + "id" "2162" + "plane" "(-465 128 -42) (-472 128 -42) (-472 128 -31)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2161" + "plane" "(-468 152 -31) (-472 152 -31) (-472 152 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2160" + "plane" "(-472 128 -31) (-472 128 -42) (-472 152 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2159" + "plane" "(-468 128 -31) (-472 128 -31) (-472 152 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2158" + "plane" "(-465 152 -42) (-472 152 -42) (-472 128 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2157" + "plane" "(-468 152 -31) (-465 152 -42) (-465 128 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0.263117 0 -0.964764 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6825" + side + { + "id" "2168" + "plane" "(-442 128 32) (-472 128 32) (-472 128 37)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2167" + "plane" "(-432 152 37) (-472 152 37) (-472 152 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2166" + "plane" "(-472 128 37) (-472 128 32) (-472 152 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2165" + "plane" "(-432 128 37) (-472 128 37) (-472 152 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2164" + "plane" "(-442 152 32) (-472 152 32) (-472 128 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2163" + "plane" "(-432 152 37) (-442 152 32) (-442 128 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.894427 0 -0.447213 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6826" + side + { + "id" "2174" + "plane" "(-449 128 26) (-472 128 26) (-472 128 32)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2173" + "plane" "(-442 152 32) (-472 152 32) (-472 152 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2172" + "plane" "(-472 128 32) (-472 128 26) (-472 152 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2171" + "plane" "(-442 128 32) (-472 128 32) (-472 152 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2170" + "plane" "(-449 152 26) (-472 152 26) (-472 128 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2169" + "plane" "(-442 152 32) (-449 152 26) (-449 128 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.759256 0 -0.650791 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6827" + side + { + "id" "2180" + "plane" "(-459 128 15) (-472 128 15) (-472 128 26)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2179" + "plane" "(-449 152 26) (-472 152 26) (-472 152 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2178" + "plane" "(-472 128 26) (-472 128 15) (-472 152 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2177" + "plane" "(-449 128 26) (-472 128 26) (-472 152 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2176" + "plane" "(-459 152 15) (-472 152 15) (-472 128 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2175" + "plane" "(-449 152 26) (-459 152 15) (-459 128 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-0.672673 0 -0.73994 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6828" + side + { + "id" "2186" + "plane" "(-357 128 15) (-344 128 15) (-344 128 4)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2185" + "plane" "(-351 152 4) (-344 152 4) (-344 152 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2184" + "plane" "(-344 152 15) (-344 152 4) (-344 128 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2183" + "plane" "(-344 128 15) (-357 128 15) (-357 152 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2182" + "plane" "(-344 152 4) (-351 152 4) (-351 128 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2181" + "plane" "(-357 128 15) (-351 128 4) (-351 152 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0.478852 0 -0.877896 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6829" + side + { + "id" "2192" + "plane" "(-351 128 4) (-344 128 4) (-344 128 -7)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2191" + "plane" "(-348 152 -7) (-344 152 -7) (-344 152 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2190" + "plane" "(-344 152 4) (-344 152 -7) (-344 128 -7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2189" + "plane" "(-344 128 4) (-351 128 4) (-351 152 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2188" + "plane" "(-344 152 -7) (-348 152 -7) (-348 128 -7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2187" + "plane" "(-351 128 4) (-348 128 -7) (-348 152 -7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0.263117 0 -0.964764 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6830" + side + { + "id" "2198" + "plane" "(-348 128 -7) (-344 128 -7) (-344 128 -19)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2197" + "plane" "(-347 152 -19) (-344 152 -19) (-344 152 -7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2196" + "plane" "(-344 152 -7) (-344 152 -19) (-344 128 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2195" + "plane" "(-344 128 -7) (-348 128 -7) (-348 152 -7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2194" + "plane" "(-344 152 -19) (-347 152 -19) (-347 128 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2193" + "plane" "(-348 128 -7) (-347 128 -19) (-347 152 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0.0830455 0 -0.996546 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6831" + side + { + "id" "2204" + "plane" "(-347 128 -19) (-344 128 -19) (-344 128 -31)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2203" + "plane" "(-348 152 -31) (-344 152 -31) (-344 152 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2202" + "plane" "(-344 152 -19) (-344 152 -31) (-344 128 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2201" + "plane" "(-344 128 -19) (-347 128 -19) (-347 152 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2200" + "plane" "(-344 152 -31) (-348 152 -31) (-348 128 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2199" + "plane" "(-347 128 -19) (-348 128 -31) (-348 152 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-0.0830455 0 -0.996546 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6832" + side + { + "id" "2210" + "plane" "(-348 128 -31) (-344 128 -31) (-344 128 -42)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2209" + "plane" "(-351 152 -42) (-344 152 -42) (-344 152 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2208" + "plane" "(-344 152 -31) (-344 152 -42) (-344 128 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2207" + "plane" "(-344 128 -31) (-348 128 -31) (-348 152 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2206" + "plane" "(-344 152 -42) (-351 152 -42) (-351 128 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2205" + "plane" "(-348 128 -31) (-351 128 -42) (-351 152 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-0.263117 0 -0.964764 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6833" + side + { + "id" "2216" + "plane" "(-351 128 -42) (-344 128 -42) (-344 128 -53)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2215" + "plane" "(-357 152 -53) (-344 152 -53) (-344 152 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2214" + "plane" "(-344 152 -42) (-344 152 -53) (-344 128 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2213" + "plane" "(-344 128 -42) (-351 128 -42) (-351 152 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2212" + "plane" "(-344 152 -53) (-357 152 -53) (-357 128 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2211" + "plane" "(-351 128 -42) (-357 128 -53) (-357 152 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-0.478852 0 -0.877896 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6834" + side + { + "id" "2222" + "plane" "(-459 128 -53) (-472 128 -53) (-472 128 -42)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2221" + "plane" "(-465 152 -42) (-472 152 -42) (-472 152 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2220" + "plane" "(-472 128 -42) (-472 128 -53) (-472 152 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2219" + "plane" "(-465 128 -42) (-472 128 -42) (-472 152 -42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2218" + "plane" "(-459 152 -53) (-472 152 -53) (-472 128 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2217" + "plane" "(-465 152 -42) (-459 152 -53) (-459 128 -53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0.478852 0 -0.877896 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6835" + side + { + "id" "2228" + "plane" "(-468 128 -31) (-472 128 -31) (-472 128 -19)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2227" + "plane" "(-469 152 -19) (-472 152 -19) (-472 152 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2226" + "plane" "(-472 128 -19) (-472 128 -31) (-472 152 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2225" + "plane" "(-469 128 -19) (-472 128 -19) (-472 152 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2224" + "plane" "(-468 152 -31) (-472 152 -31) (-472 128 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2223" + "plane" "(-469 152 -19) (-468 152 -31) (-468 128 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0.0830455 0 -0.996546 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6836" + side + { + "id" "2234" + "plane" "(-384 128 37) (-344 128 37) (-344 128 32)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2233" + "plane" "(-374 152 32) (-344 152 32) (-344 152 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2232" + "plane" "(-344 152 37) (-344 152 32) (-344 128 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2231" + "plane" "(-344 128 37) (-384 128 37) (-384 152 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2230" + "plane" "(-344 152 32) (-374 152 32) (-374 128 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2229" + "plane" "(-374 152 32) (-384 152 37) (-384 128 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.894427 0 0.447214 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6837" + side + { + "id" "2240" + "plane" "(-374 128 32) (-344 128 32) (-344 128 26)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2239" + "plane" "(-367 152 26) (-344 152 26) (-344 152 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2238" + "plane" "(-344 152 32) (-344 152 26) (-344 128 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2237" + "plane" "(-344 128 32) (-374 128 32) (-374 152 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2236" + "plane" "(-344 152 26) (-367 152 26) (-367 128 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2235" + "plane" "(-367 152 26) (-374 152 32) (-374 128 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.759256 0 0.650791 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6838" + side + { + "id" "2246" + "plane" "(-367 128 26) (-344 128 26) (-344 128 15)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2245" + "plane" "(-357 152 15) (-344 152 15) (-344 152 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2244" + "plane" "(-344 152 26) (-344 152 15) (-344 128 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2243" + "plane" "(-344 128 26) (-367 128 26) (-367 152 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2242" + "plane" "(-344 152 15) (-357 152 15) (-357 128 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2241" + "plane" "(-367 128 26) (-357 128 15) (-357 152 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0.672673 0 -0.73994 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6839" + side + { + "id" "2252" + "plane" "(-465 128 4.00001) (-472 128 4.00001) (-472 128 15)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2251" + "plane" "(-459 152 15) (-472 152 15) (-472 152 4.00001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2250" + "plane" "(-472 128 15) (-472 128 4.00001) (-472 152 4.00001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2249" + "plane" "(-459 128 15) (-472 128 15) (-472 152 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2248" + "plane" "(-465 152 4.00001) (-472 152 4.00001) (-472 128 4.00001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2247" + "plane" "(-459 152 15) (-465 152 4.00001) (-465 128 4.00001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-0.478852 0 -0.877896 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6840" + side + { + "id" "2258" + "plane" "(-468 128 -7) (-472 128 -7) (-472 128 4.00001)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2257" + "plane" "(-465 152 4.00001) (-472 152 4.00001) (-472 152 -7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2256" + "plane" "(-472 128 4.00001) (-472 128 -7) (-472 152 -7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2255" + "plane" "(-465 128 4.00001) (-472 128 4.00001) (-472 152 4.00001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2254" + "plane" "(-468 152 -7) (-472 152 -7) (-472 128 -7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2253" + "plane" "(-465 152 4.00001) (-468 152 -7) (-468 128 -7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-0.263117 0 -0.964764 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6841" + side + { + "id" "2264" + "plane" "(-469 128 -19) (-472 128 -19) (-472 128 -7)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2263" + "plane" "(-468 152 -7) (-472 152 -7) (-472 152 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2262" + "plane" "(-472 128 -7) (-472 128 -19) (-472 152 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2261" + "plane" "(-468 128 -7) (-472 128 -7) (-472 152 -7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2260" + "plane" "(-469 152 -19) (-472 152 -19) (-472 128 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2259" + "plane" "(-468 152 -7) (-469 152 -19) (-469 128 -19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-0.0830455 0 -0.996546 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6842" + side + { + "id" "2270" + "plane" "(-432 128 37) (-472 128 37) (-472 128 43)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2269" + "plane" "(-414 152 43) (-472 152 43) (-472 152 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2268" + "plane" "(-472 128 43) (-472 128 37) (-472 152 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2267" + "plane" "(-432 152 37) (-472 152 37) (-472 128 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2266" + "plane" "(-414 128 43) (-472 128 43) (-472 152 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2265" + "plane" "(-414 152 43) (-432 152 37) (-432 128 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.948683 0 -0.316228 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6843" + side + { + "id" "2276" + "plane" "(-402 128 43) (-344 128 43) (-344 128 37)" + "material" "TILE/WHITE_WALL_TILE003A" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2275" + "plane" "(-384 152 37) (-344 152 37) (-344 152 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2274" + "plane" "(-344 152 43) (-344 152 37) (-344 128 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2273" + "plane" "(-344 152 37) (-384 152 37) (-384 128 37)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2272" + "plane" "(-344 128 43) (-402 128 43) (-402 152 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2271" + "plane" "(-384 152 37) (-402 152 43) (-402 128 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.948683 0 0.316228 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 7000]" + } +} +entity +{ + "id" "7407" + "classname" "trigger_once" + "origin" "-408 72 0" + "solid" "6" + "spawnflags" "4097" + "StartDisabled" "0" + connections + { + "OnTrigger" "@entrance_airlock_doorClose0-1" + "OnTrigger" "info_signinstance:info_panel;SetActive0-1" + } + solid + { + "id" "7402" + side + { + "id" "2306" + "plane" "(-472 80 -64) (-344 80 -64) (-344 80 64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2305" + "plane" "(-344 64 -64) (-472 64 -64) (-472 64 64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 -63.9961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2304" + "plane" "(-344 64 64) (-472 64 64) (-472 80 64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 -63.9961] 0.25" + "vaxis" "[0 -1 0 -0.1465] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2303" + "plane" "(-344 80 -64) (-472 80 -64) (-472 64 -64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 -63.9961] 0.25" + "vaxis" "[0 -1 0 -0.1465] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2302" + "plane" "(-344 80 64) (-344 80 -64) (-344 64 -64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 0 1 63.8555] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2301" + "plane" "(-472 64 64) (-472 64 -64) (-472 80 -64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 0 -1 -32] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "27891" + side + { + "id" "6163" + "plane" "(-344 128 64) (-328 128 64) (-328 80 64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6164" + "plane" "(-344 80 -64) (-328 80 -64) (-328 128 -64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6165" + "plane" "(-344 128 64) (-344 80 64) (-344 80 -64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6166" + "plane" "(-328 128 -64) (-328 80 -64) (-328 80 64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6167" + "plane" "(-328 128 64) (-344 128 64) (-344 128 -64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6168" + "plane" "(-328 80 -64) (-344 80 -64) (-344 80 64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 0] 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" "27890" + side + { + "id" "6157" + "plane" "(-488 128 64) (-472 128 64) (-472 80 64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6158" + "plane" "(-488 80 -64) (-472 80 -64) (-472 128 -64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6159" + "plane" "(-488 128 64) (-488 80 64) (-488 80 -64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6160" + "plane" "(-472 128 -64) (-472 80 -64) (-472 80 64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6161" + "plane" "(-472 128 64) (-488 128 64) (-488 128 -64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6162" + "plane" "(-472 80 -64) (-488 80 -64) (-488 80 64)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 0] 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" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5500]" + } +} +entity +{ + "id" "6011" + "classname" "linked_portal_door" + "angles" "0 270 0" + "height" "64" + "partnername" "@entrance_portal_elevator_side" + "renderamt" "255" + "rendercolor" "255 255 255" + "targetname" "@entrance_portal_chamber_side" + "width" "64" + "origin" "-408 144 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -15768]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_up_track.vmf b/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_up_track.vmf index 692c885edb..2a7e0c6e6d 100644 --- a/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_up_track.vmf +++ b/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_entrance_up_track.vmf @@ -2,7 +2,7 @@ versioninfo { "editorversion" "400" "editorbuild" "9672" - "mapversion" "359" + "mapversion" "361" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "359" + "mapversion" "361" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -6315,7 +6315,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-80 184 -160" editor @@ -6338,7 +6338,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-48 184 -224" editor @@ -6350,246 +6350,6 @@ entity } } entity -{ - "id" "18777" - "classname" "func_detail" - solid - { - "id" "18778" - side - { - "id" "4614" - "plane" "(-39 186 -168) (-39 186 -280) (-39 185 -280)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4613" - "plane" "(-57 185 -168) (-57 185 -280) (-57 186 -280)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4612" - "plane" "(-57 186 -168) (-57 186 -280) (-39 186 -280)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4611" - "plane" "(-39 185 -168) (-39 185 -280) (-57 185 -280)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 0 -1 -24] 2" - "vaxis" "[-1 0 0 20] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "4610" - "plane" "(-57 186 -280) (-57 185 -280) (-39 185 -280)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4609" - "plane" "(-57 185 -168) (-57 186 -168) (-39 186 -168)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "18706" - side - { - "id" "4626" - "plane" "(-71 186 -104) (-71 186 -216) (-71 185 -216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4625" - "plane" "(-89 185 -104) (-89 185 -216) (-89 186 -216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4624" - "plane" "(-89 186 -104) (-89 186 -216) (-71 186 -216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4623" - "plane" "(-71 185 -104) (-71 185 -216) (-89 185 -216)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 0 -1 -8] 2" - "vaxis" "[-1 0 0 12] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "4622" - "plane" "(-89 186 -216) (-89 185 -216) (-71 185 -216)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4621" - "plane" "(-89 185 -104) (-89 186 -104) (-71 186 -104)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "14173" - side - { - "id" "4602" - "plane" "(-103 186 -168) (-103 186 -280) (-103 185 -280)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4601" - "plane" "(-121 185 -168) (-121 185 -280) (-121 186 -280)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4600" - "plane" "(-121 186 -168) (-121 186 -280) (-103 186 -280)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4599" - "plane" "(-103 185 -168) (-103 185 -280) (-121 185 -280)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 0 -1 -24] 2" - "vaxis" "[-1 0 0 4] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "4598" - "plane" "(-121 186 -280) (-121 185 -280) (-103 185 -280)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4597" - "plane" "(-121 185 -168) (-121 186 -168) (-103 186 -168)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity { "id" "16626" "classname" "light" @@ -7062,7 +6822,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-112 -184 -224" editor @@ -7074,94 +6834,6 @@ entity } } entity -{ - "id" "14091" - "classname" "func_detail" - solid - { - "id" "14065" - side - { - "id" "3229" - "plane" "(-103 -185 -168) (-103 -185 -280) (-103 -186 -280)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3228" - "plane" "(-121 -186 -168) (-121 -186 -280) (-121 -185 -280)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3227" - "plane" "(-103 -186 -168) (-103 -186 -280) (-121 -186 -280)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3226" - "plane" "(-121 -185 -168) (-121 -185 -280) (-103 -185 -280)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 0 1 24] 2" - "vaxis" "[-1 0 0 4] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3225" - "plane" "(-121 -186 -168) (-121 -185 -168) (-103 -185 -168)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3224" - "plane" "(-121 -185 -280) (-121 -186 -280) (-103 -186 -280)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity { "id" "14108" "classname" "prop_static" @@ -7173,7 +6845,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "144 0 -96" editor @@ -7185,94 +6857,6 @@ entity } } entity -{ - "id" "14118" - "classname" "func_detail" - solid - { - "id" "14119" - side - { - "id" "3373" - "plane" "(153 56 -95) (153 -56 -95) (153 -56 -94)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3372" - "plane" "(135 -56 -95) (135 56 -95) (135 56 -94)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3371" - "plane" "(135 -56 -94) (135 56 -94) (153 56 -94)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3370" - "plane" "(135 56 -95) (135 -56 -95) (153 -56 -95)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 1 0 32] 2" - "vaxis" "[-1 0 0 4] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3369" - "plane" "(135 56 -94) (135 56 -95) (153 56 -95)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3368" - "plane" "(153 -56 -94) (153 -56 -95) (135 -56 -95)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity { "id" "14162" "classname" "prop_static" @@ -7284,7 +6868,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-112 184 -224" editor diff --git a/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_exit_1.vmf b/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_exit_1.vmf index 0674b3c61f..43cf1412c7 100644 --- a/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_exit_1.vmf +++ b/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_exit_1.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8997" - "mapversion" "168" + "editorbuild" "9672" + "mapversion" "171" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "168" + "mapversion" "171" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -1744,9 +1744,9 @@ entity { "id" "2760" "plane" "(-184 -64 -64) (-184 -86 -64) (-184 -86 64)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[0 1 0 344] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -38] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2082,8 +2082,8 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "1" - "solid" "0" + "skin" "$strip_skin" + "solid" "6" "origin" "-168 64 7.62939e-006" editor { @@ -2105,8 +2105,8 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "1" - "solid" "0" + "skin" "$strip_skin" + "solid" "6" "origin" "-264 64 1.52588e-005" editor { @@ -2128,8 +2128,8 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "1" - "solid" "0" + "skin" "$strip_skin" + "solid" "6" "origin" "-360 64 1.52588e-005" editor { @@ -2151,8 +2151,8 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "1" - "solid" "0" + "skin" "$strip_skin" + "solid" "6" "origin" "-168 -64 7.62939e-006" editor { @@ -2174,8 +2174,8 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "1" - "solid" "0" + "skin" "$strip_skin" + "solid" "6" "origin" "-264 -64 1.52588e-005" editor { @@ -2197,8 +2197,8 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "1" - "solid" "0" + "skin" "$strip_skin" + "solid" "6" "origin" "-360 -64 1.52588e-005" editor { @@ -2209,474 +2209,6 @@ entity } } entity -{ - "id" "7952" - "classname" "func_detail" - solid - { - "id" "7953" - side - { - "id" "2705" - "plane" "(-159 -71 56) (-159 -71 -56) (-159 -72 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2704" - "plane" "(-177 -72 56) (-177 -72 -56) (-177 -71 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2703" - "plane" "(-177 -72 -56) (-177 -72 56) (-159 -72 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2702" - "plane" "(-177 -71 56) (-177 -71 -56) (-159 -71 -56)" - "material" "LIGHTS/LIGHT_PANEL_WARM" - "uaxis" "[0 0 1 16] 4" - "vaxis" "[-1 0 0 0] 4" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2701" - "plane" "(-177 -72 56) (-177 -71 56) (-159 -71 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[-1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2700" - "plane" "(-177 -71 -56) (-177 -72 -56) (-159 -72 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[-1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "7845" - side - { - "id" "2681" - "plane" "(-351 -71 56) (-351 -71 -56) (-351 -72 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2680" - "plane" "(-369 -72 56) (-369 -72 -56) (-369 -71 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2679" - "plane" "(-369 -72 -56) (-369 -72 56) (-351 -72 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2678" - "plane" "(-369 -71 56) (-369 -71 -56) (-351 -71 -56)" - "material" "LIGHTS/LIGHT_PANEL_WARM" - "uaxis" "[0 0 1 16] 4" - "vaxis" "[-1 0 0 0] 4" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2677" - "plane" "(-369 -72 56) (-369 -71 56) (-351 -71 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2676" - "plane" "(-369 -71 -56) (-369 -72 -56) (-351 -72 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[-1 0 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "7947" - side - { - "id" "2693" - "plane" "(-255 -71 56) (-255 -71 -56) (-255 -72 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2692" - "plane" "(-273 -72 56) (-273 -72 -56) (-273 -71 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2691" - "plane" "(-273 -72 -56) (-273 -72 56) (-255 -72 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2690" - "plane" "(-273 -71 56) (-273 -71 -56) (-255 -71 -56)" - "material" "LIGHTS/LIGHT_PANEL_WARM" - "uaxis" "[0 0 1 16] 4" - "vaxis" "[-1 0 0 0] 4" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2689" - "plane" "(-273 -72 56) (-273 -71 56) (-255 -71 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[-1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2688" - "plane" "(-273 -71 -56) (-273 -72 -56) (-255 -72 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[-1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "7961" - side - { - "id" "2735" - "plane" "(-177 71 56) (-177 71 -56) (-177 72 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2734" - "plane" "(-159 72 56) (-159 72 -56) (-159 71 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2733" - "plane" "(-177 72 56) (-177 72 -56) (-159 72 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2732" - "plane" "(-177 71 -56) (-177 71 56) (-159 71 56)" - "material" "LIGHTS/LIGHT_PANEL_WARM" - "uaxis" "[0 0 1 16] 4" - "vaxis" "[1 0 0 0] 4" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2731" - "plane" "(-177 71 56) (-177 72 56) (-159 72 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2730" - "plane" "(-177 72 -56) (-177 71 -56) (-159 71 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "7963" - side - { - "id" "2741" - "plane" "(-273 71 56) (-273 71 -56) (-273 72 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2740" - "plane" "(-255 72 56) (-255 72 -56) (-255 71 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2739" - "plane" "(-273 72 56) (-273 72 -56) (-255 72 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2738" - "plane" "(-273 71 -56) (-273 71 56) (-255 71 56)" - "material" "LIGHTS/LIGHT_PANEL_WARM" - "uaxis" "[0 0 1 16] 4" - "vaxis" "[1 0 0 0] 4" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2737" - "plane" "(-273 71 56) (-273 72 56) (-255 72 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2736" - "plane" "(-273 72 -56) (-273 71 -56) (-255 71 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "7959" - side - { - "id" "2729" - "plane" "(-369 71 56) (-369 71 -56) (-369 72 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2728" - "plane" "(-351 72 56) (-351 72 -56) (-351 71 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2727" - "plane" "(-369 72 56) (-369 72 -56) (-351 72 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2726" - "plane" "(-369 71 -56) (-369 71 56) (-351 71 56)" - "material" "LIGHTS/LIGHT_PANEL_WARM" - "uaxis" "[0 0 1 16] 4" - "vaxis" "[1 0 0 0] 4" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2725" - "plane" "(-369 71 56) (-369 72 56) (-351 72 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2724" - "plane" "(-369 72 -56) (-369 71 -56) (-351 71 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[1 0 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity { "id" "6069" "classname" "func_detail" diff --git a/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_exit_2.vmf b/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_exit_2.vmf index f5f886b200..4a41db6901 100644 --- a/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_exit_2.vmf +++ b/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_exit_2.vmf @@ -1,13 +1,19 @@ versioninfo { "editorversion" "400" - "editorbuild" "8997" - "mapversion" "168" + "editorbuild" "9672" + "mapversion" "171" "formatversion" "100" "prefab" "0" } visgroups { + visgroup + { + "name" "Spots" + "visgroupid" "19" + "color" "217 94 183" + } } viewsettings { @@ -20,7 +26,7 @@ viewsettings world { "id" "1" - "mapversion" "168" + "mapversion" "171" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -1906,178 +1912,208 @@ world } } } -entity +hidden { - "id" "9825" - "classname" "light_spot" - "_cone" "60" - "_constant_attn" "0" - "_distance" "0" - "_exponent" "1" - "_fifty_percent_distance" "0" - "_hardfalloff" "0" - "_inner_cone" "15" - "_light" "254 233 194 25" - "_lighthdr" "-1 -1 -1 1" - "_lightscalehdr" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "0" - "angles" "50 241.5 0" - "pitch" "50" - "style" "0" - "origin" "-360 68 40" - editor + entity { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "id" "9825" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "15" + "_light" "254 233 194 25" + "_lighthdr" "-1 -1 -1 1" + "_lightscalehdr" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "_zero_percent_distance" "0" + "angles" "50 241.5 0" + "pitch" "50" + "style" "0" + "origin" "-360 68 40" + editor + { + "color" "255 255 0" + "visgroupid" "19" + "visgroupshown" "0" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } } } -entity +hidden { - "id" "9901" - "classname" "light_spot" - "_cone" "60" - "_constant_attn" "0" - "_distance" "0" - "_exponent" "1" - "_fifty_percent_distance" "0" - "_hardfalloff" "0" - "_inner_cone" "15" - "_light" "254 233 194 25" - "_lighthdr" "-1 -1 -1 1" - "_lightscalehdr" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "0" - "angles" "50 90 0" - "pitch" "50" - "style" "0" - "origin" "-264 -64 40" - editor + entity { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "id" "9901" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "15" + "_light" "254 233 194 25" + "_lighthdr" "-1 -1 -1 1" + "_lightscalehdr" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "_zero_percent_distance" "0" + "angles" "50 90 0" + "pitch" "50" + "style" "0" + "origin" "-264 -64 40" + editor + { + "color" "255 255 0" + "visgroupid" "19" + "visgroupshown" "0" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } } } -entity +hidden { - "id" "9915" - "classname" "light_spot" - "_cone" "60" - "_constant_attn" "0" - "_distance" "0" - "_exponent" "1" - "_fifty_percent_distance" "0" - "_hardfalloff" "0" - "_inner_cone" "15" - "_light" "254 233 194 25" - "_lighthdr" "-1 -1 -1 1" - "_lightscalehdr" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "0" - "angles" "50 90 0" - "pitch" "50" - "style" "0" - "origin" "-168 -64 40" - editor + entity { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "id" "9915" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "15" + "_light" "254 233 194 25" + "_lighthdr" "-1 -1 -1 1" + "_lightscalehdr" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "_zero_percent_distance" "0" + "angles" "50 90 0" + "pitch" "50" + "style" "0" + "origin" "-168 -64 40" + editor + { + "color" "255 255 0" + "visgroupid" "19" + "visgroupshown" "0" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } } } -entity +hidden { - "id" "10188" - "classname" "light_spot" - "_cone" "60" - "_constant_attn" "0" - "_distance" "0" - "_exponent" "1" - "_fifty_percent_distance" "0" - "_hardfalloff" "0" - "_inner_cone" "15" - "_light" "254 233 194 25" - "_lighthdr" "-1 -1 -1 1" - "_lightscalehdr" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "0" - "angles" "50 270 0" - "pitch" "-50" - "style" "0" - "origin" "-360 68 -40" - editor + entity { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "id" "10188" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "15" + "_light" "254 233 194 25" + "_lighthdr" "-1 -1 -1 1" + "_lightscalehdr" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "_zero_percent_distance" "0" + "angles" "50 270 0" + "pitch" "-50" + "style" "0" + "origin" "-360 68 -40" + editor + { + "color" "255 255 0" + "visgroupid" "19" + "visgroupshown" "0" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } } } -entity +hidden { - "id" "10195" - "classname" "light_spot" - "_cone" "60" - "_constant_attn" "0" - "_distance" "0" - "_exponent" "1" - "_fifty_percent_distance" "0" - "_hardfalloff" "0" - "_inner_cone" "15" - "_light" "254 233 194 25" - "_lighthdr" "-1 -1 -1 1" - "_lightscalehdr" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "0" - "angles" "50 90 90" - "pitch" "-50" - "style" "0" - "origin" "-264 -64 -40" - editor + entity { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "id" "10195" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "15" + "_light" "254 233 194 25" + "_lighthdr" "-1 -1 -1 1" + "_lightscalehdr" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "_zero_percent_distance" "0" + "angles" "50 90 90" + "pitch" "-50" + "style" "0" + "origin" "-264 -64 -40" + editor + { + "color" "255 255 0" + "visgroupid" "19" + "visgroupshown" "0" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } } } -entity +hidden { - "id" "10202" - "classname" "light_spot" - "_cone" "60" - "_constant_attn" "0" - "_distance" "0" - "_exponent" "1" - "_fifty_percent_distance" "0" - "_hardfalloff" "0" - "_inner_cone" "15" - "_light" "254 233 194 25" - "_lighthdr" "-1 -1 -1 1" - "_lightscalehdr" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "0" - "angles" "50 90 90" - "pitch" "-50" - "style" "0" - "origin" "-168 -64 -40" - editor + entity { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "id" "10202" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "15" + "_light" "254 233 194 25" + "_lighthdr" "-1 -1 -1 1" + "_lightscalehdr" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "_zero_percent_distance" "0" + "angles" "50 90 90" + "pitch" "-50" + "style" "0" + "origin" "-168 -64 -40" + editor + { + "color" "255 255 0" + "visgroupid" "19" + "visgroupshown" "0" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } } } entity @@ -2356,158 +2392,6 @@ entity "visgroupautoshown" "1" } } - solid - { - "id" "9072" - side - { - "id" "3425" - "plane" "(-273 -71.0001 -56) (-273 -88 -56) (-255 -88 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3424" - "plane" "(-273 -88 56) (-273 -71.0001 56) (-255 -71.0001 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3423" - "plane" "(-255 -71.0001 -56) (-255 -88 -56) (-255 -88 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3422" - "plane" "(-273 -88 -56) (-273 -71.0001 -56) (-273 -71.0001 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3421" - "plane" "(-255 -71.0001 56) (-273 -71.0001 56) (-273 -71.0001 -56)" - "material" "LIGHTS/LIGHT_PANEL_WARM" - "uaxis" "[-1 0 0 -60] 4" - "vaxis" "[0 0 1 48] 4" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3420" - "plane" "(-255 -88 -56) (-273 -88 -56) (-273 -88 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "9161" - side - { - "id" "3431" - "plane" "(-177 -71 -56) (-177 -87.9999 -56) (-159 -87.9999 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3430" - "plane" "(-177 -87.9999 56) (-177 -71 56) (-159 -71 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3429" - "plane" "(-159 -71 -56) (-159 -87.9999 -56) (-159 -87.9999 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3428" - "plane" "(-177 -87.9999 -56) (-177 -71 -56) (-177 -71 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3427" - "plane" "(-159 -71 56) (-177 -71 56) (-177 -71 -56)" - "material" "LIGHTS/LIGHT_PANEL_WARM" - "uaxis" "[-1 0 0 -36] 4" - "vaxis" "[0 0 1 48] 4" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3426" - "plane" "(-159 -87.9999 -56) (-177 -87.9999 -56) (-177 -87.9999 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -32] 0.25" - "vaxis" "[0 0 1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } editor { "color" "0 180 0" @@ -2672,82 +2556,6 @@ entity "visgroupautoshown" "1" } } - solid - { - "id" "9069" - side - { - "id" "3437" - "plane" "(-369 88.0001 -56) (-369 71 -56) (-351 71 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3436" - "plane" "(-369 71 56) (-369 88.0001 56) (-351 88.0001 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3435" - "plane" "(-369 71 -56) (-369 88.0001 -56) (-369 88.0001 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3434" - "plane" "(-351 88.0001 -56) (-351 71 -56) (-351 71 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3433" - "plane" "(-351 71 -56) (-369 71 -56) (-369 71 56)" - "material" "LIGHTS/LIGHT_PANEL_WARM" - "uaxis" "[1 0 0 32] 4" - "vaxis" "[0 0 1 48] 4" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3432" - "plane" "(-351 88.0001 56) (-369 88.0001 56) (-369 88.0001 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 1 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } editor { "color" "0 180 0" @@ -2768,7 +2576,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "1" + "skin" "$strip_skin" "solid" "6" "origin" "-264 -64 1.52588e-005" editor @@ -2791,7 +2599,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "1" + "skin" "$strip_skin" "solid" "6" "origin" "-168 -64 7.62939e-006" editor @@ -2814,7 +2622,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "1" + "skin" "$strip_skin" "solid" "6" "origin" "-360 64 1.52588e-005" editor diff --git a/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_exit_3.vmf b/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_exit_3.vmf index 54d19add5a..bf5ce4a69a 100644 --- a/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_exit_3.vmf +++ b/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_exit_3.vmf @@ -1,13 +1,19 @@ versioninfo { "editorversion" "400" - "editorbuild" "8997" - "mapversion" "192" + "editorbuild" "9672" + "mapversion" "197" "formatversion" "100" "prefab" "0" } visgroups { + visgroup + { + "name" "bad spots" + "visgroupid" "19" + "color" "190 231 148" + } } viewsettings { @@ -20,7 +26,7 @@ viewsettings world { "id" "1" - "mapversion" "192" + "mapversion" "197" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -3438,236 +3444,276 @@ entity "logicalpos" "[0 3500]" } } -entity +hidden { - "id" "13021" - "classname" "light_spot" - "_cone" "60" - "_constant_attn" "0" - "_distance" "0" - "_exponent" "1" - "_fifty_percent_distance" "0" - "_hardfalloff" "0" - "_inner_cone" "15" - "_light" "254 233 194 25" - "_lighthdr" "-1 -1 -1 1" - "_lightscalehdr" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "0" - "angles" "-50 90 90" - "pitch" "-50" - "style" "0" - "origin" "-168 -64 -40" - editor + entity { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "id" "13021" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "15" + "_light" "254 233 194 25" + "_lighthdr" "-1 -1 -1 1" + "_lightscalehdr" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "_zero_percent_distance" "0" + "angles" "-50 90 90" + "pitch" "-50" + "style" "0" + "origin" "-168 -64 -40" + editor + { + "color" "255 255 0" + "visgroupid" "19" + "visgroupshown" "0" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } } } -entity +hidden { - "id" "13028" - "classname" "light_spot" - "_cone" "60" - "_constant_attn" "0" - "_distance" "0" - "_exponent" "1" - "_fifty_percent_distance" "0" - "_hardfalloff" "0" - "_inner_cone" "15" - "_light" "254 233 194 25" - "_lighthdr" "-1 -1 -1 1" - "_lightscalehdr" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "0" - "angles" "50 90 0" - "pitch" "50" - "style" "0" - "origin" "-168 -64 40" - editor + entity { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "id" "13028" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "15" + "_light" "254 233 194 25" + "_lighthdr" "-1 -1 -1 1" + "_lightscalehdr" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "_zero_percent_distance" "0" + "angles" "50 90 0" + "pitch" "50" + "style" "0" + "origin" "-168 -64 40" + editor + { + "color" "255 255 0" + "visgroupid" "19" + "visgroupshown" "0" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } } } -entity +hidden { - "id" "13035" - "classname" "light_spot" - "_cone" "60" - "_constant_attn" "0" - "_distance" "0" - "_exponent" "1" - "_fifty_percent_distance" "0" - "_hardfalloff" "0" - "_inner_cone" "15" - "_light" "254 233 194 25" - "_lighthdr" "-1 -1 -1 1" - "_lightscalehdr" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "0" - "angles" "-50 270 0" - "pitch" "-50" - "style" "0" - "origin" "-328 68 -40" - editor + entity { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "id" "13035" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "15" + "_light" "254 233 194 25" + "_lighthdr" "-1 -1 -1 1" + "_lightscalehdr" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "_zero_percent_distance" "0" + "angles" "-50 270 0" + "pitch" "-50" + "style" "0" + "origin" "-328 68 -40" + editor + { + "color" "255 255 0" + "visgroupid" "19" + "visgroupshown" "0" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } } } -entity +hidden { - "id" "13196" - "classname" "light_spot" - "_cone" "60" - "_constant_attn" "0" - "_distance" "0" - "_exponent" "1" - "_fifty_percent_distance" "0" - "_hardfalloff" "0" - "_inner_cone" "15" - "_light" "254 233 194 25" - "_lighthdr" "-1 -1 -1 1" - "_lightscalehdr" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "0" - "angles" "50 270 0" - "pitch" "50" - "style" "0" - "origin" "-328 68 40" - editor + entity { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "id" "13196" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "15" + "_light" "254 233 194 25" + "_lighthdr" "-1 -1 -1 1" + "_lightscalehdr" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "_zero_percent_distance" "0" + "angles" "50 270 0" + "pitch" "50" + "style" "0" + "origin" "-328 68 40" + editor + { + "color" "255 255 0" + "visgroupid" "19" + "visgroupshown" "0" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } } } -entity +hidden { - "id" "13259" - "classname" "light_spot" - "_cone" "60" - "_constant_attn" "0" - "_distance" "0" - "_exponent" "1" - "_fifty_percent_distance" "0" - "_hardfalloff" "0" - "_inner_cone" "15" - "_light" "254 233 194 25" - "_lighthdr" "-1 -1 -1 1" - "_lightscalehdr" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "0" - "angles" "50 90 0" - "pitch" "50" - "style" "0" - "origin" "-424 -64 40" - editor + entity { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "id" "13259" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "15" + "_light" "254 233 194 25" + "_lighthdr" "-1 -1 -1 1" + "_lightscalehdr" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "_zero_percent_distance" "0" + "angles" "50 90 0" + "pitch" "50" + "style" "0" + "origin" "-424 -64 40" + editor + { + "color" "255 255 0" + "visgroupid" "19" + "visgroupshown" "0" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } } } -entity +hidden { - "id" "13266" - "classname" "light_spot" - "_cone" "60" - "_constant_attn" "0" - "_distance" "0" - "_exponent" "1" - "_fifty_percent_distance" "0" - "_hardfalloff" "0" - "_inner_cone" "15" - "_light" "254 233 194 25" - "_lighthdr" "-1 -1 -1 1" - "_lightscalehdr" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "0" - "angles" "-50 90 90" - "pitch" "-50" - "style" "0" - "origin" "-424 -64 -40" - editor + entity { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "id" "13266" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "15" + "_light" "254 233 194 25" + "_lighthdr" "-1 -1 -1 1" + "_lightscalehdr" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "_zero_percent_distance" "0" + "angles" "-50 90 90" + "pitch" "-50" + "style" "0" + "origin" "-424 -64 -40" + editor + { + "color" "255 255 0" + "visgroupid" "19" + "visgroupshown" "0" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } } } -entity +hidden { - "id" "13487" - "classname" "light_spot" - "_cone" "60" - "_constant_attn" "0" - "_distance" "0" - "_exponent" "1" - "_fifty_percent_distance" "0" - "_hardfalloff" "0" - "_inner_cone" "15" - "_light" "254 233 194 25" - "_lighthdr" "-1 -1 -1 1" - "_lightscalehdr" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "0" - "angles" "-40 90 0" - "pitch" "-40" - "style" "0" - "origin" "-424 39.9999 64.0001" - editor + entity { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "id" "13487" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "15" + "_light" "254 233 194 25" + "_lighthdr" "-1 -1 -1 1" + "_lightscalehdr" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "_zero_percent_distance" "0" + "angles" "-40 90 0" + "pitch" "-40" + "style" "0" + "origin" "-424 39.9999 64.0001" + editor + { + "color" "255 255 0" + "visgroupid" "19" + "visgroupshown" "0" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } } } -entity +hidden { - "id" "13494" - "classname" "light_spot" - "_cone" "60" - "_constant_attn" "0" - "_distance" "0" - "_exponent" "1" - "_fifty_percent_distance" "0" - "_hardfalloff" "0" - "_inner_cone" "15" - "_light" "254 233 194 25" - "_lighthdr" "-1 -1 -1 1" - "_lightscalehdr" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "0" - "angles" "-40 270 -90" - "pitch" "-40" - "style" "0" - "origin" "-424 -40.0001 64.0001" - editor + entity { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "id" "13494" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "15" + "_light" "254 233 194 25" + "_lighthdr" "-1 -1 -1 1" + "_lightscalehdr" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "_zero_percent_distance" "0" + "angles" "-40 270 -90" + "pitch" "-40" + "style" "0" + "origin" "-424 -40.0001 64.0001" + editor + { + "color" "255 255 0" + "visgroupid" "19" + "visgroupshown" "0" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } } } entity @@ -3923,94 +3969,6 @@ entity } } entity -{ - "id" "10131" - "classname" "func_detail" - solid - { - "id" "10132" - side - { - "id" "3102" - "plane" "(-159 -71 56.0001) (-159 -71 -55.9999) (-159 -72 -55.9999)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3101" - "plane" "(-177 -72 56.0001) (-177 -72 -55.9999) (-177 -71 -55.9999)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3100" - "plane" "(-177 -72 -55.9999) (-177 -72 56.0001) (-159 -72 56.0001)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3099" - "plane" "(-177 -71 56.0001) (-177 -71 -55.9999) (-159 -71 -55.9999)" - "material" "LIGHTS/LIGHT_PANEL_WARM" - "uaxis" "[0 0 1 32] 4" - "vaxis" "[-1 0 0 54] 4" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3098" - "plane" "(-177 -72 56.0001) (-177 -71 56.0001) (-159 -71 56.0001)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3097" - "plane" "(-177 -71 -55.9999) (-177 -72 -55.9999) (-159 -72 -55.9999)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity { "id" "10133" "classname" "prop_static" @@ -4022,14 +3980,14 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "1" + "skin" "$strip_skin" "solid" "6" "origin" "-168 -64 6.86646e-005" editor { "color" "255 255 0" "visgroupshown" "1" - "visgroupautoshown" "0" + "visgroupautoshown" "1" "logicalpos" "[2500 -12768]" } } @@ -4045,14 +4003,14 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "1" + "skin" "$strip_skin" "solid" "6" "origin" "-328 64 7.62939e-005" editor { "color" "255 255 0" "visgroupshown" "1" - "visgroupautoshown" "0" + "visgroupautoshown" "1" "logicalpos" "[2500 -12768]" } } @@ -4062,24 +4020,24 @@ entity "classname" "func_detail" solid { - "id" "10377" + "id" "7834" side { - "id" "3180" - "plane" "(-337 71 56.0001) (-337 71 -55.9999) (-337 72 -55.9999)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "3366" + "plane" "(-184 72 -63.9999) (-248 72 -63.9999) (-248 72 64.0001)" + "material" "PROPS/PLASTICWALL002B" + "uaxis" "[1 0 0 480] 0.25" + "vaxis" "[0 0 -1 256] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "8" "smoothing_groups" "0" } side { - "id" "3179" - "plane" "(-319 72 56.0001) (-319 72 -55.9999) (-319 71 -55.9999)" + "id" "3365" + "plane" "(-184 80 64.0001) (-248 80 64.0001) (-248 80 -63.9999)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -4087,44 +4045,44 @@ entity } side { - "id" "3178" - "plane" "(-337 72 56.0001) (-337 72 -55.9999) (-319 72 -55.9999)" + "id" "3364" + "plane" "(-184 72 64.0001) (-248 72 64.0001) (-248 80 64.0001)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3177" - "plane" "(-337 71 -55.9999) (-337 71 56.0001) (-319 71 56.0001)" - "material" "LIGHTS/LIGHT_PANEL_WARM" - "uaxis" "[0 0 1 32] 4" - "vaxis" "[1 0 0 50] 4" + "id" "3363" + "plane" "(-184 80 -63.9999) (-248 80 -63.9999) (-248 72 -63.9999)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3176" - "plane" "(-337 71 56.0001) (-337 72 56.0001) (-319 72 56.0001)" + "id" "3362" + "plane" "(-184 80 64.0001) (-184 80 -63.9999) (-184 72 -63.9999)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3175" - "plane" "(-337 72 -55.9999) (-337 71 -55.9999) (-319 71 -55.9999)" + "id" "3361" + "plane" "(-248 72 64.0001) (-248 72 -63.9999) (-248 80 -63.9999)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4364,82 +4322,6 @@ entity "visgroupautoshown" "1" } } - solid - { - "id" "7834" - side - { - "id" "3366" - "plane" "(-184 72 -63.9999) (-248 72 -63.9999) (-248 72 64.0001)" - "material" "PROPS/PLASTICWALL002B" - "uaxis" "[1 0 0 480] 0.25" - "vaxis" "[0 0 -1 256] 0.25" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3365" - "plane" "(-184 80 64.0001) (-248 80 64.0001) (-248 80 -63.9999)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3364" - "plane" "(-184 72 64.0001) (-248 72 64.0001) (-248 80 64.0001)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3363" - "plane" "(-184 80 -63.9999) (-248 80 -63.9999) (-248 72 -63.9999)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3362" - "plane" "(-184 80 64.0001) (-184 80 -63.9999) (-184 72 -63.9999)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3361" - "plane" "(-248 72 64.0001) (-248 72 -63.9999) (-248 80 -63.9999)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } editor { "color" "0 180 0" @@ -4460,14 +4342,14 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "1" + "skin" "$strip_skin" "solid" "6" "origin" "-424 3.70673e-005 64.0001" editor { "color" "255 255 0" "visgroupshown" "1" - "visgroupautoshown" "0" + "visgroupautoshown" "1" "logicalpos" "[2500 -12768]" } } @@ -4477,68 +4359,68 @@ entity "classname" "func_detail" solid { - "id" "9852" + "id" "9640" side { - "id" "2784" - "plane" "(-415 -56 71.0001) (-415 -56 72.0001) (-415 56 72.0001)" + "id" "2580" + "plane" "(-248 2.16809e-005 72.0001) (-248 -64 72.0001) (-376 -64 72.0001)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2783" - "plane" "(-433 56 71.0001) (-433 56 72.0001) (-433 -56 72.0001)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" + "id" "2579" + "plane" "(-248 -64 64.0001) (-248 2.16809e-005 64.0001) (-376 3.2871e-005 64.0001)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[-1 0 0 -480] 0.25" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2782" - "plane" "(-433 56 72.0001) (-415 56 72.0001) (-415 -56 72.0001)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "2578" + "plane" "(-248 -64 64.0001) (-248 -64 72.0001) (-248 2.16809e-005 72.0001)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS" + "uaxis" "[0 0 1 270] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2781" - "plane" "(-433 -56 71.0001) (-415 -56 71.0001) (-415 56 71.0001)" - "material" "LIGHTS/LIGHT_PANEL_WARM" - "uaxis" "[0 1 0 32] 4" - "vaxis" "[-1 0 0 -10] 4" + "id" "2577" + "plane" "(-376 -64 64.0001) (-376 -64 72.0001) (-248 -64 72.0001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2780" - "plane" "(-433 56 71.0001) (-415 56 71.0001) (-415 56 72.0001)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" + "id" "2576" + "plane" "(-376 3.2871e-005 72.0001) (-376 3.2871e-005 64.0001) (-248 2.16809e-005 64.0001)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS" + "uaxis" "[0 0 1 270] 0.25" + "vaxis" "[-1 0 0 -480] 0.25" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2779" - "plane" "(-433 -56 72.0001) (-415 -56 72.0001) (-415 -56 71.0001)" + "id" "2575" + "plane" "(-376 3.2871e-005 64.0001) (-376 3.2871e-005 72.0001) (-376 -64 72.0001)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -5159,82 +5041,6 @@ entity "visgroupautoshown" "1" } } - solid - { - "id" "9640" - side - { - "id" "2580" - "plane" "(-248 2.16809e-005 72.0001) (-248 -64 72.0001) (-376 -64 72.0001)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2579" - "plane" "(-248 -64 64.0001) (-248 2.16809e-005 64.0001) (-376 3.2871e-005 64.0001)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[0 1 0 256] 0.25" - "vaxis" "[-1 0 0 -480] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2578" - "plane" "(-248 -64 64.0001) (-248 -64 72.0001) (-248 2.16809e-005 72.0001)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS" - "uaxis" "[0 0 1 270] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2577" - "plane" "(-376 -64 64.0001) (-376 -64 72.0001) (-248 -64 72.0001)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2576" - "plane" "(-376 3.2871e-005 72.0001) (-376 3.2871e-005 64.0001) (-248 2.16809e-005 64.0001)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS" - "uaxis" "[0 0 1 270] 0.25" - "vaxis" "[-1 0 0 -480] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2575" - "plane" "(-376 3.2871e-005 64.0001) (-376 3.2871e-005 72.0001) (-376 -64 72.0001)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } editor { "color" "0 180 0" @@ -5255,103 +5061,15 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "1" + "skin" "$strip_skin" "solid" "6" "origin" "-424 -64 7.62939e-005" editor { "color" "255 255 0" "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[2500 -12768]" - } -} -entity -{ - "id" "9878" - "classname" "func_detail" - solid - { - "id" "9879" - side - { - "id" "2868" - "plane" "(-415 -71 56.0001) (-415 -71 -55.9999) (-415 -72 -55.9999)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2867" - "plane" "(-433 -72 56.0001) (-433 -72 -55.9999) (-433 -71 -55.9999)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2866" - "plane" "(-433 -72 -55.9999) (-433 -72 56.0001) (-415 -72 56.0001)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2865" - "plane" "(-433 -71 56.0001) (-433 -71 -55.9999) (-415 -71 -55.9999)" - "material" "LIGHTS/LIGHT_PANEL_WARM" - "uaxis" "[0 0 1 32] 4" - "vaxis" "[-1 0 0 -10] 4" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2864" - "plane" "(-433 -72 56.0001) (-433 -71 56.0001) (-415 -71 56.0001)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2863" - "plane" "(-433 -71 -55.9999) (-433 -72 -55.9999) (-415 -72 -55.9999)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "logicalpos" "[2500 -12768]" } } entity @@ -5372,7 +5090,7 @@ entity { "color" "255 255 0" "visgroupshown" "1" - "visgroupautoshown" "0" + "visgroupautoshown" "1" "logicalpos" "[0 3500]" } } @@ -5394,7 +5112,7 @@ entity { "color" "255 255 0" "visgroupshown" "1" - "visgroupautoshown" "0" + "visgroupautoshown" "1" "logicalpos" "[0 3500]" } } @@ -5416,7 +5134,7 @@ entity { "color" "255 255 0" "visgroupshown" "1" - "visgroupautoshown" "0" + "visgroupautoshown" "1" "logicalpos" "[0 3500]" } } @@ -5438,7 +5156,7 @@ entity { "color" "255 255 0" "visgroupshown" "1" - "visgroupautoshown" "0" + "visgroupautoshown" "1" "logicalpos" "[0 3500]" } } @@ -5460,7 +5178,7 @@ entity { "color" "255 255 0" "visgroupshown" "1" - "visgroupautoshown" "0" + "visgroupautoshown" "1" "logicalpos" "[0 3500]" } } @@ -5482,7 +5200,7 @@ entity { "color" "255 255 0" "visgroupshown" "1" - "visgroupautoshown" "0" + "visgroupautoshown" "1" "logicalpos" "[0 3500]" } } @@ -5504,7 +5222,7 @@ entity { "color" "255 255 0" "visgroupshown" "1" - "visgroupautoshown" "0" + "visgroupautoshown" "1" "logicalpos" "[0 3500]" } } @@ -7287,7 +7005,7 @@ entity { "color" "220 30 220" "visgroupshown" "1" - "visgroupautoshown" "0" + "visgroupautoshown" "1" "logicalpos" "[0 500]" } } diff --git a/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_exit_4.vmf b/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_exit_4.vmf index 4903d31b44..0051231ce0 100644 --- a/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_exit_4.vmf +++ b/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_exit_4.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8997" - "mapversion" "188" + "editorbuild" "9672" + "mapversion" "190" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "188" + "mapversion" "190" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -640,7 +640,7 @@ world "id" "9073" side { - "id" "2657" + "id" "3103" "plane" "(-504 -64 -64) (-440 -64 -64) (-440 -64 64)" "material" "METAL/BLACK_WALL_METAL_002B" "uaxis" "[-1 0 0 -480] 0.25" @@ -651,7 +651,7 @@ world } side { - "id" "2656" + "id" "3102" "plane" "(-440 -88 -64) (-504 -88 -64) (-504 -88 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" @@ -662,7 +662,7 @@ world } side { - "id" "2655" + "id" "3101" "plane" "(-440 -88 64) (-504 -88 64) (-504 -64 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" @@ -673,7 +673,7 @@ world } side { - "id" "2654" + "id" "3100" "plane" "(-440 -64 -64) (-504 -64 -64) (-504 -88 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" @@ -684,7 +684,7 @@ world } side { - "id" "2653" + "id" "3099" "plane" "(-504 -88 64) (-504 -88 -64) (-504 -64 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" @@ -695,7 +695,7 @@ world } side { - "id" "2652" + "id" "3098" "plane" "(-440 -64 64) (-440 -64 -64) (-440 -88 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" @@ -992,7 +992,7 @@ world "plane" "(-64 64 -64) (-68 64 -68) (-68 -64 -68)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-0.707106 0 -0.707107 0] 0.25" + "vaxis" "[-0.707107 0 -0.707107 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1317,7 +1317,7 @@ world "plane" "(-88 -90 64) (-120 -90 64) (-120 -88.0351 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -0.140411] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1328,7 +1328,7 @@ world "plane" "(-88 -88.0351 -64) (-120 -88.0351 -64) (-120 -90 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -0.140411] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1338,7 +1338,7 @@ world "id" "2456" "plane" "(-88 -88.0351 64) (-88 -88.0351 -64) (-88 -90 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0.140411] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1349,7 +1349,7 @@ world "id" "2455" "plane" "(-120 -90 64) (-120 -90 -64) (-120 -88.0351 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -0.140411] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2200,238 +2200,6 @@ world } } entity -{ - "id" "10238" - "classname" "light_spot" - "_cone" "60" - "_constant_attn" "0" - "_distance" "0" - "_exponent" "1" - "_fifty_percent_distance" "0" - "_hardfalloff" "0" - "_inner_cone" "15" - "_light" "194 233 254 25" - "_lighthdr" "-1 -1 -1 1" - "_lightscalehdr" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "0" - "angles" "-50 90 90" - "pitch" "-50" - "style" "0" - "origin" "-424 -64 -40" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "10245" - "classname" "light_spot" - "_cone" "60" - "_constant_attn" "0" - "_distance" "0" - "_exponent" "1" - "_fifty_percent_distance" "0" - "_hardfalloff" "0" - "_inner_cone" "15" - "_light" "194 233 254 25" - "_lighthdr" "-1 -1 -1 1" - "_lightscalehdr" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "0" - "angles" "50 90 0" - "pitch" "50" - "style" "0" - "origin" "-424 -64 40" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "10651" - "classname" "light_spot" - "_cone" "60" - "_constant_attn" "0" - "_distance" "0" - "_exponent" "1" - "_fifty_percent_distance" "0" - "_hardfalloff" "0" - "_inner_cone" "15" - "_light" "194 233 254 25" - "_lighthdr" "-1 -1 -1 1" - "_lightscalehdr" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "0" - "angles" "-40 270 0" - "pitch" "-40" - "style" "0" - "origin" "-344 -32 56" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "10707" - "classname" "light_spot" - "_cone" "60" - "_constant_attn" "0" - "_distance" "0" - "_exponent" "1" - "_fifty_percent_distance" "0" - "_hardfalloff" "0" - "_inner_cone" "15" - "_light" "194 233 254 25" - "_lighthdr" "-1 -1 -1 1" - "_lightscalehdr" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "0" - "angles" "-40 270 0" - "pitch" "-40" - "style" "0" - "origin" "-280 -32 56" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "10798" - "classname" "light_spot" - "_cone" "60" - "_constant_attn" "0" - "_distance" "0" - "_exponent" "1" - "_fifty_percent_distance" "0" - "_hardfalloff" "0" - "_inner_cone" "15" - "_light" "194 233 254 25" - "_lighthdr" "-1 -1 -1 1" - "_lightscalehdr" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "0" - "angles" "-40 270 0" - "pitch" "-40" - "style" "0" - "origin" "-472 -32 56" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "10805" - "classname" "light_spot" - "_cone" "60" - "_constant_attn" "0" - "_distance" "0" - "_exponent" "1" - "_fifty_percent_distance" "0" - "_hardfalloff" "0" - "_inner_cone" "15" - "_light" "194 233 254 25" - "_lighthdr" "-1 -1 -1 1" - "_lightscalehdr" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "0" - "angles" "-40 270 0" - "pitch" "-40" - "style" "0" - "origin" "-408 -32 56" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "10910" - "classname" "light_spot" - "_cone" "60" - "_constant_attn" "0" - "_distance" "0" - "_exponent" "1" - "_fifty_percent_distance" "0" - "_hardfalloff" "0" - "_inner_cone" "15" - "_light" "194 233 254 25" - "_lighthdr" "-1 -1 -1 1" - "_lightscalehdr" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "0" - "angles" "-40 270 0" - "pitch" "-40" - "style" "0" - "origin" "-216 -32 56" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "10917" - "classname" "light_spot" - "_cone" "60" - "_constant_attn" "0" - "_distance" "0" - "_exponent" "1" - "_fifty_percent_distance" "0" - "_hardfalloff" "0" - "_inner_cone" "15" - "_light" "194 233 254 25" - "_lighthdr" "-1 -1 -1 1" - "_lightscalehdr" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "0" - "angles" "-40 270 0" - "pitch" "-40" - "style" "0" - "origin" "-152 -32 56" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity { "id" "11985" "classname" "func_detail" @@ -2531,7 +2299,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-184 -48 64" editor @@ -2544,762 +2312,66 @@ entity } entity { - "id" "9196" - "classname" "func_detail" - solid + "id" "9203" + "classname" "prop_static" + "angles" "90 180 0" + "disableshadows" "1" + "drawinfastreflection" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_lab/glass_lightcover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "$strip_skin" + "solid" "6" + "origin" "-312 -48 64" + editor { - "id" "9197" - side - { - "id" "2771" - "plane" "(-256 -57 71) (-368 -57 71) (-368 -57 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2770" - "plane" "(-368 -39 71) (-256 -39 71) (-256 -39 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2769" - "plane" "(-256 -57 72) (-368 -57 72) (-368 -39 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2768" - "plane" "(-256 -39 71) (-368 -39 71) (-368 -57 71)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[1 0 0 46] 4" - "vaxis" "[0 1 0 44] 4" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2767" - "plane" "(-256 -39 72) (-256 -39 71) (-256 -57 71)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2766" - "plane" "(-368 -57 72) (-368 -57 71) (-368 -39 71)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2500 -12768]" } - solid +} +entity +{ + "id" "9226" + "classname" "prop_static" + "angles" "90 180 0" + "disableshadows" "1" + "drawinfastreflection" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_lab/glass_lightcover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "$strip_skin" + "solid" "6" + "origin" "-440 -48 64" + editor { - "id" "9174" - side - { - "id" "2711" - "plane" "(-128 -57 71) (-240 -57 71) (-240 -57 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2710" - "plane" "(-240 -39 71) (-128 -39 71) (-128 -39 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2709" - "plane" "(-128 -57 72) (-240 -57 72) (-240 -39 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2708" - "plane" "(-128 -39 71) (-240 -39 71) (-240 -57 71)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[1 0 0 14] 4" - "vaxis" "[0 1 0 44] 4" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2707" - "plane" "(-128 -39 72) (-128 -39 71) (-128 -57 71)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2706" - "plane" "(-240 -57 72) (-240 -57 71) (-240 -39 71)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2500 -12768]" } - solid - { - "id" "9220" - side - { - "id" "2831" - "plane" "(-384 -57 71) (-496 -57 71) (-496 -57 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2830" - "plane" "(-496 -39 71) (-384 -39 71) (-384 -39 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2829" - "plane" "(-384 -57 72) (-496 -57 72) (-496 -39 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2828" - "plane" "(-384 -39 71) (-496 -39 71) (-496 -57 71)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[1 0 0 14] 4" - "vaxis" "[0 1 0 44] 4" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2827" - "plane" "(-384 -39 72) (-384 -39 71) (-384 -57 71)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2826" - "plane" "(-496 -57 72) (-496 -57 71) (-496 -39 71)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "9660" - side - { - "id" "3053" - "plane" "(-504 -32 71) (-504 -39 71) (-120 -39 71)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3052" - "plane" "(-504 -39 72) (-504 -32 72) (-120 -32 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3051" - "plane" "(-504 -39 71) (-504 -32 71) (-504 -32 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3050" - "plane" "(-120 -32 71) (-120 -39 71) (-120 -39 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3049" - "plane" "(-120 -39 71) (-504 -39 71) (-504 -39 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3048" - "plane" "(-504 -32 71) (-120 -32 71) (-120 -32 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "9744" - side - { - "id" "3029" - "plane" "(-504 -39 71) (-504 -57 71) (-496 -57 71)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3028" - "plane" "(-504 -57 72) (-504 -39 72) (-496 -39 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3027" - "plane" "(-496 -39 71) (-496 -57 71) (-496 -57 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3026" - "plane" "(-504 -57 71) (-504 -39 71) (-504 -39 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3025" - "plane" "(-504 -39 71) (-496 -39 71) (-496 -39 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3024" - "plane" "(-496 -57 71) (-504 -57 71) (-504 -57 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "9667" - side - { - "id" "3047" - "plane" "(-128 -39 71) (-128 -57 71) (-120 -57 71)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3046" - "plane" "(-128 -57 72) (-128 -39 72) (-120 -39 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3045" - "plane" "(-128 -57 71) (-128 -39 71) (-128 -39 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3044" - "plane" "(-120 -39 71) (-120 -57 71) (-120 -57 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3043" - "plane" "(-120 -57 71) (-128 -57 71) (-128 -57 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0.00659165 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3042" - "plane" "(-128 -39 71) (-120 -39 71) (-120 -39 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "9659" - side - { - "id" "2939" - "plane" "(-504 -57 71) (-504 -64 71) (-120 -64 71)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2938" - "plane" "(-504 -64 72) (-504 -57 72) (-120 -57 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2937" - "plane" "(-120 -57 71) (-120 -64 71) (-120 -64 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2936" - "plane" "(-504 -64 71) (-504 -57 71) (-504 -57 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2935" - "plane" "(-504 -57 71) (-120 -57 71) (-120 -57 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2934" - "plane" "(-120 -64 71) (-504 -64 71) (-504 -64 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "11023" - side - { - "id" "3086" - "plane" "(-256 -57 72) (-256 -39 72) (-240 -39 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3087" - "plane" "(-256 -39 71) (-256 -57 71) (-240 -57 71)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3088" - "plane" "(-256 -57 71) (-256 -39 71) (-256 -39 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3089" - "plane" "(-240 -39 71) (-240 -57 71) (-240 -57 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3090" - "plane" "(-256 -39 71) (-240 -39 71) (-240 -39 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3091" - "plane" "(-240 -57 71) (-256 -57 71) (-256 -57 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "11022" - side - { - "id" "3080" - "plane" "(-384 -57 72) (-384 -39 72) (-368 -39 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3081" - "plane" "(-384 -39 71) (-384 -57 71) (-368 -57 71)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3082" - "plane" "(-384 -57 71) (-384 -39 71) (-384 -39 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3083" - "plane" "(-368 -39 71) (-368 -57 71) (-368 -57 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3084" - "plane" "(-384 -39 71) (-368 -39 71) (-368 -39 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3085" - "plane" "(-368 -57 71) (-384 -57 71) (-384 -57 72)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "9203" - "classname" "prop_static" - "angles" "90 180 0" - "disableshadows" "1" - "drawinfastreflection" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_lab/glass_lightcover.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "origin" "-312 -48 64" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[2500 -12768]" - } -} -entity -{ - "id" "9226" - "classname" "prop_static" - "angles" "90 180 0" - "disableshadows" "1" - "drawinfastreflection" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_lab/glass_lightcover.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "origin" "-440 -48 64" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[2500 -12768]" - } -} -entity -{ - "id" "9242" - "classname" "prop_static" - "angles" "0 90 -180" - "disableshadows" "1" - "drawinfastreflection" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_lab/glass_lightcover.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "origin" "-424 -64 0" - editor +} +entity +{ + "id" "9242" + "classname" "prop_static" + "angles" "0 90 -180" + "disableshadows" "1" + "drawinfastreflection" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_lab/glass_lightcover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "$strip_skin" + "solid" "6" + "origin" "-424 -64 0" + editor { "color" "255 255 0" "visgroupshown" "1" @@ -3308,94 +2380,6 @@ entity } } entity -{ - "id" "9302" - "classname" "func_detail" - solid - { - "id" "9246" - side - { - "id" "2873" - "plane" "(-416 -71 56) (-416 -71 -56) (-416 -72 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2872" - "plane" "(-434 -72 56) (-434 -72 -56) (-434 -71 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2871" - "plane" "(-416 -72 56) (-416 -72 -56) (-434 -72 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2870" - "plane" "(-434 -71 56) (-434 -71 -56) (-416 -71 -56)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 0 1 -32] 4" - "vaxis" "[-1 0 0 -10.25] 4" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2869" - "plane" "(-434 -72 56) (-434 -71 56) (-416 -71 56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2868" - "plane" "(-434 -71 -56) (-434 -72 -56) (-416 -72 -56)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 9500]" - } -} -entity { "id" "8562" "classname" "func_detail" @@ -3582,7 +2566,7 @@ entity "plane" "(-248 0 64) (-248.016 -32 64) (-248 -32 72)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-0.00195121 0 -1 0] 0.25" + "vaxis" "[-0.0020008 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3593,7 +2577,7 @@ entity "plane" "(-376.016 -32 64) (-376.016 0 64) (-376 0 72)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-0.00194931 0 -1 0] 0.25" + "vaxis" "[-0.0019989 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" diff --git a/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_exit_down_square/corridor.vmf b/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_exit_down_square/corridor.vmf index 9bbed51cf1..e7f49295bc 100644 --- a/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_exit_down_square/corridor.vmf +++ b/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_exit_down_square/corridor.vmf @@ -2,7 +2,7 @@ versioninfo { "editorversion" "400" "editorbuild" "9672" - "mapversion" "292" + "mapversion" "294" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "292" + "mapversion" "294" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -5185,6 +5185,8 @@ entity "invert" "1" "kv_name" "DefaultPlayerStateA" "kv_value_global" "$start_open" + "kv_value_mode" "legacy" + "kv_value_pos" "0 -16 -32" "mode" "kv" "rotate" "0" "target" "close_man" @@ -6653,7 +6655,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "1" + "skin" "$strip_skin" "solid" "6" "origin" "-128 -144 -352" editor @@ -6665,94 +6667,6 @@ entity } } entity -{ - "id" "10531" - "classname" "func_detail" - solid - { - "id" "13608" - side - { - "id" "4322" - "plane" "(-135 -135 -408) (-135 -153 -408) (-135 -153 -296)" - "material" "LIGHTS/LIGHT_PANEL_WARM" - "uaxis" "[0 1 0 40] 2" - "vaxis" "[0 0 -1 -26.6667] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "4321" - "plane" "(-135 -153 -296) (-135 -153 -408) (-136 -153 -408)" - "material" "LIGHTS/LIGHT_PANEL_WARM" - "uaxis" "[1 0 0 32] 2" - "vaxis" "[0 0 -1 5.33333] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "4320" - "plane" "(-136 -135 -296) (-135 -135 -296) (-135 -153 -296)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4319" - "plane" "(-136 -153 -408) (-135 -153 -408) (-135 -135 -408)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4318" - "plane" "(-136 -135 -408) (-135 -135 -408) (-135 -135 -296)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4317" - "plane" "(-136 -153 -296) (-136 -153 -408) (-136 -135 -408)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity { "id" "10612" "classname" "prop_static" @@ -6764,7 +6678,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "1" + "skin" "$strip_skin" "solid" "6" "origin" "128 144 -352" editor @@ -6776,83 +6690,6 @@ entity } } entity -{ - "id" "10616" - "classname" "func_detail" - solid - { - "id" "10778" - side - { - "id" "3550" - "plane" "(153 135 -408) (135 135 -408) (135 135 -296)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 3" - "vaxis" "[0 0 -1 -26.6667] 3" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3549" - "plane" "(135 135 -296) (135 135 -408) (135 153 -408)" - "material" "LIGHTS/LIGHT_PANEL_WARM" - "uaxis" "[0 1 0 32] 2" - "vaxis" "[0 0 -1 5.33333] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3548" - "plane" "(153 135 -296) (135 135 -296) (135 153 -296)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3547" - "plane" "(135 153 -408) (135 135 -408) (153 135 -408)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3546" - "plane" "(135 153 -296) (135 153 -408) (153 135 -408)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity { "id" "10652" "classname" "prop_static" @@ -6864,7 +6701,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "1" + "skin" "$strip_skin" "solid" "6" "origin" "-128 144 -352" editor @@ -6876,171 +6713,6 @@ entity } } entity -{ - "id" "10656" - "classname" "func_detail" - solid - { - "id" "13622" - side - { - "id" "4334" - "plane" "(-136 153 -408) (-135 153 -408) (-135 153 -296)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 32] 4" - "vaxis" "[0 0 -1 -16] 4" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4333" - "plane" "(-135 153 -296) (-135 153 -408) (-135 135 -408)" - "material" "LIGHTS/LIGHT_PANEL_WARM" - "uaxis" "[0 1 0 -40] 2" - "vaxis" "[0 0 -1 5.33333] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "4332" - "plane" "(-136 153 -296) (-135 153 -296) (-135 135 -296)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4331" - "plane" "(-135 153 -408) (-136 153 -408) (-136 135 -408)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 -32] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4330" - "plane" "(-135 135 -296) (-135 135 -408) (-136 135 -408)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4329" - "plane" "(-136 135 -408) (-136 153 -408) (-136 153 -296)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "10658" - "classname" "func_detail" - solid - { - "id" "10779" - side - { - "id" "3555" - "plane" "(135 -153 -408) (135 -135 -408) (135 -135 -296)" - "material" "LIGHTS/LIGHT_PANEL_WARM" - "uaxis" "[0 1 0 32] 2" - "vaxis" "[0 0 -1 -26.6667] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3554" - "plane" "(135 -135 -296) (135 -135 -408) (153 -135 -408)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3553" - "plane" "(135 -153 -296) (135 -135 -296) (153 -135 -296)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3552" - "plane" "(153 -135 -408) (135 -135 -408) (135 -153 -408)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3551" - "plane" "(153 -135 -296) (153 -135 -408) (135 -153 -408)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity { "id" "10660" "classname" "prop_static" @@ -7052,7 +6724,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "1" + "skin" "$strip_skin" "solid" "6" "origin" "128 -144 -352" editor diff --git a/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_exit_up_stair/corridor.vmf b/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_exit_up_stair/corridor.vmf index 7feb32d819..5435da8d4f 100644 --- a/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_exit_up_stair/corridor.vmf +++ b/packages/valve/clean_style/resources/instances/clean/elevator_sp/door_exit_up_stair/corridor.vmf @@ -2,7 +2,7 @@ versioninfo { "editorversion" "400" "editorbuild" "9672" - "mapversion" "381" + "mapversion" "383" "formatversion" "100" "prefab" "0" } @@ -38,7 +38,7 @@ viewsettings world { "id" "1" - "mapversion" "381" + "mapversion" "383" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -3728,9 +3728,12 @@ entity "classname" "comp_kv_setter" "angles" "0 0 0" "conv_ang" "0" + "ctrl_value" "1" "invert" "1" "kv_name" "DefaultPlayerStateA" "kv_value_global" "$start_open" + "kv_value_mode" "legacy" + "kv_value_pos" "0 16 80" "mode" "kv" "rotate" "0" "target" "close_man" @@ -4512,7 +4515,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "1" + "skin" "$strip_skin" "solid" "6" "origin" "-128 -9.79139e-006 240" editor @@ -4535,7 +4538,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "1" + "skin" "$strip_skin" "solid" "6" "origin" "-128 -1.25889e-005 272" editor @@ -4547,170 +4550,6 @@ entity } } entity -{ - "id" "9710" - "classname" "func_detail" - solid - { - "id" "9711" - side - { - "id" "3047" - "plane" "(-135 -56 263) (-135 56 263) (-136 56 263)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3046" - "plane" "(-135 56 281) (-135 -56 281) (-136 -56 281)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3045" - "plane" "(-136 -56 263) (-136 56 263) (-136 56 281)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3044" - "plane" "(-135 56 263) (-135 -56 263) (-135 -56 281)" - "material" "LIGHTS/LIGHT_PANEL_WARM" - "uaxis" "[0 -1 0 32] 1" - "vaxis" "[0 0 1 12] 1" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3043" - "plane" "(-135 -56 263) (-136 -56 263) (-136 -56 281)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3042" - "plane" "(-136 56 263) (-135 56 263) (-135 56 281)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "9682" - side - { - "id" "2963" - "plane" "(-135 -56 231) (-135 56 231) (-136 56 231)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2962" - "plane" "(-135 56 249) (-135 -56 249) (-136 -56 249)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2961" - "plane" "(-136 -56 231) (-136 56 231) (-136 56 249)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2960" - "plane" "(-135 56 231) (-135 -56 231) (-135 -56 249)" - "material" "LIGHTS/LIGHT_PANEL_WARM" - "uaxis" "[0 -1 0 32] 1" - "vaxis" "[0 0 1 20] 1" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2959" - "plane" "(-135 -56 231) (-136 -56 231) (-136 -56 249)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2958" - "plane" "(-136 56 231) (-135 56 231) (-135 56 249)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 32] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity { "id" "9901" "classname" "func_brush" diff --git a/packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_entrance/common.vmf b/packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_entrance/common.vmf index 155adbb5d1..99979394a5 100644 --- a/packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_entrance/common.vmf +++ b/packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_entrance/common.vmf @@ -2,7 +2,7 @@ versioninfo { "editorversion" "400" "editorbuild" "9672" - "mapversion" "1038" + "mapversion" "1041" "formatversion" "100" "prefab" "0" } @@ -15,36 +15,42 @@ visgroups "color" "172 253 242" } visgroup - { - "name" "Stair up" - "visgroupid" "24" - "color" "157 114 251" - } - visgroup { "name" "Logic Up" "visgroupid" "32" "color" "247 212 85" } visgroup + { + "name" "Stair up" + "visgroupid" "24" + "color" "157 114 251" + } + visgroup { "name" "Stair Down" "visgroupid" "33" "color" "190 215 196" } + visgroup + { + "name" "Stair Flat" + "visgroupid" "27" + "color" "109 130 155" + } } viewsettings { "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "32" + "nGridSpacing" "64" "bShow3DGrid" "0" } world { "id" "1" - "mapversion" "1038" + "mapversion" "1041" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -493,11 +499,11 @@ world { "id" "22529" "plane" "(-256 320 -1312) (-256 320 -1280) (-256 -256 -1280)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "512" + "lightmapscale" "16" "smoothing_groups" "0" } editor @@ -595,6 +601,26 @@ world } } hidden +{ + entity + { + "id" "139467" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/bee2/clean/elevator_sp/elevator_entrance/stair_flat.vmf" + "replace01" "$no_player_start ???" + "origin" "0 0 0" + editor + { + "color" "220 30 220" + "visgroupid" "27" + "visgroupshown" "0" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } + } +} +hidden { entity { @@ -702,6 +728,9 @@ entity "id" "138044" "classname" "ambient_generic" "angles" "0 0 0" + "haddons_enabled" "-1" + "haddons_infrange" "-1" + "haddons_mode" "-1" "health" "10" "message" "cavejohnson.DLC2_multiverse_transition" "pitch" "100" @@ -16372,8 +16401,8 @@ cameras "activecamera" "0" camera { - "position" "[11.7215 147.707 104.945]" - "look" "[11.7211 152.549 42.0147]" + "position" "[-346.534 828.021 207.986]" + "look" "[-310.881 790.061 172.327]" } camera { diff --git a/packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_entrance/stair_dn.vmf b/packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_entrance/stair_dn.vmf index 1d275dd6aa..55af18b32f 100644 --- a/packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_entrance/stair_dn.vmf +++ b/packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_entrance/stair_dn.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8973" - "mapversion" "1047" + "editorbuild" "9672" + "mapversion" "1051" "formatversion" "100" "prefab" "0" } @@ -14,13 +14,13 @@ viewsettings "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "1" + "nGridSpacing" "32" "bShow3DGrid" "0" } world { "id" "1" - "mapversion" "1047" + "mapversion" "1051" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -29,239 +29,315 @@ world "skyname" "sky_black" solid { - "id" "147595" + "id" "147844" side { - "id" "24994" - "plane" "(64 512 80) (64 576 80) (64 576 72)" + "id" "25109" + "plane" "(-256 384 -256) (256 384 -256) (256 320 -256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -50] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24993" - "plane" "(-64 576 80) (-64 512 80) (-64 512 72)" + "id" "25110" + "plane" "(-256 320 -1280) (256 320 -1280) (256 384 -1280)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 48] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24992" - "plane" "(-64 512 80) (-64 576 80) (64 576 80)" + "id" "25111" + "plane" "(-256 384 -256) (-256 320 -256) (-256 320 -1280)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -2] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24991" - "plane" "(-64 576 72) (-64 512 72) (64 512 72)" + "id" "25112" + "plane" "(256 384 -1280) (256 320 -1280) (256 320 -256)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -2] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24990" - "plane" "(-64 576 80) (-64 576 72) (64 576 72)" + "id" "25113" + "plane" "(256 384 -256) (-256 384 -256) (-256 384 -1280)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 48] 0.25" - "vaxis" "[0 0 -1 -2] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24989" - "plane" "(-64 512 72) (-64 512 80) (64 512 80)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -48] 0.25" - "vaxis" "[0 0 -1 -2] 0.25" + "id" "25114" + "plane" "(256 320 -1280) (-256 320 -1280) (-256 320 -256)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 219 132" + "color" "0 151 112" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "136303" + "id" "147853" side { - "id" "24700" - "plane" "(-96 640 64) (96 640 64) (96 608 64)" + "id" "25115" + "plane" "(64 384 -256) (72 384 -256) (72 384 -264)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24699" - "plane" "(96 640 -3.05176e-005) (96 640 64) (-96 640 64)" - "material" "METAL/BLACK_WALL_METAL_002A" - "uaxis" "[-1 0 0 640] 0.25" - "vaxis" "[0 0 -1 118.28] 0.25" + "id" "25116" + "plane" "(64 416 -264) (72 416 -264) (72 416 -256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24698" - "plane" "(96 608 -3.05176e-005) (96 608 64) (96 640 64)" + "id" "25117" + "plane" "(64 384 -256) (64 384 -264) (64 416 -264)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -25.7197] 0.25" + "uaxis" "[0 0 1 16] 0.25" + "vaxis" "[0 1 0 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24697" - "plane" "(-96 640 -3.05176e-005) (-96 640 64) (-96 608 64)" + "id" "25118" + "plane" "(72 416 -256) (72 416 -264) (72 384 -264)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 -25.7197] 0.25" + "uaxis" "[0 0 1 16] 0.25" + "vaxis" "[0 1 0 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24696" - "plane" "(-96 608 -3.05176e-005) (-96 608 64) (96 608 64)" - "material" "METAL/BLACK_WALL_METAL_002B" + "id" "25119" + "plane" "(72 384 -256) (64 384 -256) (64 416 -256)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 758.28] 0.25" + "vaxis" "[0 1 0 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24695" - "plane" "(96 608 -3.05176e-005) (96 640 -3.05176e-005) (-96 640 -3.05176e-005)" + "id" "25120" + "plane" "(72 416 -264) (64 416 -264) (64 384 -264)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 48] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 143 160" + "color" "0 169 222" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "136304" + "id" "147856" side { - "id" "24706" - "plane" "(64 640 -3.05176e-005) (64 608 -3.05176e-005) (-64 608 -3.05176e-005)" + "id" "25132" + "plane" "(-72 384 -256) (-64 384 -256) (-64 384 -264)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24705" - "plane" "(64 608 -128) (64 640 -128) (-64 640 -128)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[0 -1 0 896] 0.25" - "vaxis" "[1 0 0 512] 0.25" + "id" "25131" + "plane" "(-72 416 -264) (-64 416 -264) (-64 416 -256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24704" - "plane" "(64 640 -128) (64 608 -128) (64 608 -3.05176e-005)" + "id" "25130" + "plane" "(-72 384 -256) (-72 384 -264) (-72 416 -264)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 16] 0.25" + "vaxis" "[0 1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25129" + "plane" "(-64 416 -256) (-64 416 -264) (-64 384 -264)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 16] 0.25" + "vaxis" "[0 1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25128" + "plane" "(-64 384 -256) (-72 384 -256) (-72 416 -256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25127" + "plane" "(-64 416 -264) (-72 416 -264) (-72 384 -264)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 169 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "147595" + side + { + "id" "24994" + "plane" "(64 512 80) (64 576 80) (64 576 72)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -9.71973] 0.25" + "vaxis" "[0 0 -1 -50] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24703" - "plane" "(-64 608 -128) (-64 640 -128) (-64 640 -3.05176e-005)" + "id" "24993" + "plane" "(-64 576 80) (-64 512 80) (-64 512 72)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 -9.71973] 0.25" + "vaxis" "[0 0 -1 48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24702" - "plane" "(64 608 -128) (-64 608 -128) (-64 608 -3.05176e-005)" - "material" "METAL/BLACK_WALL_METAL_002C" - "uaxis" "[1 0 0 768] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24992" + "plane" "(-64 512 80) (-64 576 80) (64 576 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -2] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24701" - "plane" "(-64 640 -128) (64 640 -128) (64 640 -3.05176e-005)" + "id" "24991" + "plane" "(-64 576 72) (-64 512 72) (64 512 72)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -9.71973] 0.25" + "vaxis" "[0 -1 0 -2] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24990" + "plane" "(-64 576 80) (-64 576 72) (64 576 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 0 -1 -2] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24989" + "plane" "(-64 512 72) (-64 512 80) (64 512 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 -2] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 233 234" + "color" "0 219 132" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "136310" + "id" "136303" side { - "id" "24736" - "plane" "(-64 416 -3.05176e-005) (-64 384 -3.05176e-005) (-96 384 -3.05176e-005)" + "id" "24700" + "plane" "(-96 640 64) (96 640 64) (96 608 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -271,73 +347,73 @@ world } side { - "id" "24735" - "plane" "(-64 384 -272) (-64 416 -272) (-96 416 -272)" + "id" "24699" + "plane" "(96 640 -3.05176e-005) (96 640 64) (-96 640 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24734" - "plane" "(-64 416 -272) (-64 384 -272) (-64 384 -3.05176e-005)" - "material" "METAL/BLACK_WALL_METAL_002A" - "uaxis" "[0 1 0 -512] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24698" + "plane" "(96 608 -3.05176e-005) (96 608 64) (96 640 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -25.7197] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24733" - "plane" "(-96 384 -272) (-96 416 -272) (-96 416 -3.05176e-005)" + "id" "24697" + "plane" "(-96 640 -3.05176e-005) (-96 640 64) (-96 608 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 -9.71973] 0.25" + "vaxis" "[0 0 -1 -25.7197] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24732" - "plane" "(-64 384 -272) (-96 384 -272) (-96 384 -3.05176e-005)" - "material" "TOOLS/TOOLSNODRAW" + "id" "24696" + "plane" "(-96 608 -3.05176e-005) (-96 608 64) (96 608 64)" + "material" "METAL/BLACK_WALL_METAL_002B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -9.71973] 0.25" + "vaxis" "[0 0 -1 758.28] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24731" - "plane" "(-96 416 -272) (-64 416 -272) (-64 416 -3.05176e-005)" + "id" "24695" + "plane" "(96 608 -3.05176e-005) (96 640 -3.05176e-005) (-96 640 -3.05176e-005)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -9.71973] 0.25" + "vaxis" "[0 -1 0 48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 197 194" + "color" "0 143 160" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "136311" + "id" "136304" side { - "id" "24742" - "plane" "(96 416 -3.05176e-005) (96 384 -3.05176e-005) (64 384 -3.05176e-005)" + "id" "24706" + "plane" "(64 640 -3.05176e-005) (64 608 -3.05176e-005) (-64 608 -3.05176e-005)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -347,19 +423,19 @@ world } side { - "id" "24741" - "plane" "(96 384 -272) (96 416 -272) (64 416 -272)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "24705" + "plane" "(64 608 -128) (64 640 -128) (-64 640 -128)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 -1 0 896] 0.25" + "vaxis" "[1 0 0 512] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24740" - "plane" "(96 416 -272) (96 384 -272) (96 384 -3.05176e-005)" + "id" "24704" + "plane" "(64 640 -128) (64 608 -128) (64 608 -3.05176e-005)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 -9.71973] 0.25" @@ -369,30 +445,30 @@ world } side { - "id" "24739" - "plane" "(64 384 -272) (64 416 -272) (64 416 -3.05176e-005)" - "material" "METAL/BLACK_WALL_METAL_002A" - "uaxis" "[0 -1 0 -512] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24703" + "plane" "(-64 608 -128) (-64 640 -128) (-64 640 -3.05176e-005)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -9.71973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24738" - "plane" "(96 384 -272) (64 384 -272) (64 384 -3.05176e-005)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -9.71973] 0.25" + "id" "24702" + "plane" "(64 608 -128) (-64 608 -128) (-64 608 -3.05176e-005)" + "material" "METAL/BLACK_WALL_METAL_002C" + "uaxis" "[1 0 0 768] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24737" - "plane" "(64 416 -272) (96 416 -272) (96 416 -3.05176e-005)" + "id" "24701" + "plane" "(-64 640 -128) (64 640 -128) (64 640 -3.05176e-005)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 -9.71973] 0.25" @@ -402,7 +478,7 @@ world } editor { - "color" "0 127 248" + "color" "0 233 234" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -413,7 +489,7 @@ world side { "id" "24748" - "plane" "(-64 320 -192) (-64 384 -192) (64 384 -192)" + "plane" "(-64 384 -192) (64 384 -192) (64 320 -192)" "material" "METAL/BLACK_WALL_METAL_002A" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 768] 0.25" @@ -424,7 +500,7 @@ world side { "id" "24747" - "plane" "(-64 384 -1280) (-64 320 -1280) (64 320 -1280)" + "plane" "(-64 320 -256) (64 320 -256) (64 384 -256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -435,7 +511,7 @@ world side { "id" "24746" - "plane" "(64 384 -1280) (64 320 -1280) (64 320 -192)" + "plane" "(64 320 -256) (64 320 -192) (64 384 -192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 -9.71973] 0.25" @@ -446,7 +522,7 @@ world side { "id" "24745" - "plane" "(-64 320 -1280) (-64 384 -1280) (-64 384 -192)" + "plane" "(-64 384 -256) (-64 384 -192) (-64 320 -192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 -9.71973] 0.25" @@ -457,7 +533,7 @@ world side { "id" "24744" - "plane" "(64 320 -1280) (-64 320 -1280) (-64 320 -192)" + "plane" "(-64 320 -256) (-64 320 -192) (64 320 -192)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 256] 0.25" @@ -468,7 +544,7 @@ world side { "id" "24743" - "plane" "(-64 384 -1280) (64 384 -1280) (64 384 -192)" + "plane" "(64 384 -256) (64 384 -192) (-64 384 -192)" "material" "METAL/BLACK_WALL_METAL_002A" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 1 0] 0.25" @@ -641,7 +717,7 @@ world side { "id" "24784" - "plane" "(-64 512 -3.05176e-005) (-64 416 -3.05176e-005) (-96 416 -3.05176e-005)" + "plane" "(-96 512 0) (-64 512 0) (-64 384 0)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -652,7 +728,7 @@ world side { "id" "24783" - "plane" "(-64 416 -256) (-64 512 -256) (-96 512 -272)" + "plane" "(-96 384 -256) (-64 384 -256) (-64 512 -256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-0.894427 0 -0.447214 -32.9685] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -663,7 +739,7 @@ world side { "id" "24782" - "plane" "(-64 512 -256) (-64 416 -256) (-64 416 -3.05176e-005)" + "plane" "(-64 384 -256) (-64 384 0) (-64 512 0)" "material" "METAL/BLACK_WALL_METAL_002A" "uaxis" "[0 1 0 -512] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -674,7 +750,7 @@ world side { "id" "24781" - "plane" "(-96 416 -272) (-96 512 -272) (-96 512 -3.05176e-005)" + "plane" "(-96 512 -256) (-96 512 0) (-96 384 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 -25.7197] 0.25" @@ -685,7 +761,7 @@ world side { "id" "24780" - "plane" "(-96 512 -272) (-64 512 -256) (-64 512 -3.05176e-005)" + "plane" "(-64 512 -256) (-64 512 0) (-96 512 0)" "material" "METAL/BLACK_WALL_METAL_002B" "uaxis" "[-1 0 0 384] 0.25" "vaxis" "[0 0 -1 256] 0.25" @@ -696,7 +772,7 @@ world side { "id" "24779" - "plane" "(-96 416 -3.05176e-005) (-64 416 -3.05176e-005) (-64 416 -256)" + "plane" "(-64 384 0) (-64 384 -256) (-96 384 -256)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 -281.72] 0.25" @@ -1021,7 +1097,7 @@ world side { "id" "24814" - "plane" "(-64 320 0) (-80 320 0) (-80 384 0)" + "plane" "(-80 320 0) (-80 384 0) (-64 384 0)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -1032,7 +1108,7 @@ world side { "id" "24813" - "plane" "(-80 384 -1280) (-80 320 -1280) (-64 320 -1280)" + "plane" "(-80 320 -256) (-64 320 -256) (-64 384 -256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -1043,7 +1119,7 @@ world side { "id" "24812" - "plane" "(-64 320 -1280) (-80 320 -1280) (-80 320 0)" + "plane" "(-80 320 -256) (-80 320 0) (-64 320 0)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 256] 0.25" @@ -1054,7 +1130,7 @@ world side { "id" "24811" - "plane" "(-64 384 -1280) (-64 320 -1280) (-64 320 0)" + "plane" "(-64 320 -256) (-64 320 0) (-64 384 0)" "material" "METAL/BLACK_WALL_METAL_002A" "uaxis" "[0 1 0 -512] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1065,7 +1141,7 @@ world side { "id" "24810" - "plane" "(-80 320 -1280) (-80 384 -1280) (-80 384 0)" + "plane" "(-80 384 -256) (-80 384 0) (-80 320 0)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 -265.72] 0.25" @@ -1076,7 +1152,7 @@ world side { "id" "24809" - "plane" "(-80 384 -1280) (-64 384 -1280) (-64 384 0)" + "plane" "(-64 384 -256) (-64 384 0) (-80 384 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1097,7 +1173,7 @@ world side { "id" "24820" - "plane" "(80 320 0) (64 320 0) (64 384 0)" + "plane" "(64 320 0) (64 384 0) (80 384 0)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 64] 0.25" @@ -1108,7 +1184,7 @@ world side { "id" "24819" - "plane" "(64 384 -1280) (64 320 -1280) (80 320 -1280)" + "plane" "(64 320 -256) (80 320 -256) (80 384 -256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -1119,7 +1195,7 @@ world side { "id" "24818" - "plane" "(80 320 -1280) (64 320 -1280) (64 320 0)" + "plane" "(64 320 -256) (64 320 0) (80 320 0)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 256] 0.25" @@ -1130,7 +1206,7 @@ world side { "id" "24817" - "plane" "(80 384 -1280) (80 320 -1280) (80 320 0)" + "plane" "(80 320 -256) (80 320 0) (80 384 0)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 -265.72] 0.25" @@ -1141,7 +1217,7 @@ world side { "id" "24816" - "plane" "(64 320 -1280) (64 384 -1280) (64 384 0)" + "plane" "(64 384 -256) (64 384 0) (64 320 0)" "material" "METAL/BLACK_WALL_METAL_002A" "uaxis" "[0 -1 0 -512] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1152,7 +1228,7 @@ world side { "id" "24815" - "plane" "(64 384 -1280) (80 384 -1280) (80 384 0)" + "plane" "(80 384 -256) (80 384 0) (64 384 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1173,7 +1249,7 @@ world side { "id" "24832" - "plane" "(96 512 -3.05176e-005) (96 416 -3.05176e-005) (64 416 -3.05176e-005)" + "plane" "(64 512 0) (96 512 0) (96 384 0)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 64] 0.25" @@ -1184,10 +1260,10 @@ world side { "id" "24831" - "plane" "(96 416 -272) (96 512 -272) (64 512 -256)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[-0.894427 0 0.447214 32.9685] 0.25" - "vaxis" "[0 -1 0 64] 0.25" + "plane" "(64 384 -256) (96 384 -256) (96 512 -256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.894427 0 0.447214 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1195,7 +1271,7 @@ world side { "id" "24830" - "plane" "(96 512 -272) (96 416 -272) (96 416 -3.05176e-005)" + "plane" "(96 384 -256) (96 384 0) (96 512 0)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 -25.7197] 0.25" @@ -1206,7 +1282,7 @@ world side { "id" "24829" - "plane" "(64 416 -256) (64 512 -256) (64 512 -3.05176e-005)" + "plane" "(64 512 -256) (64 512 0) (64 384 0)" "material" "METAL/BLACK_WALL_METAL_002A" "uaxis" "[0 -1 0 -512] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1217,7 +1293,7 @@ world side { "id" "24828" - "plane" "(96 512 -3.05176e-005) (64 512 -3.05176e-005) (64 512 -256)" + "plane" "(64 512 0) (64 512 -256) (96 512 -256)" "material" "METAL/BLACK_WALL_METAL_002B" "uaxis" "[-1 0 0 384] 0.25" "vaxis" "[0 0 -1 256] 0.25" @@ -1228,7 +1304,7 @@ world side { "id" "24827" - "plane" "(96 416 -272) (64 416 -256) (64 416 -3.05176e-005)" + "plane" "(64 384 -256) (64 384 0) (96 384 0)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 -281.72] 0.25" @@ -1260,7 +1336,7 @@ world side { "id" "24837" - "plane" "(96 416 -272) (96 512 -272) (-96 512 -272)" + "plane" "(-64 512 -272) (-64 416 -272) (64 416 -272)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -1271,7 +1347,7 @@ world side { "id" "24836" - "plane" "(-96 512 -272) (96 512 -272) (64 512 -256)" + "plane" "(64 512 -272) (64 512 -256) (-64 512 -256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 -9.71973] 0.25" @@ -1282,7 +1358,7 @@ world side { "id" "24835" - "plane" "(96 512 -272) (96 416 -272) (64 416 -256)" + "plane" "(64 512 -256) (64 512 -272) (64 416 -272)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" "uaxis" "[0.894427 0 -0.447214 -32.9685] 0.25" "vaxis" "[0 -1 0 -256] 0.25" @@ -1293,7 +1369,7 @@ world side { "id" "24834" - "plane" "(-64 512 -256) (-64 416 -256) (-96 416 -272)" + "plane" "(-64 512 -272) (-64 512 -256) (-64 416 -256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0.894427 0 0.447214 32.9685] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -1304,7 +1380,7 @@ world side { "id" "24833" - "plane" "(96 416 -272) (-96 416 -272) (-64 416 -256)" + "plane" "(-64 416 -272) (-64 416 -256) (64 416 -256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1326,9 +1402,9 @@ world { "id" "24856" "plane" "(64 640 -3.05176e-005) (96 640 -3.05176e-005) (96 576 -3.05176e-005)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 128] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1337,8 +1413,8 @@ world { "id" "24855" "plane" "(64 576 -256) (96 576 -256) (96 640 -256)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[-1 0 0 -512] 0.25" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1402,9 +1478,9 @@ world { "id" "24862" "plane" "(-96 640 -3.05176e-005) (-64 640 -3.05176e-005) (-64 576 -3.05176e-005)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 128] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1413,8 +1489,8 @@ world { "id" "24861" "plane" "(-96 576 -256) (-64 576 -256) (-64 640 -256)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[-1 0 0 -512] 0.25" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1785,10 +1861,10 @@ world side { "id" "24898" - "plane" "(64 384 -272.125) (-64 384 -272.125) (-64 384 -264.125)" + "plane" "(64 384 -271.998) (-64 384 -271.998) (-64 384 -263.996)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0.5] 0.25" - "vaxis" "[0 0 -1 -9.71973] 0.25" + "vaxis" "[0 0 -1 -9.20411] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1796,10 +1872,10 @@ world side { "id" "24897" - "plane" "(-64 416 -272.125) (64 416 -272.125) (64 416 -264.125)" + "plane" "(-64 416 -271.998) (64 416 -271.998) (64 416 -263.996)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0.5] 0.25" - "vaxis" "[0 0 -1 -9.71973] 0.25" + "vaxis" "[0 0 -1 -9.20411] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1807,7 +1883,7 @@ world side { "id" "24896" - "plane" "(-64 384 -272.125) (64 384 -272.125) (64 416 -272.125)" + "plane" "(64 416 -271.996) (-64 416 -271.996) (-64 384 -271.996)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 -2] 0.25" @@ -1818,7 +1894,7 @@ world side { "id" "24895" - "plane" "(-64 416 -264.125) (64 416 -264.125) (64 384 -264.125)" + "plane" "(64 384 -263.996) (-64 384 -263.996) (-64 416 -263.996)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 -2] 0.25" @@ -1829,10 +1905,10 @@ world side { "id" "24894" - "plane" "(-64 384 -264.125) (-64 384 -272.125) (-64 416 -272.125)" + "plane" "(-64 384 -263.996) (-64 384 -272) (-64 416 -271.996)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0.5] 0.25" - "vaxis" "[0 0 -1 -11.7197] 0.25" + "vaxis" "[0 0 -1 -11.2041] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1840,10 +1916,10 @@ world side { "id" "24893" - "plane" "(64 416 -264.125) (64 416 -272.125) (64 384 -272.125)" + "plane" "(64 416 -263.996) (64 416 -272) (64 384 -271.996)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0.5] 0.25" - "vaxis" "[0 0 -1 -11.7197] 0.25" + "vaxis" "[0 0 -1 -11.2041] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2048,7 +2124,7 @@ world { "id" "24938" "plane" "(96 704 -256) (96 640 -256) (-96 640 -256)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[1 0 0 0] 0.25" "rotation" "0" @@ -2242,7 +2318,7 @@ world side { "id" "22366" - "plane" "(-80 320 128) (-256 320 128) (-256 384 128)" + "plane" "(-256 320 128) (-256 384 128) (-80 384 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 1 0 0] 0.25" @@ -2253,7 +2329,7 @@ world side { "id" "22365" - "plane" "(-256 384 -1280) (-256 320 -1280) (-80 320 -1280)" + "plane" "(-256 320 -256) (-80 320 -256) (-80 384 -256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 1 0 0] 0.25" @@ -2264,7 +2340,7 @@ world side { "id" "22364" - "plane" "(-80 320 -1280) (-256 320 -1280) (-256 320 128)" + "plane" "(-256 320 -256) (-256 320 128) (-80 320 128)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 256] 0.25" @@ -2275,7 +2351,7 @@ world side { "id" "22363" - "plane" "(-80 384 -1280) (-80 320 -1280) (-80 320 128)" + "plane" "(-80 320 -256) (-80 320 128) (-80 384 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2286,7 +2362,7 @@ world side { "id" "22362" - "plane" "(-256 320 -1280) (-256 384 -1280) (-256 384 128)" + "plane" "(-256 384 -256) (-256 384 128) (-256 320 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2297,7 +2373,7 @@ world side { "id" "22361" - "plane" "(-256 384 -1280) (-80 384 -1280) (-80 384 128)" + "plane" "(-80 384 -256) (-80 384 128) (-256 384 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2318,7 +2394,7 @@ world side { "id" "22444" - "plane" "(256 320 128) (80 320 128) (80 384 128)" + "plane" "(80 320 128) (80 384 128) (256 384 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 1 0 0] 0.25" @@ -2329,7 +2405,7 @@ world side { "id" "22443" - "plane" "(80 384 -1280) (80 320 -1280) (256 320 -1280)" + "plane" "(80 320 -256) (256 320 -256) (256 384 -256)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 1 0 0] 0.25" @@ -2340,7 +2416,7 @@ world side { "id" "22442" - "plane" "(256 320 -1280) (80 320 -1280) (80 320 128)" + "plane" "(80 320 -256) (80 320 128) (256 320 128)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 256] 0.25" @@ -2351,7 +2427,7 @@ world side { "id" "22441" - "plane" "(256 384 -1280) (256 320 -1280) (256 320 128)" + "plane" "(256 320 -256) (256 320 128) (256 384 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2362,7 +2438,7 @@ world side { "id" "22440" - "plane" "(80 320 -1280) (80 384 -1280) (80 384 128)" + "plane" "(80 384 -256) (80 384 128) (80 320 128)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 256] 0.25" @@ -2373,7 +2449,7 @@ world side { "id" "22439" - "plane" "(80 384 -1280) (256 384 -1280) (256 384 128)" + "plane" "(256 384 -256) (256 384 128) (80 384 128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2497,6 +2573,56 @@ world } } entity +{ + "id" "147940" + "classname" "comp_kv_setter" + "angles" "0 0 0" + "conv_ang" "0" + "ctrl_type" "0" + "ctrl_value" "1" + "invert" "0" + "kv_name" "lightingorigin" + "kv_value_local" "@entrance_portal_elevator_side" + "kv_value_mode" "local" + "kv_value_pos" "16 624 -248" + "mode" "kv" + "rotate" "0" + "target" "@entrance_airlock_door" + "origin" "16 624 -248" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "147943" + "classname" "prop_testchamber_door" + "angles" "0 270 0" + "lightingorigin" "@entrance_portal_elevator_side" + "renderamt" "255" + "rendercolor" "255 255 255" + "solid" "6" + "targetname" "@entrance_airlock_door" + connections + { + "OnOpen" "door_clipDisable0.25-1" + "OnFullyOpen" "@entrance_airlock_doorSetLightingOrigin@entrance_portal_chamber_side0-1" + } + "origin" "0 654 -256" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "comments" "Change the lighting origin once open, so that it blends when closed again." + "logicalpos" "[0 500]" + } +} +entity { "id" "147750" "classname" "func_brush" @@ -3388,6 +3514,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "-75 270 -90" "pitch" "-75" "origin" "-7.62939e-006 568 54.527" @@ -3415,7 +3542,7 @@ entity "rendercolor" "255 255 255" "skin" "2" "solid" "6" - "origin" "6.67572e-006 400 -256" + "origin" "0 400 -256" editor { "color" "0 195 232" @@ -3435,10 +3562,10 @@ entity side { "id" "24904" - "plane" "(56 391 -264.127) (-56 391 -264.127) (-56 391 -263.125)" + "plane" "(56 391 -264) (-56 391 -264) (-56 391 -263)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 32.5] 0.25" - "vaxis" "[0 0 -1 -9.71973] 0.25" + "vaxis" "[0 0 -1 -9.21973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3446,10 +3573,10 @@ entity side { "id" "24903" - "plane" "(-56 409 -264.127) (56 409 -264.127) (56 409 -263.125)" + "plane" "(-56 409 -264) (56 409 -264) (56 409 -263)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 32.5] 0.25" - "vaxis" "[0 0 -1 -9.71973] 0.25" + "vaxis" "[0 0 -1 -9.21973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3457,7 +3584,7 @@ entity side { "id" "24902" - "plane" "(-56 391 -264.125) (56 391 -264.125) (56 409 -264.125)" + "plane" "(56 409 -264) (-56 409 -264) (-56 391 -264)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 -36] 0.25" @@ -3468,7 +3595,7 @@ entity side { "id" "24901" - "plane" "(-56 409 -263.125) (56 409 -263.125) (56 391 -263.125)" + "plane" "(56 391 -263) (-56 391 -263) (-56 409 -263)" "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" "uaxis" "[1 0 0 -50] 0.75" "vaxis" "[0 -1 0 -28] 0.75" @@ -3479,10 +3606,10 @@ entity side { "id" "24900" - "plane" "(-56 391 -263.125) (-56 391 -264.129) (-56 409 -264.125)" + "plane" "(-56 391 -263) (-56 391 -264) (-56 409 -264)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 32.5] 0.25" - "vaxis" "[0 0 -1 -45.7197] 0.25" + "vaxis" "[0 0 -1 -45.2197] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3490,10 +3617,10 @@ entity side { "id" "24899" - "plane" "(56 409 -263.125) (56 409 -264.129) (56 391 -264.125)" + "plane" "(56 409 -263) (56 409 -264) (56 391 -264)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 32.5] 0.25" - "vaxis" "[0 0 -1 -45.7197] 0.25" + "vaxis" "[0 0 -1 -45.2197] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3561,29 +3688,6 @@ entity } } entity -{ - "id" "122952" - "classname" "prop_testchamber_door" - "angles" "0 270 0" - "lightingorigin" "@entrance_portal_chamber_side" - "renderamt" "255" - "rendercolor" "255 255 255" - "solid" "6" - "targetname" "@entrance_airlock_door" - connections - { - "OnOpen" "door_clipDisable0.25-1" - } - "origin" "0 654 -256" - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 500]" - } -} -entity { "id" "123042" "classname" "linked_portal_door" @@ -5446,8 +5550,8 @@ cameras "activecamera" "0" camera { - "position" "[21.6713 523.048 -97.5872]" - "look" "[10.8557 575.707 -130.66]" + "position" "[1.59723 509.373 -101.863]" + "look" "[4.57998 562.816 -135.311]" } camera { diff --git a/packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_entrance/stair_flat.vmf b/packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_entrance/stair_flat.vmf new file mode 100644 index 0000000000..0ba0ee4b00 --- /dev/null +++ b/packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_entrance/stair_flat.vmf @@ -0,0 +1,5576 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "1033" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "32" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "1033" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black" + solid + { + "id" "134868" + side + { + "id" "24322" + "plane" "(64 512 -128) (64 384 -128) (96 384 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24321" + "plane" "(96 512 64) (96 512 -128) (96 384 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24320" + "plane" "(64 384 64) (64 384 -128) (64 512 -128)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[0 -1 0 -512] 0.25" + "vaxis" "[0 0 -1 768] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24319" + "plane" "(64 512 64) (64 512 -128) (96 512 -128)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24318" + "plane" "(96 384 64) (96 384 -128) (64 384 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24317" + "plane" "(64 384 64) (64 512 64) (96 512 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "134870" + side + { + "id" "24334" + "plane" "(-96 512 -128) (-96 384 -128) (-64 384 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24333" + "plane" "(-64 512 64) (-64 512 -128) (-64 384 -128)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[0 -1 0 -512] 0.25" + "vaxis" "[0 0 -1 768] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24332" + "plane" "(-96 384 64) (-96 384 -128) (-96 512 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24331" + "plane" "(-96 512 64) (-96 512 -128) (-64 512 -128)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24330" + "plane" "(-64 384 64) (-64 384 -128) (-96 384 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24329" + "plane" "(-96 384 64) (-96 512 64) (-64 512 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "123361" + side + { + "id" "23998" + "plane" "(64 768 -144) (-64 768 -144) (-64 640 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 58.7142] 0.28" + "vaxis" "[1 0 0 54] 0.28" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23997" + "plane" "(64 640 -128) (64 640 -144) (-64 640 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -55.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23996" + "plane" "(-64 768 -128) (-64 768 -144) (64 768 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23995" + "plane" "(-64 640 -128) (-64 640 -144) (-64 768 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 58.7142] 0.28" + "vaxis" "[0 0 -1 -28] 0.28" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23994" + "plane" "(64 768 -128) (64 768 -144) (64 640 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 58.7142] 0.28" + "vaxis" "[0 0 -1 -28] 0.28" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23993" + "plane" "(64 640 -128) (-64 640 -128) (-64 768 -128)" + "material" "METAL/BLACK_FLOOR_METAL_001C" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 197 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "123363" + side + { + "id" "24010" + "plane" "(-64 640 32) (-64 768 32) (64 768 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24009" + "plane" "(64 768 0) (64 640 0) (64 640 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24008" + "plane" "(-64 768 32) (-64 640 32) (-64 640 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24007" + "plane" "(-64 640 0) (-64 640 32) (64 640 32)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24006" + "plane" "(-64 768 0) (-64 640 0) (64 640 0)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 -1 0 -512] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24005" + "plane" "(64 768 0) (64 768 32) (-64 768 32)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 188 245" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "124694" + side + { + "id" "24190" + "plane" "(-80 704 -128) (-80 768 -128) (-80 768 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.00390625] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24189" + "plane" "(-64 768 -128) (-64 704 -128) (-64 704 0)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24188" + "plane" "(-80 704 0) (-80 768 0) (-64 768 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.00390625] 0.25" + "vaxis" "[1 0 0 63.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24187" + "plane" "(-80 768 -128) (-80 704 -128) (-64 704 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.00390625] 0.25" + "vaxis" "[1 0 0 63.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24186" + "plane" "(-80 768 0) (-80 768 -128) (-64 768 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24185" + "plane" "(-64 704 0) (-64 704 -128) (-80 704 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 209 174" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "124695" + side + { + "id" "24196" + "plane" "(-80 640 -128) (-80 704 -128) (-80 704 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.00390625] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24195" + "plane" "(-64 704 -128) (-64 640 -128) (-64 640 0)" + "material" "METAL/BLACK_WALL_METAL_002E" + "uaxis" "[0 1 0 512] 0.25" + "vaxis" "[0 0 -1 -512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24194" + "plane" "(-80 640 0) (-80 704 0) (-64 704 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.00390625] 0.25" + "vaxis" "[1 0 0 63.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24193" + "plane" "(-80 704 -128) (-80 640 -128) (-64 640 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.00390625] 0.25" + "vaxis" "[1 0 0 63.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24192" + "plane" "(-64 640 0) (-64 640 -128) (-80 640 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24191" + "plane" "(-80 704 0) (-80 704 -128) (-64 704 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 209 174" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "124696" + side + { + "id" "24202" + "plane" "(64 704 -128) (64 768 -128) (64 768 0)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24201" + "plane" "(80 768 -128) (80 704 -128) (80 704 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.00390625] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24200" + "plane" "(64 704 0) (64 768 0) (80 768 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.00390625] 0.25" + "vaxis" "[1 0 0 63.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24199" + "plane" "(64 768 -128) (64 704 -128) (80 704 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.00390625] 0.25" + "vaxis" "[1 0 0 63.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24198" + "plane" "(64 768 0) (64 768 -128) (80 768 -128)" + "material" "METAL/BLACK_WALL_METAL_006C" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24197" + "plane" "(80 704 0) (80 704 -128) (64 704 -128)" + "material" "METAL/BLACK_WALL_METAL_002E" + "uaxis" "[1 0 0 384] 0.25" + "vaxis" "[0 0 -1 -512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 217 126" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "124697" + side + { + "id" "24208" + "plane" "(64 640 -128) (64 704 -128) (64 704 0)" + "material" "METAL/BLACK_WALL_METAL_002E" + "uaxis" "[0 1 0 512] 0.25" + "vaxis" "[0 0 -1 -512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24207" + "plane" "(80 704 -128) (80 640 -128) (80 640 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.00390625] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24206" + "plane" "(64 640 0) (64 704 0) (80 704 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.00390625] 0.25" + "vaxis" "[1 0 0 63.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24205" + "plane" "(64 704 -128) (64 640 -128) (80 640 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.00390625] 0.25" + "vaxis" "[1 0 0 63.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24204" + "plane" "(80 640 0) (80 640 -128) (64 640 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24203" + "plane" "(64 704 0) (64 704 -128) (80 704 -128)" + "material" "METAL/BLACK_WALL_METAL_002E" + "uaxis" "[1 0 0 384] 0.25" + "vaxis" "[0 0 -1 -512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 217 126" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122043" + side + { + "id" "22366" + "plane" "(-80 320 64) (-256 320 64) (-256 384 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22365" + "plane" "(-256 384 -128) (-256 320 -128) (-80 320 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22364" + "plane" "(-80 320 -128) (-256 320 -128) (-256 320 64)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22363" + "plane" "(-80 384 -128) (-80 320 -128) (-80 320 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22362" + "plane" "(-256 320 -128) (-256 384 -128) (-256 384 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22361" + "plane" "(-256 384 -128) (-80 384 -128) (-80 384 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122044" + side + { + "id" "22372" + "plane" "(-96 576 64) (-96 640 64) (96 640 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22371" + "plane" "(96 640 0) (96 640 64) (-96 640 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22370" + "plane" "(96 576 0) (96 576 64) (96 640 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22369" + "plane" "(-96 640 0) (-96 640 64) (-96 576 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22368" + "plane" "(-96 576 0) (-96 576 64) (96 576 64)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22367" + "plane" "(96 640 0) (-96 640 0) (-96 576 0)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[-1 0 0 512] 0.25" + "vaxis" "[0 1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122045" + side + { + "id" "22378" + "plane" "(96 512 72) (64 512 72) (64 576 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22377" + "plane" "(96 576 64) (64 576 64) (64 512 64)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 512] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22376" + "plane" "(64 576 64) (96 576 64) (96 576 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22375" + "plane" "(96 512 64) (64 512 64) (64 512 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22374" + "plane" "(96 576 64) (96 512 64) (96 512 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22373" + "plane" "(64 512 64) (64 576 64) (64 576 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122050" + side + { + "id" "24514" + "plane" "(-96 384 128) (-96 512 128) (96 512 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24513" + "plane" "(96 512 64) (-96 512 64) (-96 384 64)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[-1 0 0 512] 0.25" + "vaxis" "[0 1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24512" + "plane" "(-96 512 64) (96 512 64) (96 512 128)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24511" + "plane" "(96 512 64) (96 384 64) (96 384 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24510" + "plane" "(-96 384 64) (-96 512 64) (-96 512 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24509" + "plane" "(96 384 64) (-96 384 64) (-96 384 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122051" + side + { + "id" "22414" + "plane" "(96 512 64) (96 576 64) (112 576 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22413" + "plane" "(112 576 -128) (96 576 -128) (96 512 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22412" + "plane" "(96 576 -128) (112 576 -128) (112 576 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22411" + "plane" "(112 576 -128) (112 512 -128) (112 512 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22410" + "plane" "(96 512 -128) (96 576 -128) (96 576 64)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 -1 0 -512] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22409" + "plane" "(112 512 -128) (96 512 -128) (96 512 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122052" + side + { + "id" "22420" + "plane" "(-112 512 64) (-112 576 64) (-96 576 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22419" + "plane" "(-96 576 -128) (-112 576 -128) (-112 512 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22418" + "plane" "(-112 576 -128) (-96 576 -128) (-96 576 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22417" + "plane" "(-96 576 -128) (-96 512 -128) (-96 512 64)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 -1 0 -512] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22416" + "plane" "(-112 512 -128) (-112 576 -128) (-112 576 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22415" + "plane" "(-96 512 -128) (-112 512 -128) (-112 512 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122053" + side + { + "id" "22426" + "plane" "(96 512 -128) (-96 512 -128) (-96 640 -128)" + "material" "METAL/BLACK_FLOOR_METAL_001C" + "uaxis" "[-1 0 0 -256] 0.25" + "vaxis" "[0 1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22425" + "plane" "(96 640 -160) (-96 640 -160) (-96 512 -160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22424" + "plane" "(-96 640 -160) (96 640 -160) (96 640 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22423" + "plane" "(96 512 -160) (-96 512 -160) (-96 512 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22422" + "plane" "(96 640 -160) (96 512 -160) (96 512 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22421" + "plane" "(-96 512 -160) (-96 640 -160) (-96 640 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122054" + side + { + "id" "22432" + "plane" "(-64 320 64) (-80 320 64) (-80 384 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22431" + "plane" "(-80 384 -128) (-80 320 -128) (-64 320 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22430" + "plane" "(-64 320 -128) (-80 320 -128) (-80 320 64)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22429" + "plane" "(-64 384 -128) (-64 320 -128) (-64 320 64)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 768] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22428" + "plane" "(-80 320 -128) (-80 384 -128) (-80 384 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22427" + "plane" "(-80 384 -128) (-64 384 -128) (-64 384 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122055" + side + { + "id" "22438" + "plane" "(80 320 64) (64 320 64) (64 384 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22437" + "plane" "(64 384 -128) (64 320 -128) (80 320 -128)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22436" + "plane" "(80 320 -128) (64 320 -128) (64 320 64)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22435" + "plane" "(80 384 -128) (80 320 -128) (80 320 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22434" + "plane" "(64 320 -128) (64 384 -128) (64 384 64)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 768] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22433" + "plane" "(64 384 -128) (80 384 -128) (80 384 64)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122056" + side + { + "id" "22444" + "plane" "(256 320 64) (80 320 64) (80 384 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22443" + "plane" "(80 384 -128) (80 320 -128) (256 320 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22442" + "plane" "(256 320 -128) (80 320 -128) (80 320 64)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 -256] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22441" + "plane" "(256 384 -128) (256 320 -128) (256 320 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22440" + "plane" "(80 320 -128) (80 384 -128) (80 384 64)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22439" + "plane" "(80 384 -128) (256 384 -128) (256 384 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122058" + side + { + "id" "22456" + "plane" "(-64 384 -128) (-64 512 -128) (64 512 -128)" + "material" "METAL/BLACK_FLOOR_METAL_001D" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22455" + "plane" "(64 512 -144) (-64 512 -144) (-64 384 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22454" + "plane" "(-64 512 -144) (64 512 -144) (64 512 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22453" + "plane" "(64 512 -144) (64 384 -144) (64 384 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22452" + "plane" "(-64 384 -144) (-64 512 -144) (-64 512 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22451" + "plane" "(64 384 -144) (-64 384 -144) (-64 384 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122059" + side + { + "id" "22462" + "plane" "(-64 576 72) (-64 608 72) (64 608 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22461" + "plane" "(64 608 64) (-64 608 64) (-64 576 64)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 512] 0.25" + "vaxis" "[0 1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22460" + "plane" "(-64 608 64) (64 608 64) (64 608 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22459" + "plane" "(-64 576 64) (-64 608 64) (-64 608 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22458" + "plane" "(64 608 64) (64 576 64) (64 576 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22457" + "plane" "(64 576 64) (-64 576 64) (-64 576 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122061" + side + { + "id" "22474" + "plane" "(256 320 768) (-256 320 768) (-256 384 768)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22473" + "plane" "(-256 384 64) (-256 320 64) (256 320 64)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[-1 0 0 512] 0.25" + "vaxis" "[0 1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22472" + "plane" "(256 320 64) (-256 320 64) (-256 320 768)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22471" + "plane" "(256 384 64) (256 320 64) (256 320 768)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22470" + "plane" "(-256 320 64) (-256 384 64) (-256 384 768)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22469" + "plane" "(-256 384 64) (256 384 64) (256 384 768)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122062" + side + { + "id" "22480" + "plane" "(256 320 -128) (-256 320 -128) (-256 384 -128)" + "material" "METAL/BLACK_FLOOR_METAL_001D" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22479" + "plane" "(-256 384 -1280) (-256 320 -1280) (256 320 -1280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22478" + "plane" "(256 320 -1280) (-256 320 -1280) (-256 320 -128)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22477" + "plane" "(256 384 -1280) (256 320 -1280) (256 320 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22476" + "plane" "(-256 320 -1280) (-256 384 -1280) (-256 384 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22475" + "plane" "(-256 384 -1280) (256 384 -1280) (256 384 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122063" + side + { + "id" "22486" + "plane" "(64 512 80) (-64 512 80) (-64 576 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22485" + "plane" "(-64 576 72) (-64 512 72) (64 512 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22484" + "plane" "(64 512 72) (-64 512 72) (-64 512 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22483" + "plane" "(-64 512 72) (-64 576 72) (-64 576 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22482" + "plane" "(64 576 72) (64 512 72) (64 512 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22481" + "plane" "(-64 576 72) (64 576 72) (64 576 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122065" + side + { + "id" "22498" + "plane" "(96 576 0) (64 576 0) (64 640 0)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22497" + "plane" "(96 640 -128) (64 640 -128) (64 576 -128)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 512] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22496" + "plane" "(64 640 -128) (96 640 -128) (96 640 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22495" + "plane" "(96 576 -128) (64 576 -128) (64 576 0)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22494" + "plane" "(96 640 -128) (96 576 -128) (96 576 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22493" + "plane" "(64 576 -128) (64 640 -128) (64 640 0)" + "material" "METAL/BLACK_WALL_METAL_002E" + "uaxis" "[0 -1 0 -768] 0.25" + "vaxis" "[0 0 -1 -512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122066" + side + { + "id" "22504" + "plane" "(-64 576 0) (-96 576 0) (-96 640 0)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22503" + "plane" "(-64 640 -128) (-96 640 -128) (-96 576 -128)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 512] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22502" + "plane" "(-96 640 -128) (-64 640 -128) (-64 640 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22501" + "plane" "(-64 576 -128) (-96 576 -128) (-96 576 0)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 -128] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22500" + "plane" "(-64 640 -128) (-64 576 -128) (-64 576 0)" + "material" "METAL/BLACK_WALL_METAL_002E" + "uaxis" "[0 -1 0 -768] 0.25" + "vaxis" "[0 0 -1 -512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22499" + "plane" "(-96 576 -128) (-96 640 -128) (-96 640 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122068" + side + { + "id" "22516" + "plane" "(-64 512 72) (-96 512 72) (-96 576 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22515" + "plane" "(-64 576 64) (-96 576 64) (-96 512 64)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 512] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22514" + "plane" "(-96 576 64) (-64 576 64) (-64 576 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22513" + "plane" "(-64 512 64) (-96 512 64) (-96 512 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22512" + "plane" "(-96 512 64) (-96 576 64) (-96 576 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22511" + "plane" "(-64 576 64) (-64 512 64) (-64 512 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122852" + side + { + "id" "23650" + "plane" "(64 800 0) (-64 800 0) (-64 816 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23649" + "plane" "(64 816 -128) (-64 816 -128) (-64 800 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23648" + "plane" "(64 800 -128) (-64 800 -128) (-64 800 0)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23647" + "plane" "(-64 816 -128) (64 816 -128) (64 816 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23646" + "plane" "(-64 800 -128) (-64 816 -128) (-64 816 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23645" + "plane" "(64 816 -128) (64 800 -128) (64 800 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 222 123" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122855" + side + { + "id" "23662" + "plane" "(64 768 32) (-64 768 32) (-64 800 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23661" + "plane" "(64 800 0) (-64 800 0) (-64 768 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23660" + "plane" "(64 768 0) (-64 768 0) (-64 768 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23659" + "plane" "(-64 800 0) (64 800 0) (64 800 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23658" + "plane" "(-64 768 0) (-64 800 0) (-64 800 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23657" + "plane" "(64 800 0) (64 768 0) (64 768 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 222 123" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "94657" + side + { + "id" "18800" + "plane" "(80 768 0) (64 768 0) (64 800 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18799" + "plane" "(80 800 -128) (64 800 -128) (64 768 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18798" + "plane" "(80 768 -128) (64 768 -128) (64 768 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18797" + "plane" "(64 800 -128) (80 800 -128) (80 800 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18796" + "plane" "(64 768 -128) (64 800 -128) (64 800 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18795" + "plane" "(80 800 -128) (80 768 -128) (80 768 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 222 123" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "94654" + side + { + "id" "18782" + "plane" "(-64 768 0) (-80 768 0) (-80 800 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18781" + "plane" "(-64 800 -128) (-80 800 -128) (-80 768 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18780" + "plane" "(-64 768 -128) (-80 768 -128) (-80 768 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18779" + "plane" "(-80 800 -128) (-64 800 -128) (-64 800 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18778" + "plane" "(-80 768 -128) (-80 800 -128) (-80 800 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18777" + "plane" "(-64 800 -128) (-64 768 -128) (-64 768 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 222 123" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "94655" + side + { + "id" "18788" + "plane" "(64 768 -128) (-64 768 -128) (-64 800 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18787" + "plane" "(64 800 -144) (-64 800 -144) (-64 768 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18786" + "plane" "(64 768 -144) (-64 768 -144) (-64 768 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18785" + "plane" "(-64 800 -144) (64 800 -144) (64 800 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18784" + "plane" "(-64 768 -144) (-64 800 -144) (-64 800 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18783" + "plane" "(64 800 -144) (64 768 -144) (64 768 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 222 123" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } +} +entity +{ + "id" "137790" + "classname" "comp_kv_setter" + "angles" "0 0 0" + "conv_ang" "0" + "ctrl_type" "0" + "ctrl_value" "1" + "invert" "0" + "kv_name" "lightingorigin" + "kv_value_local" "@entrance_portal_elevator_side" + "kv_value_mode" "local" + "kv_value_pos" "16 752 -120" + "mode" "kv" + "rotate" "0" + "target" "@entrance_airlock_door" + "origin" "16 752 -120" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "137793" + "classname" "prop_testchamber_door" + "angles" "0 270 0" + "lightingorigin" "@entrance_portal_elevator_side" + "renderamt" "255" + "rendercolor" "255 255 255" + "solid" "6" + "targetname" "@entrance_airlock_door" + connections + { + "OnOpen" "door_clipDisable0.25-1" + "OnFullyOpen" "@entrance_airlock_doorSetLightingOrigin@entrance_portal_chamber_side0-1" + } + "origin" "0 782 -128" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "comments" "Change the lighting origin once open, so that it blends when closed again." + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "136487" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/hanging_walkway_64c.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "0 288 -124" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +entity +{ + "id" "136649" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/hanging_walkway_64d.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "0 352 -124" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +entity +{ + "id" "136672" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/hanging_walkway_64d.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "0 416 -124" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +entity +{ + "id" "136684" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/hanging_walkway_64d.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "0 480 -124" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +entity +{ + "id" "137723" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/hanging_walkway_end_cap.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "0 256 -124" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +entity +{ + "id" "136311" + "classname" "func_brush" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablex360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "inputfilter" "0" + "invert_exclusion" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "origin" "0 789 -64" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "solid" "6" + "solidbsp" "0" + "solidity" "0" + "spawnflags" "0" + "startdisabled" "0" + "targetname" "door_clip" + "vrad_brush_cast_shadows" "0" + solid + { + "id" "136307" + side + { + "id" "24490" + "plane" "(-64 778 0) (-64 800 0) (64 800 0)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24489" + "plane" "(-64 800 -128) (-64 778 -128) (64 778 -128)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24488" + "plane" "(-64 778 -128) (-64 800 -128) (-64 800 0)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24487" + "plane" "(64 800 -128) (64 778 -128) (64 778 0)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24486" + "plane" "(-64 800 -128) (64 800 -128) (64 800 0)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24485" + "plane" "(64 778 -128) (-64 778 -128) (-64 778 0)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 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" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "136243" + "classname" "env_soundscape" + "angles" "0 0 0" + "radius" "184" + "soundscape" "portal_testchmb.explore_space" + "origin" "0 352 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "128599" + "classname" "light" + "_constant_attn" "10000" + "_light" "255 255 255 30" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" + "origin" "0 544 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "125568" + "classname" "func_instance_parms" + "parm1" "$no_player_start boolean 0" + "origin" "0 696 -56" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "122202" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/hanging_walkway_end_cap.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "0 544 -124" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +entity +{ + "id" "122236" + "classname" "func_detail" + solid + { + "id" "136188" + side + { + "id" "24448" + "plane" "(-39 264 64) (-33 256 64) (-40 256 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24447" + "plane" "(-40 264 -256) (-40 256 -256) (-33 256 -256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24446" + "plane" "(-33 256 64) (-39 264 64) (-39 264 -256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-0.6 0.8 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24445" + "plane" "(-40 264 64) (-40 256 64) (-40 256 -256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24444" + "plane" "(-39 264 64) (-40 264 64) (-40 264 -256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24443" + "plane" "(-40 256 64) (-33 256 64) (-33 256 -256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136189" + side + { + "id" "24454" + "plane" "(40 264 64) (40 256 64) (33 256 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24453" + "plane" "(39 264 -256) (33 256 -256) (40 256 -256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24452" + "plane" "(40 256 64) (40 264 64) (40 264 -256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24451" + "plane" "(39 264 64) (33 256 64) (33 256 -256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-0.6 -0.8 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24450" + "plane" "(40 264 64) (39 264 64) (39 264 -256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24449" + "plane" "(33 256 64) (40 256 64) (40 256 -256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136191" + side + { + "id" "24466" + "plane" "(64 320 64) (39 320 64) (39 551 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24465" + "plane" "(64 576 -128) (39 551 -128) (39 320 -128)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24464" + "plane" "(64 576 64) (64 576 -128) (64 320 -128)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24463" + "plane" "(39 320 64) (39 320 -128) (39 551 -128)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24462" + "plane" "(39 551 64) (39 551 -128) (64 576 -128)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24461" + "plane" "(64 320 64) (64 320 -128) (39 320 -128)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136193" + side + { + "id" "24478" + "plane" "(-39 320 64) (-64 320 64) (-64 576 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24477" + "plane" "(-39 551 -128) (-64 576 -128) (-64 320 -128)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24476" + "plane" "(-39 551 64) (-39 551 -128) (-39 320 -128)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24475" + "plane" "(-64 320 64) (-64 320 -128) (-64 576 -128)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24474" + "plane" "(-64 576 64) (-64 576 -128) (-39 551 -128)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24473" + "plane" "(-39 320 64) (-39 320 -128) (-64 320 -128)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136190" + side + { + "id" "24460" + "plane" "(64 264 64) (39 264 64) (39 320 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24459" + "plane" "(64 320 -256) (39 320 -256) (39 264 -256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24458" + "plane" "(64 320 64) (64 320 -256) (64 264 -256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24457" + "plane" "(39 264 64) (39 264 -256) (39 320 -256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24456" + "plane" "(64 264 64) (64 264 -256) (39 264 -256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24455" + "plane" "(39 320 64) (39 320 -256) (64 320 -256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136192" + side + { + "id" "24472" + "plane" "(-39 264 64) (-64 264 64) (-64 320 64)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24471" + "plane" "(-39 320 -256) (-64 320 -256) (-64 264 -256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24470" + "plane" "(-39 320 64) (-39 320 -256) (-39 264 -256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24469" + "plane" "(-64 264 64) (-64 264 -256) (-64 320 -256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24468" + "plane" "(-39 264 64) (-39 264 -256) (-64 264 -256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24467" + "plane" "(-64 320 64) (-64 320 -256) (-39 320 -256)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "122483" + "classname" "func_detail" + solid + { + "id" "122484" + side + { + "id" "23560" + "plane" "(-56 569 71) (56 569 71) (56 569 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -40] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23559" + "plane" "(56 551 71) (-56 551 71) (-56 551 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -40] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23558" + "plane" "(56 551 72) (-56 551 72) (-56 569 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23557" + "plane" "(56 569 71) (-56 569 71) (-56 551 71)" + "material" "LIGHTS/LIGHT_PANEL_COOL" + "uaxis" "[-1 0 0 32] 4" + "vaxis" "[0 -1 0 -20] 4" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23556" + "plane" "(-56 551 72) (-56 551 71) (-56 569 71)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -40] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23555" + "plane" "(56 569 72) (56 569 71) (56 551 71)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -40] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "122485" + "classname" "func_detail" + solid + { + "id" "122486" + side + { + "id" "23566" + "plane" "(-56 537 71) (56 537 71) (56 537 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -40] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23565" + "plane" "(56 519 71) (-56 519 71) (-56 519 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -40] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23564" + "plane" "(56 519 72) (-56 519 72) (-56 537 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23563" + "plane" "(56 537 71) (-56 537 71) (-56 519 71)" + "material" "LIGHTS/LIGHT_PANEL_COOL" + "uaxis" "[-1 0 0 32] 4" + "vaxis" "[0 -1 0 -28] 4" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23562" + "plane" "(-56 519 72) (-56 519 71) (-56 537 71)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -40] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23561" + "plane" "(56 537 72) (56 537 71) (56 519 71)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -40] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "122511" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/hanging_walkway_32b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "0 528 -124" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +entity +{ + "id" "122515" + "classname" "env_soundscape" + "angles" "0 0 0" + "radius" "128" + "soundscape" "industrial_gen_01" + "origin" "3.5801 471 -131.911" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "122537" + "classname" "prop_static" + "angles" "90 0 0" + "disableshadows" "1" + "drawinfastreflection" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_lab/glass_lightcover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "origin" "0 560 64" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2500 -12768]" + } +} +entity +{ + "id" "122547" + "classname" "prop_static" + "angles" "90 0 0" + "disableshadows" "1" + "drawinfastreflection" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_lab/glass_lightcover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "origin" "0 528 64" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2500 -12768]" + } +} +entity +{ + "id" "123042" + "classname" "linked_portal_door" + "angles" "0 270 0" + "fademindist" "-1" + "fadescale" "1" + "height" "128" + "partnername" "@entrance_portal_chamber_side" + "renderamt" "255" + "rendercolor" "255 255 255" + "targetname" "@entrance_portal_elevator_side" + "width" "128" + "origin" "0 785 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -15768]" + } +} +entity +{ + "id" "93390" + "classname" "func_detail" + solid + { + "id" "93415" + side + { + "id" "18710" + "plane" "(-64 800 -95) (-64 800 -106) (-57 800 -106)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18709" + "plane" "(-64 768 -106) (-64 768 -95) (-60 768 -95)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18708" + "plane" "(-64 768 -95) (-64 768 -106) (-64 800 -106)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18707" + "plane" "(-60 800 -95) (-57 800 -106) (-57 768 -106)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18706" + "plane" "(-60 768 -95) (-64 768 -95) (-64 800 -95)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18705" + "plane" "(-57 800 -106) (-64 800 -106) (-64 768 -106)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93392" + side + { + "id" "18572" + "plane" "(41 800 0) (34 800 0) (34 800 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18571" + "plane" "(41 768 -38) (34 768 -32) (34 768 0)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18570" + "plane" "(41 768 0) (34 768 0) (34 800 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18569" + "plane" "(34 768 0) (34 768 -32) (34 800 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18568" + "plane" "(41 800 -38) (34 800 -32) (34 768 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18567" + "plane" "(41 800 0) (41 800 -38) (41 768 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93393" + side + { + "id" "18578" + "plane" "(-57 768 -60) (-60 768 -71) (-64 768 -71)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18577" + "plane" "(-64 800 -60) (-64 800 -71) (-60 800 -71)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18576" + "plane" "(-64 768 -60) (-64 768 -71) (-64 800 -71)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18575" + "plane" "(-57 800 -60) (-60 800 -71) (-60 768 -71)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18574" + "plane" "(-60 800 -71) (-64 800 -71) (-64 768 -71)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18573" + "plane" "(-57 768 -60) (-64 768 -60) (-64 800 -60)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93394" + side + { + "id" "18584" + "plane" "(-60 768 -71) (-61 768 -83) (-64 768 -83)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18583" + "plane" "(-64 800 -71) (-64 800 -83) (-61 800 -83)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18582" + "plane" "(-64 768 -71) (-64 768 -83) (-64 800 -83)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18581" + "plane" "(-61 800 -83) (-64 800 -83) (-64 768 -83)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18580" + "plane" "(-60 800 -71) (-61 800 -83) (-61 768 -83)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18579" + "plane" "(-60 768 -71) (-64 768 -71) (-64 800 -71)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93395" + side + { + "id" "18590" + "plane" "(12 800 0) (0 800 0) (0 800 -22)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18589" + "plane" "(12 768 -23) (0 768 -22) (0 768 0)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18588" + "plane" "(12 768 0) (0 768 0) (0 800 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18587" + "plane" "(12 800 -23) (0 800 -22) (0 768 -22)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18586" + "plane" "(0 768 0) (0 768 -22) (0 800 -22)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18585" + "plane" "(12 800 0) (12 800 -23) (12 768 -23)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93396" + side + { + "id" "18596" + "plane" "(24 800 0) (12 800 0) (12 800 -23)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18595" + "plane" "(24 768 -27) (12 768 -23) (12 768 0)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18594" + "plane" "(24 768 0) (12 768 0) (12 800 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18593" + "plane" "(24 800 -27) (12 800 -23) (12 768 -23)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18592" + "plane" "(12 768 0) (12 768 -23) (12 800 -23)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18591" + "plane" "(24 800 0) (24 800 -27) (24 768 -27)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93397" + side + { + "id" "18602" + "plane" "(60 800 -71) (61 800 -83) (64 800 -83)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18601" + "plane" "(64 768 -71) (64 768 -83) (61 768 -83)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18600" + "plane" "(64 800 -71) (64 800 -83) (64 768 -83)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18599" + "plane" "(64 800 -83) (61 800 -83) (61 768 -83)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18598" + "plane" "(60 768 -71) (61 768 -83) (61 800 -83)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18597" + "plane" "(64 768 -71) (60 768 -71) (60 800 -71)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93398" + side + { + "id" "18608" + "plane" "(57 800 -60) (60 800 -71) (64 800 -71)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18607" + "plane" "(64 768 -60) (64 768 -71) (60 768 -71)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18606" + "plane" "(64 800 -60) (64 800 -71) (64 768 -71)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18605" + "plane" "(57 768 -60) (60 768 -71) (60 800 -71)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18604" + "plane" "(64 800 -71) (60 800 -71) (60 768 -71)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18603" + "plane" "(64 768 -60) (57 768 -60) (57 800 -60)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93399" + side + { + "id" "18614" + "plane" "(34 800 0) (24 800 0) (24 800 -27)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18613" + "plane" "(34 768 -32) (24 768 -27) (24 768 0)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18612" + "plane" "(34 768 0) (24 768 0) (24 800 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18611" + "plane" "(24 768 0) (24 768 -27) (24 800 -27)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18610" + "plane" "(34 800 -32) (24 800 -27) (24 768 -27)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18609" + "plane" "(34 800 0) (34 800 -32) (34 768 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93400" + side + { + "id" "18620" + "plane" "(51 800 -49) (57 800 -60) (64 800 -60)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18619" + "plane" "(64 768 -49) (64 768 -60) (57 768 -60)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18618" + "plane" "(64 800 -49) (64 800 -60) (64 768 -60)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18617" + "plane" "(64 800 -60) (57 800 -60) (57 768 -60)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18616" + "plane" "(51 768 -49) (57 768 -60) (57 800 -60)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18615" + "plane" "(64 768 -49) (51 768 -49) (51 800 -49)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93401" + side + { + "id" "18626" + "plane" "(41 800 -38) (51 800 -49) (64 800 -49)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18625" + "plane" "(64 768 -38) (64 768 -49) (51 768 -49)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18624" + "plane" "(64 800 -38) (64 800 -49) (64 768 -49)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18623" + "plane" "(64 800 -49) (51 800 -49) (51 768 -49)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18622" + "plane" "(41 768 -38) (51 768 -49) (51 800 -49)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18621" + "plane" "(64 768 -38) (41 768 -38) (41 800 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93402" + side + { + "id" "18632" + "plane" "(-12 768 0) (0 768 0) (0 768 -22)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18631" + "plane" "(-12 800 -23) (0 800 -22) (0 800 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18630" + "plane" "(0 768 0) (-12 768 0) (-12 800 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18629" + "plane" "(0 800 -22) (-12 800 -23) (-12 768 -23)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18628" + "plane" "(0 800 0) (0 800 -22) (0 768 -22)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18627" + "plane" "(-12 768 0) (-12 768 -23) (-12 800 -23)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93403" + side + { + "id" "18638" + "plane" "(-24 768 0) (-12 768 0) (-12 768 -23)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18637" + "plane" "(-24 800 -27) (-12 800 -23) (-12 800 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18636" + "plane" "(-12 768 0) (-24 768 0) (-24 800 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18635" + "plane" "(-12 800 -23) (-24 800 -27) (-24 768 -27)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18634" + "plane" "(-12 800 0) (-12 800 -23) (-12 768 -23)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18633" + "plane" "(-24 768 0) (-24 768 -27) (-24 800 -27)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93404" + side + { + "id" "18644" + "plane" "(-41 768 0) (-34 768 0) (-34 768 -32)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18643" + "plane" "(-41 800 -38) (-34 800 -32) (-34 800 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18642" + "plane" "(-34 768 0) (-41 768 0) (-41 800 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18641" + "plane" "(-34 800 0) (-34 800 -32) (-34 768 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18640" + "plane" "(-34 800 -32) (-41 800 -38) (-41 768 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18639" + "plane" "(-41 768 0) (-41 768 -38) (-41 800 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93405" + side + { + "id" "18650" + "plane" "(-34 768 0) (-24 768 0) (-24 768 -27)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18649" + "plane" "(-34 800 -32) (-24 800 -27) (-24 800 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18648" + "plane" "(-24 768 0) (-34 768 0) (-34 800 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18647" + "plane" "(-24 800 0) (-24 800 -27) (-24 768 -27)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18646" + "plane" "(-24 800 -27) (-34 800 -32) (-34 768 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18645" + "plane" "(-34 768 0) (-34 768 -32) (-34 800 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93406" + side + { + "id" "18656" + "plane" "(-41 768 -38) (-51 768 -49) (-64 768 -49)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18655" + "plane" "(-64 800 -38) (-64 800 -49) (-51 800 -49)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18654" + "plane" "(-64 768 -38) (-64 768 -49) (-64 800 -49)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18653" + "plane" "(-51 800 -49) (-64 800 -49) (-64 768 -49)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18652" + "plane" "(-41 800 -38) (-51 800 -49) (-51 768 -49)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18651" + "plane" "(-41 768 -38) (-64 768 -38) (-64 800 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93407" + side + { + "id" "18662" + "plane" "(-51 768 -49) (-57 768 -60) (-64 768 -60)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18661" + "plane" "(-64 800 -49) (-64 800 -60) (-57 800 -60)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18660" + "plane" "(-64 768 -49) (-64 768 -60) (-64 800 -60)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18659" + "plane" "(-57 800 -60) (-64 800 -60) (-64 768 -60)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18658" + "plane" "(-51 800 -49) (-57 800 -60) (-57 768 -60)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18657" + "plane" "(-51 768 -49) (-64 768 -49) (-64 800 -49)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93408" + side + { + "id" "18668" + "plane" "(64 768 -106) (64 768 -117) (51 768 -117)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18667" + "plane" "(64 800 -117) (64 800 -106) (57 800 -106)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18666" + "plane" "(64 800 -106) (64 800 -117) (64 768 -117)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18665" + "plane" "(64 768 -106) (57 768 -106) (57 800 -106)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18664" + "plane" "(57 768 -106) (51 768 -117) (51 800 -117)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18663" + "plane" "(64 800 -117) (51 800 -117) (51 768 -117)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93409" + side + { + "id" "18674" + "plane" "(64 768 -117) (64 768 -128) (41 768 -128)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18673" + "plane" "(64 800 -128) (64 800 -117) (51 800 -117)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18672" + "plane" "(64 800 -117) (64 800 -128) (64 768 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18671" + "plane" "(64 768 -117) (51 768 -117) (51 800 -117)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18670" + "plane" "(51 768 -117) (41 768 -128) (41 800 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18669" + "plane" "(64 800 -128) (41 800 -128) (41 768 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93410" + side + { + "id" "18680" + "plane" "(64 768 -95) (64 768 -106) (57 768 -106)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18679" + "plane" "(64 800 -106) (64 800 -95) (60 800 -95)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18678" + "plane" "(64 800 -95) (64 800 -106) (64 768 -106)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18677" + "plane" "(60 768 -95) (57 768 -106) (57 800 -106)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18676" + "plane" "(64 768 -95) (60 768 -95) (60 800 -95)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18675" + "plane" "(64 800 -106) (57 800 -106) (57 768 -106)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93411" + side + { + "id" "18686" + "plane" "(64 768 -83) (64 768 -95) (60 768 -95)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18685" + "plane" "(64 800 -95) (64 800 -83) (61 800 -83)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18684" + "plane" "(64 800 -83) (64 800 -95) (64 768 -95)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18683" + "plane" "(64 768 -83) (61 768 -83) (61 800 -83)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18682" + "plane" "(61 768 -83) (60 768 -95) (60 800 -95)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18681" + "plane" "(64 800 -95) (60 800 -95) (60 768 -95)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93412" + side + { + "id" "18692" + "plane" "(-64 800 -117) (-64 800 -128) (-41 800 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18691" + "plane" "(-64 768 -128) (-64 768 -117) (-51 768 -117)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18690" + "plane" "(-64 768 -117) (-64 768 -128) (-64 800 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18689" + "plane" "(-51 768 -117) (-64 768 -117) (-64 800 -117)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18688" + "plane" "(-51 800 -117) (-41 800 -128) (-41 768 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18687" + "plane" "(-41 800 -128) (-64 800 -128) (-64 768 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93413" + side + { + "id" "18698" + "plane" "(-64 800 -106) (-64 800 -117) (-51 800 -117)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18697" + "plane" "(-64 768 -117) (-64 768 -106) (-57 768 -106)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18696" + "plane" "(-64 768 -106) (-64 768 -117) (-64 800 -117)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18695" + "plane" "(-57 768 -106) (-64 768 -106) (-64 800 -106)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18694" + "plane" "(-57 800 -106) (-51 800 -117) (-51 768 -117)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18693" + "plane" "(-51 800 -117) (-64 800 -117) (-64 768 -117)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93414" + side + { + "id" "18704" + "plane" "(-64 800 -83) (-64 800 -95) (-60 800 -95)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18703" + "plane" "(-64 768 -95) (-64 768 -83) (-61 768 -83)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18702" + "plane" "(-64 768 -83) (-64 768 -95) (-64 800 -95)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18701" + "plane" "(-61 768 -83) (-64 768 -83) (-64 800 -83)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18700" + "plane" "(-61 800 -83) (-60 800 -95) (-60 768 -95)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18699" + "plane" "(-60 800 -95) (-64 800 -95) (-64 768 -95)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136427" + side + { + "id" "24497" + "plane" "(64 768 0) (64 768 -38) (41 768 -38)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24498" + "plane" "(41 800 0) (41 800 -38) (64 800 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24499" + "plane" "(41 768 0) (41 768 -38) (41 800 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -12] 0.25" + "vaxis" "[0 1 0 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24500" + "plane" "(64 800 0) (64 800 -38) (64 768 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 12] 0.25" + "vaxis" "[0 1 0 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24501" + "plane" "(64 768 0) (41 768 0) (41 800 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24502" + "plane" "(64 800 -38) (41 800 -38) (41 768 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136426" + side + { + "id" "24491" + "plane" "(-41 768 0) (-41 768 -38) (-64 768 -38)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24492" + "plane" "(-64 800 0) (-64 800 -38) (-41 800 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24493" + "plane" "(-64 768 0) (-64 768 -38) (-64 800 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -12] 0.25" + "vaxis" "[0 1 0 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24494" + "plane" "(-41 800 0) (-41 800 -38) (-41 768 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 12] 0.25" + "vaxis" "[0 1 0 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24495" + "plane" "(-41 768 0) (-64 768 0) (-64 800 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24496" + "plane" "(-41 800 -38) (-64 800 -38) (-64 768 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -7768]" + } +} +cameras +{ + "activecamera" "0" + camera + { + "position" "[-5.90955 633.085 -43.6335]" + "look" "[1.88796 694.828 -54.1595]" + } + camera + { + "position" "[127.087 1215.37 105.064]" + "look" "[116.232 1268.25 72.3711]" + } + camera + { + "position" "[127.087 1215.37 105.064]" + "look" "[116.232 1268.25 72.3711]" + } + camera + { + "position" "[-1328.35 -414.129 12.6516]" + "look" "[-1338.82 -354.756 31.314]" + } + camera + { + "position" "[127.087 1215.37 105.064]" + "look" "[116.232 1268.25 72.3711]" + } + camera + { + "position" "[127.087 1215.37 105.064]" + "look" "[116.232 1268.25 72.3711]" + } +} +cordons +{ + "active" "0" + cordon + { + "name" "cordon" + "active" "1" + box + { + "mins" "(-11552 -224 -448)" + "maxs" "(-10240 1216 1024)" + } + } +} diff --git a/packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_entrance/stair_up.vmf b/packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_entrance/stair_up.vmf index b8300be447..4e2f98dcf0 100644 --- a/packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_entrance/stair_up.vmf +++ b/packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_entrance/stair_up.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8973" - "mapversion" "1030" + "editorbuild" "9672" + "mapversion" "1035" "formatversion" "100" "prefab" "0" } @@ -14,13 +14,13 @@ viewsettings "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "2" + "nGridSpacing" "8" "bShow3DGrid" "0" } world { "id" "1" - "mapversion" "1030" + "mapversion" "1035" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -2770,7 +2770,7 @@ world { "id" "18788" "plane" "(64 768 0) (-64 768 0) (-64 800 0)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[1 0 0 0] 0.25" "rotation" "0" @@ -2841,31 +2841,44 @@ world } } entity +{ + "id" "136534" + "classname" "comp_kv_setter" + "angles" "0 0 0" + "conv_ang" "0" + "ctrl_type" "0" + "ctrl_value" "1" + "invert" "0" + "kv_name" "lightingorigin" + "kv_value_local" "@entrance_portal_elevator_side" + "kv_value_mode" "local" + "kv_value_pos" "16 752 8" + "mode" "kv" + "rotate" "0" + "target" "@entrance_airlock_door" + "origin" "16 752 8" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity { "id" "136311" "classname" "func_brush" "disableflashlight" "0" "disablereceiveshadows" "0" "disableshadowdepth" "0" - "disableshadows" "0" - "disablex360" "0" "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "inputfilter" "0" "invert_exclusion" "0" - "maxcpulevel" "0" - "maxgpulevel" "0" - "mincpulevel" "0" - "mingpulevel" "0" "origin" "0 789 64" "renderamt" "255" "rendercolor" "255 255 255" "renderfx" "0" "rendermode" "0" - "shadowdepthnocache" "0" - "solid" "6" "solidbsp" "0" "solidity" "0" "spawnflags" "0" @@ -2981,6 +2994,7 @@ entity "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "angles" "0 0 0" "origin" "0 544 160" editor @@ -4474,7 +4488,7 @@ entity "id" "122952" "classname" "prop_testchamber_door" "angles" "0 270 0" - "lightingorigin" "@entrance_portal_chamber_side" + "lightingorigin" "@entrance_portal_elevator_side" "renderamt" "255" "rendercolor" "255 255 255" "solid" "6" @@ -4482,6 +4496,7 @@ entity connections { "OnOpen" "door_clipDisable0.25-1" + "OnFullyOpen" "@entrance_airlock_doorSetLightingOrigin@entrance_portal_chamber_side0-1" } "origin" "0 782 0" editor @@ -4489,6 +4504,7 @@ entity "color" "220 30 220" "visgroupshown" "1" "visgroupautoshown" "1" + "comments" "Change the lighting origin once open, so that it blends when closed again." "logicalpos" "[0 500]" } } @@ -6507,8 +6523,8 @@ cameras "activecamera" "0" camera { - "position" "[-0.0492723 666.445 143.642]" - "look" "[0.339933 722.378 114.4]" + "position" "[18.213 671.908 111.46]" + "look" "[20.1638 727.808 82.2186]" } camera { diff --git a/packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_exit.vmf b/packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_exit/common.vmf similarity index 58% rename from packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_exit.vmf rename to packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_exit/common.vmf index b5730751c1..d6a50f7a4f 100644 --- a/packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_exit.vmf +++ b/packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_exit/common.vmf @@ -1,26 +1,50 @@ versioninfo { "editorversion" "400" - "editorbuild" "7552" - "mapversion" "831" + "editorbuild" "9672" + "mapversion" "860" "formatversion" "100" "prefab" "0" } visgroups { + visgroup + { + "name" "Stairs- Up" + "visgroupid" "20" + "color" "138 99 240" + } + visgroup + { + "name" "Stairs - Down" + "visgroupid" "13" + "color" "186 131 128" + } + visgroup + { + "name" "Logic - Up" + "visgroupid" "18" + "color" "205 210 251" + } + visgroup + { + "name" "Logic - Down" + "visgroupid" "19" + "color" "198 175 92" + } } viewsettings { "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "1" + "nGridSpacing" "32" "bShow3DGrid" "0" } world { "id" "1" - "mapversion" "831" + "mapversion" "860" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -29,57 +53,122 @@ world "skyname" "sky_black" solid { - "id" "137727" + "id" "143922" side { - "id" "25624" - "plane" "(224 -224 -864) (224 352 -864) (224 352 -896)" + "id" "27136" + "plane" "(-144 144 -1488) (-144 144 -1472) (-144 -144 -1472)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 35.5555] 2.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 0 1 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27135" + "plane" "(144 -144 -1488) (144 -144 -1472) (144 144 -1472)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27134" + "plane" "(-144 144 -1488) (-144 -144 -1488) (144 -144 -1488)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25623" - "plane" "(-288 352 -864) (224 352 -864) (224 -224 -864)" + "id" "27133" + "plane" "(144 144 -1472) (144 -144 -1472) (-144 -144 -1472)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 35.5555] 2.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25622" - "plane" "(-288 352 -896) (224 352 -896) (224 352 -864)" + "id" "27132" + "plane" "(-144 144 -1472) (-144 144 -1488) (144 144 -1488)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 0 1 32] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25621" - "plane" "(224 -224 -896) (224 352 -896) (-288 352 -896)" + "id" "27131" + "plane" "(144 -144 -1472) (144 -144 -1488) (-144 -144 -1488)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -35.5555] 2.25" + "uaxis" "[0 0 1 32] 0.25" + "vaxis" "[1 0 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } + editor + { + "color" "0 110 191" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "138903" side { - "id" "25620" - "plane" "(-288 352 -896) (-288 352 -864) (-288 -224 -864)" + "id" "27076" + "plane" "(128 128 -192) (144 128 -192) (144 -128 -192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 -35.5555] 2.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27075" + "plane" "(128 -128 -1472) (144 -128 -1472) (144 128 -1472)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27074" + "plane" "(144 128 -1472) (144 -128 -1472) (144 -128 -192)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "512" + "smoothing_groups" "0" + } + side + { + "id" "27073" + "plane" "(128 128 -1472) (144 128 -1472) (144 128 -192)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -87,64 +176,75 @@ world } side { - "id" "25619" - "plane" "(224 -224 -864) (224 -224 -896) (-288 -224 -896)" - "material" "TOOLS/TOOLSNODRAW" + "id" "27072" + "plane" "(144 -128 -1472) (128 -128 -1472) (128 -128 -192)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } + side + { + "id" "27071" + "plane" "(128 -128 -1472) (128 128 -1472) (128 128 -192)" + "material" "PROPS/PLASTICWALL003A" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } editor { - "color" "0 223 200" + "color" "0 220 233" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "134619" + "id" "138904" side { - "id" "24586" - "plane" "(64 544 32) (-128 544 32) (-128 608 32)" - "material" "METAL/BLACK_FLOOR_METAL_001D" - "uaxis" "[-1 0 0 -128] 0.25" - "vaxis" "[0 1 0 -128] 0.25" + "id" "27070" + "plane" "(-144 128 -192) (-128 128 -192) (-128 -128 -192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24585" - "plane" "(-128 608 0) (-128 544 0) (64 544 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "27069" + "plane" "(-144 -128 -1472) (-128 -128 -1472) (-128 128 -1472)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24584" - "plane" "(64 544 0) (-128 544 0) (-128 544 32)" - "material" "METAL/BLACK_WALL_METAL_002A" - "uaxis" "[-1 0 0 -896] 0.25" - "vaxis" "[0 0 -1 -128] 0.25" + "id" "27068" + "plane" "(-128 128 -1472) (-128 -128 -1472) (-128 -128 -192)" + "material" "PROPS/PLASTICWALL003A" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24583" - "plane" "(64 608 0) (64 544 0) (64 544 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "27067" + "plane" "(-144 128 -1472) (-128 128 -1472) (-128 128 -192)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -152,10 +252,10 @@ world } side { - "id" "24582" - "plane" "(-128 544 0) (-128 608 0) (-128 608 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "27066" + "plane" "(-128 -128 -1472) (-144 -128 -1472) (-144 -128 -192)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -163,64 +263,64 @@ world } side { - "id" "24581" - "plane" "(-128 608 0) (64 608 0) (64 608 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "27065" + "plane" "(-144 -128 -1472) (-144 128 -1472) (-144 128 -192)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } editor { - "color" "0 223 200" + "color" "0 182 179" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "134675" + "id" "138905" side { - "id" "24592" - "plane" "(32 416 160) (32 544 160) (64 544 224)" + "id" "27064" + "plane" "(-144 -128 -192) (144 -128 -192) (144 -144 -192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24591" - "plane" "(64 416 32) (64 416 224) (64 544 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "27063" + "plane" "(-144 -128 -1472) (-144 -144 -1472) (144 -144 -1472)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24590" - "plane" "(32 544 32) (32 544 160) (32 416 160)" - "material" "METAL/BLACK_WALL_METAL_002A" - "uaxis" "[0 -1 0 640] 0.25" - "vaxis" "[0 0 -1 -128] 0.25" + "id" "27062" + "plane" "(144 -128 -1472) (144 -128 -192) (-144 -128 -192)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[0 0 1 -256] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24589" - "plane" "(64 544 224) (32 544 160) (32 544 32)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[-1 0 0 0] 0.25" + "id" "27061" + "plane" "(-144 -128 -1472) (-144 -128 -192) (-144 -144 -192)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -228,10 +328,10 @@ world } side { - "id" "24588" - "plane" "(32 416 32) (32 416 160) (64 416 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "27060" + "plane" "(144 -144 -1472) (144 -144 -192) (144 -128 -192)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -239,64 +339,64 @@ world } side { - "id" "24587" - "plane" "(32 544 32) (32 416 32) (64 416 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "27059" + "plane" "(-144 -144 -1472) (-144 -144 -192) (144 -144 -192)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } editor { - "color" "0 223 200" + "color" "0 100 221" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "134676" + "id" "139261" side { - "id" "24598" - "plane" "(32 544 -96) (32 416 -96) (64 416 -96)" + "id" "27058" + "plane" "(-144 128 -192) (-144 144 -192) (144 144 -192)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24597" - "plane" "(64 544 -96) (64 416 -96) (64 416 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "27057" + "plane" "(144 144 -1472) (-144 144 -1472) (-144 128 -1472)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24596" - "plane" "(32 416 -96) (32 544 -96) (32 544 32)" - "material" "METAL/BLACK_WALL_METAL_002A" - "uaxis" "[0 -1 0 640] 0.25" - "vaxis" "[0 0 -1 -128] 0.25" + "id" "27056" + "plane" "(-144 144 -1472) (144 144 -1472) (144 144 -192)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "24595" - "plane" "(32 544 32) (32 544 -96) (64 544 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "27055" + "plane" "(-144 128 -1472) (-144 144 -1472) (-144 144 -192)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -304,10 +404,10 @@ world } side { - "id" "24594" - "plane" "(64 416 -96) (32 416 -96) (32 416 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "27054" + "plane" "(144 144 -1472) (144 128 -1472) (144 128 -192)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -315,87 +415,87 @@ world } side { - "id" "24593" - "plane" "(32 416 32) (32 544 32) (64 544 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "27053" + "plane" "(144 128 -1472) (-144 128 -1472) (-144 128 -192)" + "material" "PROPS/PLASTICWALL003A" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 223 200" + "color" "0 238 127" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "134677" + "id" "141712" side { - "id" "24604" - "plane" "(-96 544 160) (-96 416 160) (-128 416 224)" + "id" "27100" + "plane" "(256 144 -864) (256 320 -864) (256 320 -896)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.5" + "vaxis" "[0 0 -1 0] 0.5" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24603" - "plane" "(-96 416 32) (-96 416 160) (-96 544 160)" - "material" "METAL/BLACK_WALL_METAL_002A" - "uaxis" "[0 -1 0 640] 0.25" - "vaxis" "[0 0 -1 -128] 0.25" + "id" "27099" + "plane" "(-256 144 -864) (-256 320 -864) (256 320 -864)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 49.7777] 2.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "24602" - "plane" "(-128 544 32) (-128 544 224) (-128 416 224)" + "id" "27098" + "plane" "(-256 320 -896) (256 320 -896) (256 320 -864)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.5" + "vaxis" "[0 0 -1 0] 0.5" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24601" - "plane" "(-96 544 32) (-96 544 160) (-128 544 224)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[-1 0 0 -128] 0.25" - "vaxis" "[0 0 -1 -128] 0.25" + "id" "27097" + "plane" "(256 144 -896) (256 320 -896) (-256 320 -896)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.5" + "vaxis" "[0 -1 0 0] 0.5" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24600" - "plane" "(-128 416 224) (-96 416 160) (-96 416 32)" + "id" "27096" + "plane" "(-256 144 -896) (-256 320 -896) (-256 320 -864)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 0] 0.5" + "vaxis" "[0 0 -1 0] 0.5" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24599" - "plane" "(-128 544 32) (-128 416 32) (-96 416 32)" + "id" "27095" + "plane" "(256 144 -864) (256 144 -896) (-256 144 -896)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.5" + "vaxis" "[0 0 -1 0] 0.5" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -409,69 +509,69 @@ world } solid { - "id" "134678" + "id" "141713" side { - "id" "24610" - "plane" "(-128 544 -96) (-128 416 -96) (-96 416 -96)" + "id" "27106" + "plane" "(256 -256 -864) (256 -144 -864) (256 -144 -896)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.5" + "vaxis" "[0 0 -1 0] 0.5" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24609" - "plane" "(-96 544 -96) (-96 416 -96) (-96 416 32)" - "material" "METAL/BLACK_WALL_METAL_002A" - "uaxis" "[0 -1 0 640] 0.25" - "vaxis" "[0 0 -1 -128] 0.25" + "id" "27105" + "plane" "(-256 -256 -864) (-256 -144 -864) (256 -144 -864)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 49.7777] 2.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "24608" - "plane" "(-128 416 -96) (-128 544 -96) (-128 544 32)" + "id" "27104" + "plane" "(256 -256 -896) (256 -144 -896) (-256 -144 -896)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.5" + "vaxis" "[0 -1 0 0] 0.5" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24607" - "plane" "(-128 544 -96) (-96 544 -96) (-96 544 32)" + "id" "27103" + "plane" "(-256 -256 -896) (-256 -144 -896) (-256 -144 -864)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 0] 0.5" + "vaxis" "[0 0 -1 0] 0.5" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24606" - "plane" "(-96 416 32) (-96 416 -96) (-128 416 -96)" + "id" "27102" + "plane" "(256 -256 -864) (256 -256 -896) (-256 -256 -896)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.5" + "vaxis" "[0 0 -1 0] 0.5" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24605" - "plane" "(-128 416 32) (-128 544 32) (-96 544 32)" + "id" "27101" + "plane" "(-256 -144 -896) (256 -144 -896) (256 -144 -864)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.5" + "vaxis" "[0 0 -1 0] 0.5" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -485,69 +585,69 @@ world } solid { - "id" "134906" + "id" "141718" side { - "id" "24616" - "plane" "(-96 672 32) (-96 688 32) (32 688 32)" + "id" "27112" + "plane" "(-256 -144 -864) (-256 144 -864) (-144 144 -864)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 1 0 49.7777] 2.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "24615" - "plane" "(32 688 16) (-96 688 16) (-96 672 16)" + "id" "27111" + "plane" "(-256 144 -896) (-256 -144 -896) (-144 -144 -896)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.5" + "vaxis" "[0 -1 0 0] 0.5" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24614" - "plane" "(-96 688 16) (32 688 16) (32 688 32)" + "id" "27110" + "plane" "(-256 -144 -896) (-256 144 -896) (-256 144 -864)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 0] 0.5" + "vaxis" "[0 0 -1 0] 0.5" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24613" - "plane" "(32 688 16) (32 672 16) (32 672 32)" + "id" "27109" + "plane" "(-144 -144 -896) (-256 -144 -896) (-256 -144 -864)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.5" + "vaxis" "[0 0 -1 0] 0.5" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24612" - "plane" "(-96 672 16) (-96 688 16) (-96 688 32)" + "id" "27108" + "plane" "(-256 144 -896) (-144 144 -896) (-144 144 -864)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.5" + "vaxis" "[0 0 -1 0] 0.5" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24611" - "plane" "(32 672 16) (-96 672 16) (-96 672 32)" - "material" "METAL/BLACK_FLOOR_METAL_001D" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "27107" + "plane" "(-144 144 -896) (-144 -144 -896) (-144 -144 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.5" + "vaxis" "[0 0 -1 0] 0.5" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -561,69 +661,69 @@ world } solid { - "id" "134907" + "id" "141719" side { - "id" "24622" - "plane" "(-96 608 32) (-96 672 32) (32 672 32)" - "material" "METAL/BLACK_FLOOR_METAL_001D" - "uaxis" "[-1 0 0 -128] 0.25" - "vaxis" "[0 1 0 -128] 0.25" + "id" "27118" + "plane" "(256 144 -896) (256 -144 -896) (256 -144 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.5" + "vaxis" "[0 0 -1 0] 0.5" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24621" - "plane" "(-96 672 16) (-96 608 16) (32 608 16)" - "material" "TOOLS/TOOLSNODRAW" + "id" "27117" + "plane" "(144 144 -864) (256 144 -864) (256 -144 -864)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 1 0 49.7777] 2.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "24620" - "plane" "(32 672 16) (32 608 16) (32 608 32)" + "id" "27116" + "plane" "(144 -144 -896) (256 -144 -896) (256 144 -896)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.5" + "vaxis" "[0 -1 0 0] 0.5" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24619" - "plane" "(-96 608 16) (-96 672 16) (-96 672 32)" + "id" "27115" + "plane" "(256 -144 -864) (256 -144 -896) (144 -144 -896)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.5" + "vaxis" "[0 0 -1 0] 0.5" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24618" - "plane" "(32 608 16) (-96 608 16) (-96 608 32)" - "material" "METAL/BLACK_FLOOR_METAL_001D" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "27114" + "plane" "(144 144 -896) (256 144 -896) (256 144 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.5" + "vaxis" "[0 0 -1 0] 0.5" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24617" - "plane" "(-96 672 16) (32 672 16) (32 672 32)" + "id" "27113" + "plane" "(144 -144 -896) (144 144 -896) (144 144 -864)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 0] 0.5" + "vaxis" "[0 0 -1 0] 0.5" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -641,7 +741,7 @@ world side { "id" "24545" - "plane" "(-56 91 1600) (-77 77 1600) (-91 56 1600)" + "plane" "(45 45 1600) (24 59 1600) (0 64 1600)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -652,7 +752,7 @@ world side { "id" "24546" - "plane" "(-32 96 1616) (-8 91 1616) (13 77 1616)" + "plane" "(0 64 1616) (24 59 1616) (45 45 1616)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -663,9 +763,9 @@ world side { "id" "24547" - "plane" "(-32 96 1600) (-8 91 1600) (-8 91 1616)" + "plane" "(0 64 1600) (24 59 1600) (24 59 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.97898 0.203954 0 0] 0.25" + "uaxis" "[-0.97898 0.203954 0 23.4156] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -674,9 +774,9 @@ world side { "id" "24548" - "plane" "(-8 91 1600) (13 77 1600) (13 77 1616)" + "plane" "(24 59 1600) (45 45 1600) (45 45 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.83205 0.5547 0 0] 0.25" + "uaxis" "[-0.83205 0.5547 0 49.504] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -685,9 +785,9 @@ world side { "id" "24549" - "plane" "(13 77 1600) (27 56 1600) (27 56 1616)" + "plane" "(45 45 1600) (59 24 1600) (59 24 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.5547 0.83205 0 0] 0.25" + "uaxis" "[-0.5547 0.83205 0 49.504] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -696,9 +796,9 @@ world side { "id" "24550" - "plane" "(27 56 1600) (32 32 1600) (32 32 1616)" + "plane" "(59 24 1600) (64 0 1600) (64 0 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.203954 0.97898 0 0] 0.25" + "uaxis" "[-0.203954 0.97898 0 23.4156] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -707,9 +807,9 @@ world side { "id" "24551" - "plane" "(32 32 1600) (27 8 1600) (27 8 1616)" + "plane" "(64 0 1600) (59 -24 1600) (59 -24 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.203954 0.97898 0 0] 0.25" + "uaxis" "[0.203954 0.97898 0 35.2033] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -718,9 +818,9 @@ world side { "id" "24552" - "plane" "(27 8 1600) (13 -13 1600) (13 -13 1616)" + "plane" "(59 -24 1600) (45 -45 1600) (45 -45 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.5547 0.83205 0 0] 0.25" + "uaxis" "[0.5547 0.83205 0 -28.4992] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -729,9 +829,9 @@ world side { "id" "24553" - "plane" "(13 -13 1600) (-8 -27 1600) (-8 -27 1616)" + "plane" "(45 -45 1600) (24 -59 1600) (24 -59 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.83205 0.5547 0 0] 0.25" + "uaxis" "[0.83205 0.5547 0 -35.5008] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -740,9 +840,9 @@ world side { "id" "24554" - "plane" "(-8 -27 1600) (-32 -32 1600) (-32 -32 1616)" + "plane" "(24 -59 1600) (0 -64 1600) (0 -64 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.97898 0.203954 0 0] 0.25" + "uaxis" "[0.97898 0.203954 0 -35.2033] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -751,9 +851,9 @@ world side { "id" "24555" - "plane" "(-32 -32 1600) (-56 -27 1600) (-56 -27 1616)" + "plane" "(0 -64 1600) (-24 -59 1600) (-24 -59 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.97898 -0.203954 0 0] 0.25" + "uaxis" "[0.97898 -0.203954 0 -23.4156] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -762,9 +862,9 @@ world side { "id" "24556" - "plane" "(-56 -27 1600) (-77 -13 1600) (-77 -13 1616)" + "plane" "(-24 -59 1600) (-45 -45 1600) (-45 -45 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.83205 -0.5547 0 0] 0.25" + "uaxis" "[0.83205 -0.5547 0 -49.504] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -773,9 +873,9 @@ world side { "id" "24557" - "plane" "(-77 -13 1600) (-91 8 1600) (-91 8 1616)" + "plane" "(-45 -45 1600) (-59 -24 1600) (-59 -24 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.5547 -0.83205 0 0] 0.25" + "uaxis" "[0.5547 -0.83205 0 -49.504] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -784,9 +884,9 @@ world side { "id" "24558" - "plane" "(-91 8 1600) (-96 32 1600) (-96 32 1616)" + "plane" "(-59 -24 1600) (-64 0 1600) (-64 0 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.203954 -0.97898 0 0] 0.25" + "uaxis" "[0.203954 -0.97898 0 -23.4156] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -795,9 +895,9 @@ world side { "id" "24559" - "plane" "(-96 32 1600) (-91 56 1600) (-91 56 1616)" + "plane" "(-64 0 1600) (-59 24 1600) (-59 24 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.203954 -0.97898 0 0] 0.25" + "uaxis" "[-0.203954 -0.97898 0 -35.2033] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -806,9 +906,9 @@ world side { "id" "24560" - "plane" "(-91 56 1600) (-77 77 1600) (-77 77 1616)" + "plane" "(-59 24 1600) (-45 45 1600) (-45 45 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.5547 -0.83205 0 0] 0.25" + "uaxis" "[-0.5547 -0.83205 0 28.4992] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -817,9 +917,9 @@ world side { "id" "24561" - "plane" "(-77 77 1600) (-56 91 1600) (-56 91 1616)" + "plane" "(-45 45 1600) (-24 59 1600) (-24 59 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.83205 -0.5547 0 0] 0.25" + "uaxis" "[-0.83205 -0.5547 0 35.5008] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -828,9 +928,9 @@ world side { "id" "24562" - "plane" "(-56 91 1600) (-32 96 1600) (-32 96 1616)" + "plane" "(-24 59 1600) (0 64 1600) (0 64 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.97898 -0.203954 0 0] 0.25" + "uaxis" "[-0.97898 -0.203954 0 35.2033] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -845,66 +945,66 @@ world } solid { - "id" "125841" + "id" "125845" side { - "id" "22810" - "plane" "(-96 352 160) (-288 352 160) (-288 416 160)" + "id" "22834" + "plane" "(144 -144 1056) (256 -256 1056) (256 -256 1088)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0.265156 0 -0.964205 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22809" - "plane" "(-288 352 -96) (-96 352 -96) (-96 416 -96)" + "id" "22833" + "plane" "(-256 -256 1088) (-256 -256 1056) (-144 -144 1056)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-0.223376 0 -0.974732 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22808" - "plane" "(-96 352 160) (-96 352 -96) (-288 352 -96)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[-1 0 0 384] 0.25" - "vaxis" "[0 0 -1 -128] 0.25" + "id" "22832" + "plane" "(256 -256 1056) (144 -144 1056) (-144 -144 1056)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "22807" - "plane" "(-96 352 -96) (-96 352 160) (-96 416 160)" - "material" "METAL/BLACK_WALL_METAL_002A" - "uaxis" "[0 -1 0 640] 0.25" - "vaxis" "[0 0 -1 -128] 0.25" + "id" "22831" + "plane" "(256 -256 1088) (256 -256 1056) (-256 -256 1056)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22806" - "plane" "(-288 416 -96) (-288 416 160) (-288 352 160)" + "id" "22830" + "plane" "(-256 -256 1088) (-144 -144 1088) (144 -144 1088)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22805" - "plane" "(-96 416 -96) (-96 416 160) (-288 416 160)" + "id" "22829" + "plane" "(-144 -144 1088) (-144 -144 1056) (144 -144 1056)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -921,69 +1021,69 @@ world } solid { - "id" "125842" + "id" "125846" side { - "id" "22816" - "plane" "(64 688 224) (64 608 224) (-128 608 224)" + "id" "22840" + "plane" "(-256 -320 1056) (-256 -256 1056) (256 -256 1056)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22815" - "plane" "(-128 688 224) (-96 688 160) (32 688 160)" + "id" "22839" + "plane" "(256 -256 -864) (-256 -256 -864) (-256 -320 -864)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22814" - "plane" "(64 688 224) (32 688 160) (32 608 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "22838" + "plane" "(-256 -256 -864) (256 -256 -864) (256 -256 1056)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 13.8001] 0.288462" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "22813" - "plane" "(-128 608 224) (-96 608 160) (-96 688 160)" + "id" "22837" + "plane" "(-256 -320 -864) (-256 -256 -864) (-256 -256 1056)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 12.8001] 0.288462" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22812" - "plane" "(64 608 224) (32 608 160) (-96 608 160)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "22836" + "plane" "(256 -256 -864) (256 -320 -864) (256 -320 1056)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 12.8001] 0.288462" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22811" - "plane" "(-96 608 160) (32 608 160) (32 688 160)" - "material" "METAL/BLACK_WALL_METAL_002A" - "uaxis" "[-1 0 0 -640] 0.25" - "vaxis" "[0 1 0 -896] 0.25" + "id" "22835" + "plane" "(256 -320 -864) (-256 -320 -864) (-256 -320 1056)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 12.8001] 0.288462" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -997,11 +1097,11 @@ world } solid { - "id" "125843" + "id" "125847" side { - "id" "22822" - "plane" "(64 544 232) (32 544 232) (32 608 232)" + "id" "22846" + "plane" "(-320 320 1056) (-256 320 1056) (-256 -256 1056)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -1011,55 +1111,55 @@ world } side { - "id" "22821" - "plane" "(64 608 224) (32 608 224) (32 544 224)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[-1 0 0 -640] 0.25" - "vaxis" "[0 1 0 -128] 0.25" + "id" "22845" + "plane" "(-320 -256 -864) (-256 -256 -864) (-256 320 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22820" - "plane" "(32 608 224) (64 608 224) (64 608 232)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "22844" + "plane" "(-256 320 -864) (-256 -256 -864) (-256 -256 1056)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 12.8001] 0.288462" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "22819" - "plane" "(64 544 224) (32 544 224) (32 544 232)" + "id" "22843" + "plane" "(-320 320 -864) (-256 320 -864) (-256 320 1056)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 12.8001] 0.288462" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22818" - "plane" "(64 608 224) (64 544 224) (64 544 232)" + "id" "22842" + "plane" "(-256 -256 -864) (-320 -256 -864) (-320 -256 1056)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 12.8001] 0.288462" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22817" - "plane" "(32 544 224) (32 608 224) (32 608 232)" + "id" "22841" + "plane" "(-320 -256 -864) (-320 320 -864) (-320 320 1056)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 12.8001] 0.288462" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1073,69 +1173,69 @@ world } solid { - "id" "125845" + "id" "125863" side { - "id" "22834" - "plane" "(112 -112 1056) (224 -224 1056) (224 -224 1088)" + "id" "22942" + "plane" "(320 -256 1056) (256 -256 1056) (256 320 1056)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22833" - "plane" "(-288 -224 1088) (-288 -224 1056) (-176 -112 1056)" + "id" "22941" + "plane" "(320 320 -864) (256 320 -864) (256 -256 -864)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22832" - "plane" "(224 -224 1056) (112 -112 1056) (-176 -112 1056)" + "id" "22940" + "plane" "(256 -256 -864) (256 320 -864) (256 320 1056)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 12.8001] 0.288462" "rotation" "0" "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "22831" - "plane" "(224 -224 1088) (224 -224 1056) (-288 -224 1056)" + "id" "22939" + "plane" "(320 -256 -864) (256 -256 -864) (256 -256 1056)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 12.8001] 0.288462" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22830" - "plane" "(-288 -224 1088) (-176 -112 1088) (112 -112 1088)" + "id" "22938" + "plane" "(256 320 -864) (320 320 -864) (320 320 1056)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 12.8001] 0.288462" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22829" - "plane" "(-176 -112 1088) (-176 -112 1056) (112 -112 1056)" + "id" "22937" + "plane" "(320 320 -864) (320 -256 -864) (320 -256 1056)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 12.8001] 0.288462" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1149,69 +1249,69 @@ world } solid { - "id" "125846" + "id" "126065" side { - "id" "22840" - "plane" "(-288 -288 1056) (-288 -224 1056) (224 -224 1056)" + "id" "23032" + "plane" "(-256 -256 1056) (-256 320 1056) (-256 320 1088)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22839" - "plane" "(224 -224 -864) (-288 -224 -864) (-288 -288 -864)" - "material" "TOOLS/TOOLSNODRAW" + "id" "23031" + "plane" "(-256 320 1056) (-256 -256 1056) (-144 -144 1056)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 1 0 0] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "22838" - "plane" "(-288 -224 -864) (224 -224 -864) (224 -224 1056)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "id" "23030" + "plane" "(-256 -256 1088) (-256 320 1088) (-144 144 1088)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 13.8001] 0.288462" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" - "lightmapscale" "512" + "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22837" - "plane" "(-288 -288 -864) (-288 -224 -864) (-288 -224 1056)" + "id" "23029" + "plane" "(-144 -144 1056) (-256 -256 1056) (-256 -256 1088)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 12.8001] 0.288462" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22836" - "plane" "(224 -224 -864) (224 -288 -864) (224 -288 1056)" + "id" "23028" + "plane" "(-256 320 1088) (-256 320 1056) (-144 144 1056)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 12.8001] 0.288462" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22835" - "plane" "(224 -288 -864) (-288 -288 -864) (-288 -288 1056)" + "id" "23027" + "plane" "(-144 144 1056) (-144 -144 1056) (-144 -144 1088)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 12.8001] 0.288462" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1225,69 +1325,69 @@ world } solid { - "id" "125847" + "id" "126066" side { - "id" "22846" - "plane" "(-352 352 1056) (-288 352 1056) (-288 -224 1056)" + "id" "23038" + "plane" "(256 320 1088) (256 320 1056) (144 144 1056)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22845" - "plane" "(-352 -224 -864) (-288 -224 -864) (-288 352 -864)" + "id" "23037" + "plane" "(-144 144 1056) (-256 320 1056) (-256 320 1088)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22844" - "plane" "(-288 352 -864) (-288 -224 -864) (-288 -224 1056)" + "id" "23036" + "plane" "(-256 320 1056) (-144 144 1056) (144 144 1056)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 12.8001] 0.288462" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "22843" - "plane" "(-352 352 -864) (-288 352 -864) (-288 352 1056)" + "id" "23035" + "plane" "(-256 320 1088) (-256 320 1056) (256 320 1056)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 12.8001] 0.288462" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22842" - "plane" "(-288 -224 -864) (-352 -224 -864) (-352 -224 1056)" + "id" "23034" + "plane" "(256 320 1088) (144 144 1088) (-144 144 1088)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 12.8001] 0.288462" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22841" - "plane" "(-352 -224 -864) (-352 352 -864) (-352 352 1056)" + "id" "23033" + "plane" "(144 144 1088) (144 144 1056) (-144 144 1056)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 12.8001] 0.288462" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1301,46 +1401,46 @@ world } solid { - "id" "125849" + "id" "126067" side { - "id" "22858" - "plane" "(64 544 224) (64 416 224) (-128 416 224)" + "id" "23044" + "plane" "(256 320 1056) (256 -256 1056) (256 -256 1088)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22857" - "plane" "(-96 416 160) (32 416 160) (32 544 160)" - "material" "METAL/BLACK_WALL_METAL_002A" - "uaxis" "[-1 0 0 -640] 0.25" - "vaxis" "[0 1 0 -896] 0.25" + "id" "23043" + "plane" "(144 -144 1056) (256 -256 1056) (256 320 1056)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "22856" - "plane" "(64 544 224) (-128 544 224) (-96 544 160)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[-1 0 0 -128] 0.25" - "vaxis" "[0 0 -1 -128] 0.25" + "id" "23042" + "plane" "(256 320 1088) (256 -256 1088) (144 -144 1088)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22855" - "plane" "(64 416 224) (64 544 224) (32 544 160)" + "id" "23041" + "plane" "(256 -256 1088) (256 -256 1056) (144 -144 1056)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1348,10 +1448,10 @@ world } side { - "id" "22854" - "plane" "(-128 544 224) (-128 416 224) (-96 416 160)" + "id" "23040" + "plane" "(144 144 1056) (256 320 1056) (256 320 1088)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1359,10 +1459,10 @@ world } side { - "id" "22853" - "plane" "(-128 416 224) (64 416 224) (32 416 160)" + "id" "23039" + "plane" "(144 -144 1056) (144 144 1056) (144 144 1088)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1377,13 +1477,13 @@ world } solid { - "id" "125850" + "id" "126072" side { - "id" "22864" - "plane" "(64 544 224) (64 608 224) (80 608 224)" + "id" "23074" + "plane" "(-128 128 320) (-144 144 320) (-144 -144 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1391,21 +1491,21 @@ world } side { - "id" "22863" - "plane" "(80 544 0) (80 608 0) (64 608 0)" + "id" "23073" + "plane" "(-144 -144 1600) (-144 144 1600) (-128 128 1600)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22862" - "plane" "(64 608 0) (80 608 0) (80 608 224)" + "id" "23072" + "plane" "(-144 -144 320) (-144 144 320) (-144 144 1600)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1413,10 +1513,10 @@ world } side { - "id" "22861" - "plane" "(80 608 0) (80 544 0) (80 544 224)" + "id" "23071" + "plane" "(-144 144 320) (-128 128 320) (-128 128 1600)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-0.707107 0.707107 0 53.0194] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1424,22 +1524,22 @@ world } side { - "id" "22860" - "plane" "(64 544 0) (64 608 0) (64 608 224)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[0 -1 0 640] 0.25" - "vaxis" "[0 0 -1 -128] 0.25" + "id" "23070" + "plane" "(-128 -128 320) (-144 -144 320) (-144 -144 1600)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22859" - "plane" "(80 544 0) (64 544 0) (64 544 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23069" + "plane" "(-128 128 320) (-128 -128 320) (-128 -128 1600)" + "material" "PROPS/PLASTICWALL003A" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 768] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1453,13 +1553,13 @@ world } solid { - "id" "125851" + "id" "126073" side { - "id" "22870" - "plane" "(-144 544 224) (-144 608 224) (-128 608 224)" + "id" "23080" + "plane" "(144 144 320) (128 128 320) (128 -128 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1467,43 +1567,43 @@ world } side { - "id" "22869" - "plane" "(-128 544 32) (-128 608 32) (-144 608 32)" + "id" "23079" + "plane" "(144 -144 1600) (128 -128 1600) (128 128 1600)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22868" - "plane" "(-144 608 32) (-128 608 32) (-128 608 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23078" + "plane" "(128 -128 320) (128 128 320) (128 128 1600)" + "material" "PROPS/PLASTICWALL003A" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 768] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22867" - "plane" "(-128 608 32) (-128 544 32) (-128 544 224)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[0 -1 0 640] 0.25" - "vaxis" "[0 0 -1 -128] 0.25" + "id" "23077" + "plane" "(128 128 320) (144 144 320) (144 144 1600)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 -0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22866" - "plane" "(-144 544 32) (-144 608 32) (-144 608 224)" + "id" "23076" + "plane" "(144 -144 320) (128 -128 320) (128 -128 1600)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1511,10 +1611,10 @@ world } side { - "id" "22865" - "plane" "(-128 544 32) (-144 544 32) (-144 544 224)" + "id" "23075" + "plane" "(144 144 320) (144 -144 320) (144 -144 1600)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1529,44 +1629,44 @@ world } solid { - "id" "125855" + "id" "126074" side { - "id" "22894" - "plane" "(32 352 160) (32 416 160) (224 416 160)" + "id" "23086" + "plane" "(144 -144 320) (128 -128 320) (-128 -128 320)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-0.265156 0 -0.964205 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22893" - "plane" "(32 352 -96) (224 352 -96) (224 416 -96)" + "id" "23085" + "plane" "(-144 -144 1600) (-128 -128 1600) (128 -128 1600)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0.223376 0 -0.974732 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22892" - "plane" "(32 352 -96) (32 352 160) (224 352 160)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[-1 0 0 384] 0.25" - "vaxis" "[0 0 -1 -128] 0.25" + "id" "23084" + "plane" "(-128 -128 320) (128 -128 320) (128 -128 1600)" + "material" "PROPS/PLASTICWALL003A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 1 768] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22891" - "plane" "(224 352 -96) (224 352 160) (224 416 160)" + "id" "23083" + "plane" "(128 -128 320) (144 -144 320) (144 -144 1600)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -1576,21 +1676,21 @@ world } side { - "id" "22890" - "plane" "(32 416 -96) (32 416 160) (32 352 160)" - "material" "METAL/BLACK_WALL_METAL_002A" - "uaxis" "[0 -1 0 640] 0.25" - "vaxis" "[0 0 -1 -128] 0.25" + "id" "23082" + "plane" "(-144 -144 320) (-128 -128 320) (-128 -128 1600)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22889" - "plane" "(32 416 160) (32 416 -96) (224 416 -96)" + "id" "23081" + "plane" "(144 -144 320) (-144 -144 320) (-144 -144 1600)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1605,35 +1705,35 @@ world } solid { - "id" "125857" + "id" "126075" side { - "id" "22906" - "plane" "(-96 416 -96) (-96 544 -96) (32 544 -96)" - "material" "METAL/BLACK_FLOOR_METAL_001D" - "uaxis" "[-1 0 0 -128] 0.25" - "vaxis" "[0 1 0 -128] 0.25" - "rotation" "0" - "lightmapscale" "16" + "id" "23092" + "plane" "(144 144 320) (-144 144 320) (-128 128 320)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22905" - "plane" "(32 416 -112) (32 544 -112) (-96 544 -112)" + "id" "23091" + "plane" "(-144 144 1600) (144 144 1600) (128 128 1600)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22904" - "plane" "(-96 544 -112) (32 544 -112) (32 544 -96)" + "id" "23090" + "plane" "(-144 144 320) (144 144 320) (144 144 1600)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1641,10 +1741,10 @@ world } side { - "id" "22903" - "plane" "(32 544 -112) (32 416 -112) (32 416 -96)" + "id" "23089" + "plane" "(144 144 320) (128 128 320) (128 128 1600)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1652,10 +1752,10 @@ world } side { - "id" "22902" - "plane" "(-96 416 -112) (-96 544 -112) (-96 544 -96)" + "id" "23088" + "plane" "(-128 128 320) (-144 144 320) (-144 144 1600)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.707107 -0.707107 0 -53.0194] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1663,11 +1763,11 @@ world } side { - "id" "22901" - "plane" "(32 416 -112) (-96 416 -112) (-96 416 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "23087" + "plane" "(128 128 320) (-128 128 320) (-128 128 1600)" + "material" "PROPS/PLASTICWALL003A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 1 768] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1681,11 +1781,11 @@ world } solid { - "id" "125858" + "id" "126486" side { - "id" "22912" - "plane" "(-96 608 232) (-96 616 232) (32 616 232)" + "id" "24130" + "plane" "(-64 0 1616) (-128 0 1616) (-128 24 1616)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -1695,21 +1795,21 @@ world } side { - "id" "22911" - "plane" "(32 616 224) (-96 616 224) (-96 608 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "24129" + "plane" "(-59 24 1600) (-128 24 1600) (-128 0 1600)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22910" - "plane" "(-96 616 224) (32 616 224) (32 616 232)" + "id" "24128" + "plane" "(-64 0 1600) (-128 0 1600) (-128 0 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1717,10 +1817,10 @@ world } side { - "id" "22909" - "plane" "(-96 608 224) (-96 616 224) (-96 616 232)" + "id" "24127" + "plane" "(-128 24 1600) (-59 24 1600) (-59 24 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1728,10 +1828,10 @@ world } side { - "id" "22908" - "plane" "(32 616 224) (32 608 224) (32 608 232)" + "id" "24126" + "plane" "(-128 0 1600) (-128 24 1600) (-128 24 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1739,10 +1839,10 @@ world } side { - "id" "22907" - "plane" "(32 608 224) (-96 608 224) (-96 608 232)" + "id" "24125" + "plane" "(-59 24 1600) (-64 0 1600) (-64 0 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0.203954 0.97898 0 35.2033] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1750,18 +1850,18 @@ world } editor { - "color" "0 223 200" + "color" "0 249 118" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "125859" + "id" "126487" side { - "id" "22918" - "plane" "(-96 536 232) (-96 544 232) (32 544 232)" + "id" "24136" + "plane" "(-59 24 1616) (-128 24 1616) (-128 128 1616)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -1771,21 +1871,21 @@ world } side { - "id" "22917" - "plane" "(32 544 224) (-96 544 224) (-96 536 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "24135" + "plane" "(-128 24 1600) (-59 24 1600) (-45 45 1600)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22916" - "plane" "(-96 544 224) (32 544 224) (32 544 232)" + "id" "24134" + "plane" "(-59 24 1600) (-128 24 1600) (-128 24 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1793,10 +1893,10 @@ world } side { - "id" "22915" - "plane" "(-96 536 224) (-96 544 224) (-96 544 232)" + "id" "24133" + "plane" "(-128 128 1600) (-45 45 1600) (-45 45 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-0.707107 0.707107 0 53.0194] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1804,10 +1904,10 @@ world } side { - "id" "22914" - "plane" "(32 544 224) (32 536 224) (32 536 232)" + "id" "24132" + "plane" "(-128 24 1600) (-128 128 1600) (-128 128 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1815,10 +1915,10 @@ world } side { - "id" "22913" - "plane" "(32 536 224) (-96 536 224) (-96 536 232)" + "id" "24131" + "plane" "(-45 45 1600) (-59 24 1600) (-59 24 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0.5547 0.83205 0 -28.4992] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1826,18 +1926,18 @@ world } editor { - "color" "0 223 200" + "color" "0 175 100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "125860" + "id" "126488" side { - "id" "22924" - "plane" "(224 352 1056) (-288 352 1056) (-288 416 1056)" + "id" "24142" + "plane" "(-45 45 1616) (-128 128 1616) (-24 128 1616)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -1847,130 +1947,130 @@ world } side { - "id" "22923" - "plane" "(-288 416 160) (-288 352 160) (224 352 160)" - "material" "METAL/BLACK_WALL_METAL_002A" - "uaxis" "[-1 0 0 -128] 0.25" - "vaxis" "[0 1 0 -896] 0.25" + "id" "24141" + "plane" "(-128 128 1600) (-45 45 1600) (-24 59 1600)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22922" - "plane" "(224 352 160) (-288 352 160) (-288 352 1056)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[-1 0 0 384] 0.25" - "vaxis" "[0 0 -1 -310.857] 0.35" + "id" "24140" + "plane" "(-45 45 1600) (-128 128 1600) (-128 128 1616)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 -53.0194] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22921" - "plane" "(224 416 160) (224 352 160) (224 352 1056)" + "id" "24139" + "plane" "(-24 128 1600) (-24 59 1600) (-24 59 1616)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-0.192745 0 -0.981248 -54.5999] 0.343921" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22920" - "plane" "(-288 352 160) (-288 416 160) (-288 416 1056)" + "id" "24138" + "plane" "(-128 128 1600) (-24 128 1600) (-24 128 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0.192745 0 -0.981248 -54.5999] 0.343921" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22919" - "plane" "(-288 416 160) (224 416 160) (224 416 1056)" + "id" "24137" + "plane" "(-24 59 1600) (-45 45 1600) (-45 45 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -54.8571] 0.35" + "uaxis" "[0.83205 0.5547 0 -35.5008] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 223 200" + "color" "0 221 194" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "125861" + "id" "126489" side { - "id" "22930" - "plane" "(-288 352 -96) (-288 416 -96) (224 416 -96)" - "material" "METAL/BLACK_FLOOR_METAL_001D" - "uaxis" "[-1 0 0 -128] 0.25" - "vaxis" "[0 1 0 -128] 0.25" + "id" "24148" + "plane" "(-24 59 1616) (-24 128 1616) (0 128 1616)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22929" - "plane" "(-288 352 -864) (224 352 -864) (224 416 -864)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "24147" + "plane" "(-24 128 1600) (-24 59 1600) (0 64 1600)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22928" - "plane" "(-288 352 -864) (-288 352 -96) (224 352 -96)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[-1 0 0 384] 0.25" - "vaxis" "[0 0 -1 -128] 0.25" + "id" "24146" + "plane" "(-24 59 1600) (-24 128 1600) (-24 128 1616)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22927" - "plane" "(224 352 -864) (224 352 -96) (224 416 -96)" + "id" "24145" + "plane" "(0 128 1600) (0 64 1600) (0 64 1616)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0.223376 0 -0.974732 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22926" - "plane" "(-288 416 -864) (-288 416 -96) (-288 352 -96)" + "id" "24144" + "plane" "(-24 128 1600) (0 128 1600) (0 128 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-0.223376 0 -0.974732 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22925" - "plane" "(224 416 -864) (224 416 -96) (-288 416 -96)" + "id" "24143" + "plane" "(0 64 1600) (-24 59 1600) (-24 59 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0.97898 0.203954 0 -35.2033] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1978,129 +2078,129 @@ world } editor { - "color" "0 223 200" + "color" "0 155 180" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "125863" + "id" "126490" side { - "id" "22942" - "plane" "(288 -224 1056) (224 -224 1056) (224 352 1056)" + "id" "24154" + "plane" "(0 64 1616) (0 128 1616) (24 128 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22941" - "plane" "(288 352 -864) (224 352 -864) (224 -224 -864)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "24153" + "plane" "(0 128 1600) (0 64 1600) (24 59 1600)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22940" - "plane" "(224 -224 -864) (224 352 -864) (224 352 1056)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "id" "24152" + "plane" "(0 64 1600) (0 128 1600) (0 128 1616)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 12.8001] 0.288462" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "512" + "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22939" - "plane" "(288 -224 -864) (224 -224 -864) (224 -224 1056)" + "id" "24151" + "plane" "(24 128 1600) (24 59 1600) (24 59 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 12.8001] 0.288462" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22938" - "plane" "(224 352 -864) (288 352 -864) (288 352 1056)" + "id" "24150" + "plane" "(0 128 1600) (24 128 1600) (24 128 1616)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 12.8001] 0.288462" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22937" - "plane" "(288 352 -864) (288 -224 -864) (288 -224 1056)" + "id" "24149" + "plane" "(24 59 1600) (0 64 1600) (0 64 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 12.8001] 0.288462" + "uaxis" "[0.97898 -0.203954 0 -23.4156] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 223 200" + "color" "0 205 250" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "125866" + "id" "126491" side { - "id" "22960" - "plane" "(-96 544 -96) (-96 544 0) (32 544 0)" - "material" "METAL/BLACK_WALL_METAL_002A" - "uaxis" "[-1 0 0 -896] 0.25" - "vaxis" "[0 0 -1 -128] 0.25" + "id" "24160" + "plane" "(24 59 1616) (24 128 1616) (128 128 1616)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22959" - "plane" "(32 560 -96) (32 560 0) (-96 560 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24159" + "plane" "(24 128 1600) (24 59 1600) (45 45 1600)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22958" - "plane" "(-96 560 0) (32 560 0) (32 544 0)" + "id" "24158" + "plane" "(24 59 1600) (24 128 1600) (24 128 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22957" - "plane" "(32 560 0) (32 560 -96) (32 544 -96)" + "id" "24157" + "plane" "(128 128 1600) (45 45 1600) (45 45 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2108,10 +2208,10 @@ world } side { - "id" "22956" - "plane" "(-96 544 0) (-96 544 -96) (-96 560 -96)" + "id" "24156" + "plane" "(24 128 1600) (128 128 1600) (128 128 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2119,29 +2219,29 @@ world } side { - "id" "22955" - "plane" "(32 560 -96) (-96 560 -96) (-96 544 -96)" + "id" "24155" + "plane" "(45 45 1600) (24 59 1600) (24 59 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0.83205 -0.5547 0 -49.504] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 223 200" + "color" "0 107 212" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "125867" + "id" "126492" side { - "id" "22966" - "plane" "(-96 544 232) (-128 544 232) (-128 608 232)" + "id" "24166" + "plane" "(128 24 1616) (59 24 1616) (45 45 1616)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -2151,21 +2251,21 @@ world } side { - "id" "22965" - "plane" "(-96 608 224) (-128 608 224) (-128 544 224)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[-1 0 0 -640] 0.25" - "vaxis" "[0 1 0 -128] 0.25" + "id" "24165" + "plane" "(128 128 1600) (45 45 1600) (59 24 1600)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22964" - "plane" "(-128 608 224) (-96 608 224) (-96 608 232)" + "id" "24164" + "plane" "(45 45 1600) (128 128 1600) (128 128 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-0.707107 -0.707107 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2173,10 +2273,10 @@ world } side { - "id" "22963" - "plane" "(-96 544 224) (-128 544 224) (-128 544 232)" + "id" "24163" + "plane" "(128 24 1600) (59 24 1600) (59 24 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2184,10 +2284,10 @@ world } side { - "id" "22962" - "plane" "(-128 544 224) (-128 608 224) (-128 608 232)" + "id" "24162" + "plane" "(128 128 1600) (128 24 1600) (128 24 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2195,10 +2295,10 @@ world } side { - "id" "22961" - "plane" "(-96 608 224) (-96 544 224) (-96 544 232)" + "id" "24161" + "plane" "(59 24 1600) (45 45 1600) (45 45 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.5547 -0.83205 0 -49.504] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2206,42 +2306,42 @@ world } editor { - "color" "0 223 200" + "color" "0 217 246" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "125868" + "id" "126493" side { - "id" "22972" - "plane" "(-96 -608 912) (-96 -480 912) (32 -480 912)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "24172" + "plane" "(128 0 1616) (64 0 1616) (59 24 1616)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22971" - "plane" "(-96 -480 -1136) (-96 -608 -1136) (32 -608 -1136)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "24171" + "plane" "(128 24 1600) (59 24 1600) (64 0 1600)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22970" - "plane" "(32 -480 -1136) (32 -608 -1136) (32 -608 912)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[0 -1 0 0] 0.25" + "id" "24170" + "plane" "(59 24 1600) (128 24 1600) (128 24 1616)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2249,10 +2349,10 @@ world } side { - "id" "22969" - "plane" "(-96 -608 -1136) (-96 -480 -1136) (-96 -480 912)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[0 -1 0 0] 0.25" + "id" "24169" + "plane" "(128 0 1600) (64 0 1600) (64 0 1616)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2260,10 +2360,10 @@ world } side { - "id" "22968" - "plane" "(32 -608 -1136) (-96 -608 -1136) (-96 -608 912)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[-1 0 0 0] 0.25" + "id" "24168" + "plane" "(128 24 1600) (128 0 1600) (128 0 1616)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2271,10 +2371,10 @@ world } side { - "id" "22967" - "plane" "(-96 -480 -1136) (32 -480 -1136) (32 -480 912)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[-1 0 0 0] 0.25" + "id" "24167" + "plane" "(64 0 1600) (59 24 1600) (59 24 1616)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.203954 -0.97898 0 -23.4156] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2282,42 +2382,42 @@ world } editor { - "color" "0 152 221" + "color" "0 159 160" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "125869" + "id" "126494" side { - "id" "22978" - "plane" "(-96 -736 912) (-96 -608 912) (32 -608 912)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "24178" + "plane" "(128 -24 1616) (59 -24 1616) (64 0 1616)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22977" - "plane" "(32 -736 784) (32 -608 784) (-96 -608 784)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "24177" + "plane" "(128 0 1600) (64 0 1600) (59 -24 1600)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "22976" - "plane" "(32 -608 784) (32 -736 784) (32 -736 912)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[0 -1 0 0] 0.25" + "id" "24176" + "plane" "(64 0 1600) (128 0 1600) (128 0 1616)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2325,10 +2425,10 @@ world } side { - "id" "22975" - "plane" "(-96 -736 784) (-96 -608 784) (-96 -608 912)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[0 -1 0 0] 0.25" + "id" "24175" + "plane" "(128 -24 1600) (59 -24 1600) (59 -24 1616)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2336,10 +2436,10 @@ world } side { - "id" "22974" - "plane" "(32 -736 784) (-96 -736 784) (-96 -736 912)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[-1 0 0 0] 0.25" + "id" "24174" + "plane" "(128 0 1600) (128 -24 1600) (128 -24 1616)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2347,10 +2447,10 @@ world } side { - "id" "22973" - "plane" "(-96 -608 784) (32 -608 784) (32 -608 912)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[-1 0 0 0] 0.25" + "id" "24173" + "plane" "(59 -24 1600) (64 0 1600) (64 0 1616)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.203954 -0.97898 0 -35.2033] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2358,53 +2458,53 @@ world } editor { - "color" "0 152 221" + "color" "0 237 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "126065" + "id" "126495" side { - "id" "23032" - "plane" "(-288 -224 1056) (-288 352 1056) (-288 352 1088)" + "id" "24184" + "plane" "(128 -128 1616) (45 -45 1616) (59 -24 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23031" - "plane" "(-288 352 1056) (-288 -224 1056) (-176 -112 1056)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "24183" + "plane" "(128 -24 1600) (59 -24 1600) (45 -45 1600)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" - "lightmapscale" "512" + "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23030" - "plane" "(-288 -224 1088) (-288 352 1088) (-176 176 1088)" + "id" "24182" + "plane" "(59 -24 1600) (128 -24 1600) (128 -24 1616)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23029" - "plane" "(-176 -112 1056) (-288 -224 1056) (-288 -224 1088)" + "id" "24181" + "plane" "(128 -128 1600) (45 -45 1600) (45 -45 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0.707107 -0.707107 0 -53.0194] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2412,10 +2512,10 @@ world } side { - "id" "23028" - "plane" "(-288 352 1088) (-288 352 1056) (-176 176 1056)" + "id" "24180" + "plane" "(128 -24 1600) (128 -128 1600) (128 -128 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2423,10 +2523,10 @@ world } side { - "id" "23027" - "plane" "(-176 176 1056) (-176 -112 1056) (-176 -112 1088)" + "id" "24179" + "plane" "(45 -45 1600) (59 -24 1600) (59 -24 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-0.5547 -0.83205 0 28.4992] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2434,53 +2534,53 @@ world } editor { - "color" "0 223 200" + "color" "0 247 196" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "126066" + "id" "126496" side { - "id" "23038" - "plane" "(224 352 1088) (224 352 1056) (112 176 1056)" + "id" "24190" + "plane" "(24 -128 1616) (24 -59 1616) (45 -45 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23037" - "plane" "(-176 176 1056) (-288 352 1056) (-288 352 1088)" - "material" "TOOLS/TOOLSNODRAW" + "id" "24189" + "plane" "(128 -128 1600) (45 -45 1600) (24 -59 1600)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23036" - "plane" "(-288 352 1056) (-176 176 1056) (112 176 1056)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "24188" + "plane" "(45 -45 1600) (128 -128 1600) (128 -128 1616)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 53.0194] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "512" + "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23035" - "plane" "(-288 352 1088) (-288 352 1056) (224 352 1056)" + "id" "24187" + "plane" "(24 -128 1600) (24 -59 1600) (24 -59 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2488,21 +2588,21 @@ world } side { - "id" "23034" - "plane" "(224 352 1088) (112 176 1088) (-176 176 1088)" + "id" "24186" + "plane" "(128 -128 1600) (24 -128 1600) (24 -128 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23033" - "plane" "(112 176 1088) (112 176 1056) (-176 176 1056)" + "id" "24185" + "plane" "(24 -59 1600) (45 -45 1600) (45 -45 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-0.83205 -0.5547 0 35.5008] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2510,53 +2610,53 @@ world } editor { - "color" "0 223 200" + "color" "0 157 138" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "126067" + "id" "126497" side { - "id" "23044" - "plane" "(224 352 1056) (224 -224 1056) (224 -224 1088)" + "id" "24196" + "plane" "(0 -128 1616) (0 -64 1616) (24 -59 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23043" - "plane" "(112 -112 1056) (224 -224 1056) (224 352 1056)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "24195" + "plane" "(0 -64 1600) (0 -128 1600) (24 -128 1600)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" - "lightmapscale" "512" + "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23042" - "plane" "(224 352 1088) (224 -224 1088) (112 -112 1088)" + "id" "24194" + "plane" "(24 -59 1600) (24 -128 1600) (24 -128 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23041" - "plane" "(224 -224 1088) (224 -224 1056) (112 -112 1056)" + "id" "24193" + "plane" "(0 -128 1600) (0 -64 1600) (0 -64 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2564,10 +2664,10 @@ world } side { - "id" "23040" - "plane" "(112 176 1056) (224 352 1056) (224 352 1088)" + "id" "24192" + "plane" "(24 -128 1600) (0 -128 1600) (0 -128 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2575,10 +2675,10 @@ world } side { - "id" "23039" - "plane" "(112 -112 1056) (112 176 1056) (112 176 1088)" + "id" "24191" + "plane" "(0 -64 1600) (24 -59 1600) (24 -59 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-0.97898 -0.203954 0 35.2033] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2586,20 +2686,20 @@ world } editor { - "color" "0 223 200" + "color" "0 147 212" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "126072" + "id" "126498" side { - "id" "23074" - "plane" "(-176 176 320) (-176 -112 320) (-160 -96 320)" + "id" "24202" + "plane" "(-24 -128 1616) (-24 -59 1616) (0 -64 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2607,19 +2707,19 @@ world } side { - "id" "23073" - "plane" "(-176 176 1600) (-160 160 1600) (-160 -96 1600)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "24201" + "plane" "(-24 -59 1600) (-24 -128 1600) (0 -128 1600)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23072" - "plane" "(-176 176 320) (-176 176 1600) (-176 -112 1600)" + "id" "24200" + "plane" "(0 -64 1600) (0 -128 1600) (0 -128 1616)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2629,10 +2729,10 @@ world } side { - "id" "23071" - "plane" "(-160 160 320) (-160 160 1600) (-176 176 1600)" + "id" "24199" + "plane" "(-24 -128 1600) (-24 -59 1600) (-24 -59 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2640,8 +2740,8 @@ world } side { - "id" "23070" - "plane" "(-176 -112 320) (-176 -112 1600) (-160 -96 1600)" + "id" "24198" + "plane" "(0 -128 1600) (-24 -128 1600) (-24 -128 1616)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2651,31 +2751,31 @@ world } side { - "id" "23069" - "plane" "(-160 -96 320) (-160 -96 1600) (-160 160 1600)" - "material" "PROPS/PLASTICWALL003A" - "uaxis" "[0 -1 0 128] 0.25" - "vaxis" "[0 0 1 768] 0.25" + "id" "24197" + "plane" "(-24 -59 1600) (0 -64 1600) (0 -64 1616)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.97898 0.203954 0 23.4156] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 223 200" + "color" "0 109 234" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "126073" + "id" "126499" side { - "id" "23080" - "plane" "(96 160 320) (96 -96 320) (112 -112 320)" + "id" "24208" + "plane" "(-128 -128 1616) (-45 -45 1616) (-24 -59 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2683,30 +2783,30 @@ world } side { - "id" "23079" - "plane" "(96 -96 1600) (96 160 1600) (112 176 1600)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "24207" + "plane" "(-24 -128 1600) (-24 -59 1600) (-45 -45 1600)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23078" - "plane" "(96 160 320) (96 160 1600) (96 -96 1600)" - "material" "PROPS/PLASTICWALL003A" - "uaxis" "[0 -1 0 128] 0.25" - "vaxis" "[0 0 1 768] 0.25" + "id" "24206" + "plane" "(-24 -59 1600) (-24 -128 1600) (-24 -128 1616)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23077" - "plane" "(112 176 320) (112 176 1600) (96 160 1600)" + "id" "24205" + "plane" "(-128 -128 1600) (-45 -45 1600) (-45 -45 1616)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-0.707107 -0.707107 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2716,8 +2816,8 @@ world } side { - "id" "23076" - "plane" "(96 -96 320) (96 -96 1600) (112 -112 1600)" + "id" "24204" + "plane" "(-24 -128 1600) (-128 -128 1600) (-128 -128 1616)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2727,10 +2827,10 @@ world } side { - "id" "23075" - "plane" "(112 -112 320) (112 -112 1600) (112 176 1600)" + "id" "24203" + "plane" "(-45 -45 1600) (-24 -59 1600) (-24 -59 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-0.83205 0.5547 0 49.504] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2738,20 +2838,20 @@ world } editor { - "color" "0 223 200" + "color" "0 243 100" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "126074" + "id" "126500" side { - "id" "23086" - "plane" "(-160 -96 320) (-176 -112 320) (112 -112 320)" + "id" "24214" + "plane" "(-128 -24 1616) (-59 -24 1616) (-45 -45 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2759,32 +2859,32 @@ world } side { - "id" "23085" - "plane" "(-160 -96 1600) (96 -96 1600) (112 -112 1600)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "24213" + "plane" "(-128 -128 1600) (-45 -45 1600) (-59 -24 1600)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23084" - "plane" "(96 -96 320) (96 -96 1600) (-160 -96 1600)" - "material" "PROPS/PLASTICWALL003A" - "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 0 1 768] 0.25" + "id" "24212" + "plane" "(-45 -45 1600) (-128 -128 1600) (-128 -128 1616)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23083" - "plane" "(112 -112 320) (112 -112 1600) (96 -96 1600)" + "id" "24211" + "plane" "(-128 -24 1600) (-59 -24 1600) (-59 -24 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2792,8 +2892,8 @@ world } side { - "id" "23082" - "plane" "(-160 -96 320) (-160 -96 1600) (-176 -112 1600)" + "id" "24210" + "plane" "(-128 -128 1600) (-128 -24 1600) (-128 -24 1616)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2803,10 +2903,10 @@ world } side { - "id" "23081" - "plane" "(-176 -112 320) (-176 -112 1600) (112 -112 1600)" + "id" "24209" + "plane" "(-59 -24 1600) (-45 -45 1600) (-45 -45 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-0.5547 0.83205 0 49.504] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2814,20 +2914,20 @@ world } editor { - "color" "0 223 200" + "color" "0 125 214" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "126075" + "id" "126501" side { - "id" "23092" - "plane" "(-176 176 320) (-160 160 320) (96 160 320)" + "id" "24220" + "plane" "(-59 -24 1616) (-128 -24 1616) (-128 0 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2835,19 +2935,19 @@ world } side { - "id" "23091" - "plane" "(112 176 1600) (96 160 1600) (-160 160 1600)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "24219" + "plane" "(-64 0 1600) (-128 0 1600) (-128 -24 1600)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "23090" - "plane" "(112 176 320) (112 176 1600) (-176 176 1600)" + "id" "24218" + "plane" "(-59 -24 1600) (-128 -24 1600) (-128 -24 1616)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2857,10 +2957,10 @@ world } side { - "id" "23089" - "plane" "(96 160 320) (96 160 1600) (112 176 1600)" + "id" "24217" + "plane" "(-128 0 1600) (-64 0 1600) (-64 0 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2868,10 +2968,10 @@ world } side { - "id" "23088" - "plane" "(-176 176 320) (-176 176 1600) (-160 160 1600)" + "id" "24216" + "plane" "(-128 -24 1600) (-128 0 1600) (-128 0 1616)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 -0.707107 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2879,118 +2979,258 @@ world } side { - "id" "23087" - "plane" "(-160 160 320) (-160 160 1600) (96 160 1600)" - "material" "PROPS/PLASTICWALL003A" - "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 0 1 768] 0.25" + "id" "24215" + "plane" "(-64 0 1600) (-59 -24 1600) (-59 -24 1616)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.203954 0.97898 0 23.4156] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 223 200" + "color" "0 219 104" "visgroupshown" "1" "visgroupautoshown" "1" } } - solid + group { - "id" "126676" - side + "id" "136399" + editor { - "id" "24424" - "plane" "(-96 544 222) (-96 608 222) (-96 608 228)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 -50] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "213 210 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - side - { - "id" "24423" - "plane" "(32 608 222) (32 544 222) (32 544 228)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 -16] 0.25" - "rotation" "0" - "lightmapscale" "16" + } + group + { + "id" "131009" + editor + { + "color" "246 247 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "129905" + editor + { + "color" "224 229 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } +} +entity +{ + "id" "143904" + "classname" "logic_case" + "angles" "0 0 0" + "targetname" "arrive_dir" + connections + { + "OnCase02" "elevator_modelSetDefaultAnimationarrivefrombelow_idle0-1" + "OnCase01" "elevator_modelSetDefaultAnimationleave_idle0-1" + "OnCase02" "elevator_modelAddOutputOnUser1 !self:SetAnimation:arrivefrombelow:0:10-1" + "OnCase01" "elevator_modelAddOutputOnUser1 !self:SetAnimation:arrive:0:10-1" + } + "origin" "0 16 -64" + editor + { + "color" "0 100 250" + "visgroupshown" "1" + "visgroupautoshown" "1" + "comments" "Pick a random direction to arrive from." + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "143906" + "classname" "logic_relay" + "angles" "0 0 0" + "spawnflags" "0" + "targetname" "logic_source_elevator_door_open" + connections + { + "OnTrigger" "elevator_modelFireUser10-1" + "OnTrigger" "elevator_tube_openerSetAnimationopen2-1" + "OnTrigger" "elevator_playerclipKill3.5-1" + "OnTrigger" "elevator_modelSetDefaultAnimationdooropen_idle0.1-1" + "OnTrigger" "elevator_tube_openerSetDefaultAnimationopen_idle2.1-1" + "OnSpawn" "arrive_dirPickRandom01" + "OnSpawn" "arrive_dirKill0.11" + } + "origin" "16 16 -64" + editor + { + "color" "0 100 250" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "138750" + "classname" "env_soundscape" + "angles" "0 0 0" + "radius" "128" + "soundscape" "EntryExitElevator.Exterior" + "origin" "0 176 -104" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "138761" + "classname" "logic_relay" + "angles" "0 0 0" + "spawnflags" "0" + "targetname" "signs_on" + connections + { + "OnTrigger" "@video_splitterRunScriptCodeStartDepartureVideo(23,2,0)0-1" + } + "origin" "-32 128 -79" + editor + { + "color" "0 100 250" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1500 15500]" + } +} +entity +{ + "id" "138763" + "classname" "logic_relay" + "angles" "0 0 0" + "spawnflags" "0" + "targetname" "signs_off" + connections + { + "OnTrigger" "@video_splitterRunScriptCodeStopDepartureVideo(23,2)0-1" + } + "origin" "-48 128 -79" + editor + { + "color" "0 100 250" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1500 15500]" + } +} +entity +{ + "id" "141245" + "classname" "func_detail" + solid + { + "id" "141196" + side + { + "id" "26770" + "plane" "(17.1007 128 -112) (33 256 -112) (98.7969 238.898 -112)" + "material" "MOTEL/ELEVATOR_CARPET001" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24422" - "plane" "(-96 544 228) (-96 608 228) (32 608 228)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[0 -1 0 48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "26769" + "plane" "(33 256 -192) (33 256 -112) (17.1009 128 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.123267 -0.992374 0 -47.2457] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24421" - "plane" "(-96 608 222) (-96 544 222) (32 544 222)" - "material" "TOOLS/TOOLSHINT" - "uaxis" "[0 1 0 -48] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "26768" + "plane" "(49.3971 118.896 -192) (49.397 118.896 -112) (98.7956 238.896 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.380666 0.924712 0 5.63789] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24420" - "plane" "(32 544 228) (32 544 222) (-96 544 222)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[0 0 -1 -16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "26767" + "plane" "(98.793 238.896 -192) (98.793 238.896 -112) (33 256 -112)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-0.967404 0.253237 0 -130.758] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24419" - "plane" "(-96 608 228) (-96 608 222) (32 608 222)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[0 0 1 16] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "26766" + "plane" "(17.0977 128 -192) (17.0977 128 -112) (49.3967 118.895 -112)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS" + "uaxis" "[0.962489 -0.271319 0 477.493] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" + "rotation" "0" + "lightmapscale" "512" + "smoothing_groups" "0" + } + side + { + "id" "26765" + "plane" "(33 256 -192) (17.1007 128 -192) (49.3976 118.896 -192)" + "material" "PROPS/PLASTICWALL003A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 219 132" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "126686" + "id" "141200" side { - "id" "24454" - "plane" "(-96 544 232) (-96 608 232) (-96 608 238)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26776" + "plane" "(49.3957 118.899 -112) (98.7974 238.904 -112) (157.199 204.602 -112)" + "material" "MOTEL/ELEVATOR_CARPET001" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24453" - "plane" "(32 608 232) (32 544 232) (32 544 238)" + "id" "26775" + "plane" "(98.7971 238.902 -192) (98.7969 238.902 -112) (49.3958 118.899 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-0.380668 -0.924712 0 -5.63763] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2998,86 +3238,86 @@ world } side { - "id" "24452" - "plane" "(-96 544 238) (-96 608 238) (32 608 238)" + "id" "26774" + "plane" "(78.5932 102.8 -192) (78.5932 102.8 -112) (157.195 204.602 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.611145 0.791519 0 -40.9121] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24451" - "plane" "(-96 608 232) (-96 544 232) (32 544 232)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "26773" + "plane" "(157.195 204.602 -192) (157.195 204.602 -112) (98.7969 238.904 -112)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-0.862599 0.505886 0 99.1661] 0.25" + "vaxis" "[0 0 -1 -385] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24450" - "plane" "(32 544 238) (32 544 232) (-96 544 232)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26772" + "plane" "(49.3909 118.902 -192) (49.3906 118.902 -112) (78.5944 102.799 -112)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS" + "uaxis" "[0.875697 -0.482861 0 83.2493] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "24449" - "plane" "(-96 608 238) (-96 608 232) (32 608 232)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26771" + "plane" "(98.7969 238.902 -192) (49.3958 118.899 -192) (78.5946 102.799 -192)" + "material" "PROPS/PLASTICWALL003A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 219 132" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "126697" + "id" "141202" side { - "id" "24490" - "plane" "(64 688 224) (64 608 224) (32 608 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "26782" + "plane" "(204.598 157.203 -112) (102.797 78.6023 -112) (78.6014 102.797 -112)" + "material" "MOTEL/ELEVATOR_CARPET001" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24489" - "plane" "(64 608 32) (64 688 32) (32 688 32)" + "id" "26781" + "plane" "(157.195 204.602 -192) (157.195 204.602 -112) (78.5972 102.801 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 -60] 0.25" + "uaxis" "[-0.61114 -0.791522 0 40.9111] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24488" - "plane" "(64 608 224) (64 688 224) (64 688 32)" + "id" "26780" + "plane" "(102.796 78.6027 -192) (102.796 78.6029 -112) (204.595 157.202 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0.791528 0.611133 0 -23.0906] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3085,75 +3325,75 @@ world } side { - "id" "24487" - "plane" "(32 688 160) (32 608 160) (32 608 32)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[0 -1 0 640] 0.25" - "vaxis" "[0 0 -1 -128] 0.25" + "id" "26779" + "plane" "(204.594 157.203 -192) (204.594 157.203 -112) (157.199 204.598 -112)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-0.706991 0.707222 0 -163.981] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24486" - "plane" "(32 608 160) (64 608 224) (64 608 32)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26778" + "plane" "(78.6016 102.797 -192) (78.6016 102.797 -112) (102.796 78.6027 -112)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS" + "uaxis" "[0.707109 -0.707104 0 228.459] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "24485" - "plane" "(64 688 224) (32 688 160) (32 688 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26777" + "plane" "(157.199 204.602 -192) (78.5988 102.8 -192) (102.795 78.6034 -192)" + "material" "PROPS/PLASTICWALL003A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 115 244" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "126702" + "id" "141204" side { - "id" "24520" - "plane" "(-128 688 224) (-96 688 160) (-96 608 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 -2] 0.25" + "id" "26788" + "plane" "(238.902 98.7949 -112) (118.904 49.3958 -112) (102.803 78.6017 -112)" + "material" "MOTEL/ELEVATOR_CARPET001" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24519" - "plane" "(-128 608 32) (-96 608 32) (-96 688 32)" + "id" "26787" + "plane" "(204.597 157.199 -192) (204.598 157.199 -112) (102.803 78.6025 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 2] 0.25" + "uaxis" "[-0.791524 -0.611138 0 23.0894] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24518" - "plane" "(-128 688 32) (-128 688 224) (-128 608 224)" + "id" "26786" + "plane" "(118.904 49.3958 -192) (118.904 49.3956 -112) (238.903 98.7951 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.924711 0.380669 0 -5.63737] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3161,75 +3401,75 @@ world } side { - "id" "24517" - "plane" "(-96 608 32) (-96 608 160) (-96 688 160)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[0 -1 0 640] 0.25" - "vaxis" "[0 0 -1 -128] 0.25" + "id" "26785" + "plane" "(238.9 98.7971 -192) (238.9 98.7969 -112) (204.6 157.199 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.506444 0.862273 0 47.1958] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24516" - "plane" "(-96 688 32) (-96 688 160) (-128 688 224)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26784" + "plane" "(102.804 78.6018 -192) (102.805 78.6016 -112) (118.904 49.3978 -112)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS" + "uaxis" "[0.482786 -0.875739 0 373.721] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "24515" - "plane" "(-128 608 32) (-128 608 224) (-96 608 160)" - "material" "METAL/BLACK_WALL_METAL_002B" + "id" "26783" + "plane" "(204.594 157.199 -192) (102.801 78.6053 -192) (118.903 49.3966 -192)" + "material" "PROPS/PLASTICWALL003A" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 115 244" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "127694" + "id" "141206" side { - "id" "24538" - "plane" "(-96 704 160) (32 704 160) (32 688 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "26794" + "plane" "(256 33.2974 -112) (128 17.0975 -112) (118.902 49.4034 -112)" + "material" "MOTEL/ELEVATOR_CARPET001" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24537" - "plane" "(32 704 32) (-96 704 32) (-96 688 32)" + "id" "26793" + "plane" "(238.902 98.8025 -192) (238.902 98.8027 -112) (118.902 49.4023 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[-0.92471 -0.380672 0 5.63686] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24536" - "plane" "(-96 704 32) (32 704 32) (32 704 160)" + "id" "26792" + "plane" "(128 17.0981 -192) (128 17.098 -112) (256 33.2979 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0.992086 0.125563 0 -46.9149] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3237,10 +3477,10 @@ world } side { - "id" "24535" - "plane" "(32 688 32) (-96 688 32) (-96 688 160)" + "id" "26791" + "plane" "(256 33.297 -192) (256 33.2969 -112) (238.899 98.8086 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-0.252589 0.967574 0 28.1809] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3248,64 +3488,64 @@ world } side { - "id" "24534" - "plane" "(32 704 32) (32 688 32) (32 688 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26790" + "plane" "(118.902 49.4021 -192) (118.901 49.4023 -112) (128 17.0983 -112)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS" + "uaxis" "[0.271091 -0.962554 0 491.56] 0.25" + "vaxis" "[0 0 -1 -448.002] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "24533" - "plane" "(-96 688 32) (-96 704 32) (-96 704 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26789" + "plane" "(238.898 98.8008 -192) (118.902 49.4021 -192) (128 17.097 -192)" + "material" "PROPS/PLASTICWALL003A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 223 200" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "126486" + "id" "141208" side { - "id" "24130" - "plane" "(-96 32 1616) (-160 32 1616) (-160 56 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "26800" + "plane" "(256 -33.2998 -112) (128 -17.0995 -112) (128 17.0965 -112)" + "material" "MOTEL/ELEVATOR_CARPET001" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24129" - "plane" "(-91 56 1600) (-160 56 1600) (-160 32 1600)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[0 -1 0 128] 0.25" - "vaxis" "[-1 0 0 -128] 0.25" + "id" "26799" + "plane" "(256 33.2988 -192) (256 33.2988 -112) (128 17.0988 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.992086 -0.125562 0 46.9151] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24128" - "plane" "(-96 32 1600) (-160 32 1600) (-160 32 1616)" + "id" "26798" + "plane" "(128 -17.0995 -192) (128 -17.0995 -112) (256 -33.2997 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0.992086 -0.125562 0 -15.0589] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3313,10 +3553,10 @@ world } side { - "id" "24127" - "plane" "(-160 56 1600) (-91 56 1600) (-91 56 1616)" + "id" "26797" + "plane" "(256 -33.3008 -192) (256 -33.3008 -112) (256 33.3008 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3324,64 +3564,64 @@ world } side { - "id" "24126" - "plane" "(-160 32 1600) (-160 56 1600) (-160 56 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26796" + "plane" "(128 17.0977 -192) (128 17.0977 -112) (128 -17.099 -112)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS" + "uaxis" "[0 -1 0 120.919] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "24125" - "plane" "(-91 56 1600) (-96 32 1600) (-96 32 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.203954 0.97898 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26795" + "plane" "(256 33.2969 -192) (128 17.0966 -192) (128 -17.0985 -192)" + "material" "PROPS/PLASTICWALL003A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 249 118" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "126487" + "id" "141210" side { - "id" "24136" - "plane" "(-91 56 1616) (-160 56 1616) (-160 160 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "26806" + "plane" "(238.898 -98.8008 -112) (118.901 -49.4013 -112) (128 -17.0969 -112)" + "material" "MOTEL/ELEVATOR_CARPET001" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24135" - "plane" "(-160 56 1600) (-91 56 1600) (-77 77 1600)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[0 -1 0 128] 0.25" - "vaxis" "[-1 0 0 -128] 0.25" + "id" "26805" + "plane" "(256 -33.2992 -192) (256 -33.2993 -112) (128 -17.0992 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.992086 0.125561 0 15.0588] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24134" - "plane" "(-91 56 1600) (-160 56 1600) (-160 56 1616)" + "id" "26804" + "plane" "(118.901 -49.4011 -192) (118.901 -49.4011 -112) (238.898 -98.8006 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0.924709 -0.380675 0 -39.0892] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3389,10 +3629,10 @@ world } side { - "id" "24133" - "plane" "(-160 160 1600) (-77 77 1600) (-77 77 1616)" + "id" "26803" + "plane" "(238.897 -98.8008 -192) (238.897 -98.8008 -112) (256 -33.2969 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 0] 0.25" + "uaxis" "[0.252584 0.967575 0 27.5188] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3400,64 +3640,64 @@ world } side { - "id" "24132" - "plane" "(-160 56 1600) (-160 160 1600) (-160 160 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26802" + "plane" "(128 -17.1015 -192) (128 -17.1016 -112) (118.902 -49.4018 -112)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS" + "uaxis" "[-0.271154 -0.962536 0 262.313] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "24131" - "plane" "(-77 77 1600) (-91 56 1600) (-91 56 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.5547 0.83205 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26801" + "plane" "(256 -33.2969 -192) (128 -17.0968 -192) (118.901 -49.4015 -192)" + "material" "PROPS/PLASTICWALL003A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 175 100" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "126488" + "id" "141212" side { - "id" "24142" - "plane" "(-77 77 1616) (-160 160 1616) (-56 160 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "26812" + "plane" "(204.602 -157.199 -112) (102.801 -78.5971 -112) (118.903 -49.3972 -112)" + "material" "MOTEL/ELEVATOR_CARPET001" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24141" - "plane" "(-160 160 1600) (-77 77 1600) (-56 91 1600)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[0 -1 0 128] 0.25" - "vaxis" "[-1 0 0 -128] 0.25" + "id" "26811" + "plane" "(238.902 -98.7989 -192) (238.902 -98.7988 -112) (118.902 -49.3989 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.92471 0.380673 0 39.089] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24140" - "plane" "(-77 77 1600) (-160 160 1600) (-160 160 1616)" + "id" "26810" + "plane" "(102.801 -78.5962 -192) (102.801 -78.596 -112) (204.604 -157.199 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 -0.707107 0 0] 0.25" + "uaxis" "[0.791526 -0.611136 0 -51.5407] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3465,10 +3705,10 @@ world } side { - "id" "24139" - "plane" "(-56 160 1600) (-56 91 1600) (-56 91 1616)" + "id" "26809" + "plane" "(204.605 -157.199 -192) (204.605 -157.199 -112) (238.902 -98.7969 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0.506438 0.862276 0 -18.4527] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3476,64 +3716,64 @@ world } side { - "id" "24138" - "plane" "(-160 160 1600) (-56 160 1600) (-56 160 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26808" + "plane" "(118.898 -49.4025 -192) (118.898 -49.4023 -112) (102.8 -78.5952 -112)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS" + "uaxis" "[-0.482886 -0.875683 0 380.175] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "24137" - "plane" "(-56 91 1600) (-77 77 1600) (-77 77 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.83205 0.5547 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26807" + "plane" "(238.898 -98.7949 -192) (118.903 -49.3971 -192) (102.801 -78.5962 -192)" + "material" "PROPS/PLASTICWALL003A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 221 194" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "126489" + "id" "141214" side { - "id" "24148" - "plane" "(-56 91 1616) (-56 160 1616) (-32 160 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "26818" + "plane" "(157.195 -204.602 -112) (78.5956 -102.803 -112) (102.803 -78.5961 -112)" + "material" "MOTEL/ELEVATOR_CARPET001" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24147" - "plane" "(-56 160 1600) (-56 91 1600) (-32 96 1600)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[0 -1 0 128] 0.25" - "vaxis" "[-1 0 0 -128] 0.25" + "id" "26817" + "plane" "(204.598 -157.199 -192) (204.598 -157.199 -112) (102.799 -78.5999 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.791524 0.611138 0 51.5407] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24146" - "plane" "(-56 91 1600) (-56 160 1600) (-56 160 1616)" + "id" "26816" + "plane" "(78.5997 -102.798 -192) (78.5995 -102.799 -112) (157.197 -204.596 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.611139 -0.791523 0 -51.5407] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3541,10 +3781,10 @@ world } side { - "id" "24145" - "plane" "(-32 160 1600) (-32 96 1600) (-32 96 1616)" + "id" "26815" + "plane" "(157.199 -204.598 -192) (157.199 -204.598 -112) (204.598 -157.203 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3552,64 +3792,64 @@ world } side { - "id" "24144" - "plane" "(-56 160 1600) (-32 160 1600) (-32 160 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26814" + "plane" "(102.797 -78.6014 -192) (102.797 -78.6016 -112) (78.5971 -102.801 -112)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS" + "uaxis" "[-0.707114 -0.707099 0 13.3798] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "24143" - "plane" "(-32 96 1600) (-56 91 1600) (-56 91 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.97898 0.203954 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26813" + "plane" "(204.598 -157.199 -192) (102.799 -78.5994 -192) (78.5946 -102.803 -192)" + "material" "PROPS/PLASTICWALL003A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 155 180" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "126490" + "id" "141216" side { - "id" "24154" - "plane" "(-32 96 1616) (-32 160 1616) (-8 160 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "26824" + "plane" "(98.8027 -238.895 -112) (49.4033 -118.9 -112) (78.599 -102.8 -112)" + "material" "MOTEL/ELEVATOR_CARPET001" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24153" - "plane" "(-32 160 1600) (-32 96 1600) (-8 91 1600)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[0 -1 0 128] 0.25" - "vaxis" "[-1 0 0 -128] 0.25" + "id" "26823" + "plane" "(157.199 -204.602 -192) (157.199 -204.602 -112) (78.6001 -102.8 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.611139 0.791523 0 51.5407] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24152" - "plane" "(-32 96 1600) (-32 160 1600) (-32 160 1616)" + "id" "26822" + "plane" "(49.4023 -118.9 -192) (49.4025 -118.9 -112) (98.8021 -238.897 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.380677 -0.924708 0 -39.0893] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3617,10 +3857,10 @@ world } side { - "id" "24151" - "plane" "(-8 160 1600) (-8 91 1600) (-8 91 1616)" + "id" "26821" + "plane" "(98.8005 -238.899 -192) (98.8008 -238.898 -112) (157.203 -204.598 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0.862278 0.506435 0 -45.5479] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3628,64 +3868,64 @@ world } side { - "id" "24150" - "plane" "(-32 160 1600) (-8 160 1600) (-8 160 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26820" + "plane" "(78.6014 -102.799 -192) (78.6016 -102.799 -112) (49.4026 -118.9 -112)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS" + "uaxis" "[-0.875686 -0.482881 0 -5.05768] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "24149" - "plane" "(-8 91 1600) (-32 96 1600) (-32 96 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.97898 -0.203954 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26819" + "plane" "(157.203 -204.602 -192) (78.6018 -102.799 -192) (49.4041 -118.899 -192)" + "material" "PROPS/PLASTICWALL003A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 205 250" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "126491" + "id" "141218" side { - "id" "24160" - "plane" "(-8 91 1616) (-8 160 1616) (96 160 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "26830" + "plane" "(33.2959 -256 -112) (17.096 -128 -112) (49.394 -118.904 -112)" + "material" "MOTEL/ELEVATOR_CARPET001" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24159" - "plane" "(-8 160 1600) (-8 91 1600) (13 77 1600)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[0 -1 0 128] 0.25" - "vaxis" "[-1 0 0 -128] 0.25" + "id" "26829" + "plane" "(98.7989 -238.902 -192) (98.7988 -238.902 -112) (49.3996 -118.903 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.38067 0.924711 0 39.0888] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24158" - "plane" "(-8 91 1600) (-8 160 1600) (-8 160 1616)" + "id" "26828" + "plane" "(17.0967 -128 -192) (17.0965 -128 -112) (33.2965 -256 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.125562 -0.992086 0 -15.0589] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3693,10 +3933,10 @@ world } side { - "id" "24157" - "plane" "(96 160 1600) (13 77 1600) (13 77 1616)" + "id" "26827" + "plane" "(33.297 -256 -192) (33.2969 -256 -112) (98.793 -238.902 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" + "uaxis" "[0.967577 0.252575 0 -27.5202] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3704,64 +3944,64 @@ world } side { - "id" "24156" - "plane" "(-8 160 1600) (96 160 1600) (96 160 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26826" + "plane" "(49.3985 -118.903 -192) (49.3984 -118.903 -112) (17.0965 -128 -112)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS" + "uaxis" "[-0.962556 -0.271082 0 -399.159] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "24155" - "plane" "(13 77 1600) (-8 91 1600) (-8 91 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.83205 -0.5547 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26825" + "plane" "(98.7969 -238.898 -192) (49.3994 -118.903 -192) (17.0951 -128 -192)" + "material" "PROPS/PLASTICWALL003A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 107 212" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "126492" + "id" "141220" side { - "id" "24166" - "plane" "(96 56 1616) (27 56 1616) (13 77 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "26836" + "plane" "(-33.2969 -256 -112) (-17.0966 -128 -112) (17.0965 -128 -112)" + "material" "MOTEL/ELEVATOR_CARPET001" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24165" - "plane" "(96 160 1600) (13 77 1600) (27 56 1600)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[0 -1 0 128] 0.25" - "vaxis" "[-1 0 0 -128] 0.25" + "id" "26835" + "plane" "(33.2997 -256 -192) (33.2998 -256 -112) (17.0998 -128 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.125563 0.992086 0 15.0591] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24164" - "plane" "(13 77 1600) (96 160 1600) (96 160 1616)" + "id" "26834" + "plane" "(-17.0981 -128 -192) (-17.098 -128 -112) (-33.2982 -256 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 -0.707107 0 0] 0.25" + "uaxis" "[-0.125563 -0.992086 0 -46.9149] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3769,8 +4009,8 @@ world } side { - "id" "24163" - "plane" "(96 56 1600) (27 56 1600) (27 56 1616)" + "id" "26833" + "plane" "(-33.2969 -256 -192) (-33.2969 -256 -112) (33.3008 -256 -112)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -3780,64 +4020,64 @@ world } side { - "id" "24162" - "plane" "(96 160 1600) (96 56 1600) (96 56 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26832" + "plane" "(17.0976 -128 -192) (17.0977 -128 -112) (-17.098 -128 -112)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS" + "uaxis" "[-1 0 0 -257.804] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "24161" - "plane" "(27 56 1600) (13 77 1600) (13 77 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.5547 -0.83205 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26831" + "plane" "(33.2969 -256 -192) (17.0966 -128 -192) (-17.0985 -128 -192)" + "material" "PROPS/PLASTICWALL003A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 217 246" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "126493" + "id" "141174" side { - "id" "24172" - "plane" "(96 32 1616) (32 32 1616) (27 56 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "26842" + "plane" "(-98.7969 -238.902 -112) (-49.3968 -118.903 -112) (-17.1045 -128 -112)" + "material" "MOTEL/ELEVATOR_CARPET001" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24171" - "plane" "(96 56 1600) (27 56 1600) (32 32 1600)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[0 -1 0 128] 0.25" - "vaxis" "[-1 0 0 -128] 0.25" + "id" "26841" + "plane" "(-33.3003 -256 -192) (-33.3003 -256 -112) (-17.1007 -128 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.12556 0.992086 0 46.9153] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24170" - "plane" "(27 56 1600) (96 56 1600) (96 56 1616)" + "id" "26840" + "plane" "(-49.396 -118.903 -192) (-49.396 -118.903 -112) (-98.7956 -238.901 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-0.38067 -0.924711 0 -5.63725] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3845,10 +4085,10 @@ world } side { - "id" "24169" - "plane" "(96 32 1600) (32 32 1600) (32 32 1616)" + "id" "26839" + "plane" "(-98.7969 -238.901 -192) (-98.7969 -238.901 -112) (-33.2969 -256 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0.967574 -0.252588 0 -28.1807] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3856,64 +4096,64 @@ world } side { - "id" "24168" - "plane" "(96 56 1600) (96 32 1600) (96 32 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26838" + "plane" "(-17.1016 -128 -192) (-17.1016 -128 -112) (-49.3959 -118.903 -112)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS" + "uaxis" "[-0.962551 0.271099 0 -116.44] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "24167" - "plane" "(32 32 1600) (27 56 1600) (27 56 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.203954 -0.97898 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26837" + "plane" "(-33.3022 -256 -192) (-17.1021 -128 -192) (-49.3957 -118.903 -192)" + "material" "PROPS/PLASTICWALL003A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 159 160" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "126494" + "id" "141176" side { - "id" "24178" - "plane" "(96 8 1616) (27 8 1616) (32 32 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "26848" + "plane" "(-157.199 -204.598 -112) (-78.605 -102.801 -112) (-49.4052 -118.9 -112)" + "material" "MOTEL/ELEVATOR_CARPET001" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24177" - "plane" "(96 32 1600) (32 32 1600) (27 8 1600)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[0 -1 0 128] 0.25" - "vaxis" "[-1 0 0 -128] 0.25" + "id" "26847" + "plane" "(-98.8025 -238.895 -192) (-98.8027 -238.895 -112) (-49.4054 -118.9 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.380671 0.924711 0 5.63712] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24176" - "plane" "(32 32 1600) (96 32 1600) (96 32 1616)" + "id" "26846" + "plane" "(-78.6027 -102.803 -192) (-78.6028 -102.803 -112) (-157.196 -204.599 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-0.611131 -0.791529 0 40.9091] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3921,10 +4161,10 @@ world } side { - "id" "24175" - "plane" "(96 8 1600) (27 8 1600) (27 8 1616)" + "id" "26845" + "plane" "(-157.195 -204.6 -192) (-157.195 -204.6 -112) (-98.8086 -238.896 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0.862276 -0.506439 0 -47.1955] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3932,64 +4172,64 @@ world } side { - "id" "24174" - "plane" "(96 32 1600) (96 8 1600) (96 8 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26844" + "plane" "(-49.4099 -118.899 -192) (-49.4102 -118.898 -112) (-78.603 -102.803 -112)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS" + "uaxis" "[-0.87572 0.482819 0 -510.586] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "24173" - "plane" "(27 8 1600) (32 32 1600) (32 32 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.203954 -0.97898 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26843" + "plane" "(-98.8047 -238.898 -192) (-49.4054 -118.9 -192) (-78.6042 -102.802 -192)" + "material" "PROPS/PLASTICWALL003A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 237 234" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "126495" + "id" "141178" side { - "id" "24184" - "plane" "(96 -96 1616) (13 -13 1616) (27 8 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "26854" + "plane" "(-204.605 -157.199 -112) (-102.8 -78.5987 -112) (-78.593 -102.806 -112)" + "material" "MOTEL/ELEVATOR_CARPET001" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24183" - "plane" "(96 8 1600) (27 8 1600) (13 -13 1600)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[0 -1 0 128] 0.25" - "vaxis" "[-1 0 0 -128] 0.25" + "id" "26853" + "plane" "(-157.195 -204.602 -192) (-157.195 -204.602 -112) (-78.597 -102.802 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.611136 0.791526 0 -40.9101] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24182" - "plane" "(27 8 1600) (96 8 1600) (96 8 1616)" + "id" "26852" + "plane" "(-102.797 -78.6013 -192) (-102.798 -78.6011 -112) (-204.6 -157.201 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-0.791534 -0.611124 0 23.0925] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3997,10 +4237,10 @@ world } side { - "id" "24181" - "plane" "(96 -96 1600) (13 -13 1600) (13 -13 1616)" + "id" "26851" + "plane" "(-204.605 -157.199 -192) (-204.605 -157.199 -112) (-157.199 -204.602 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 -0.707107 0 0] 0.25" + "uaxis" "[0.707107 -0.707107 0 -53.0194] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -4008,64 +4248,64 @@ world } side { - "id" "24180" - "plane" "(96 8 1600) (96 -96 1600) (96 -96 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26850" + "plane" "(-78.5938 -102.805 -192) (-78.5938 -102.805 -112) (-102.799 -78.5994 -112)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS" + "uaxis" "[-0.707106 0.707108 0 -365.345] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "24179" - "plane" "(13 -13 1600) (27 8 1600) (27 8 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.5547 -0.83205 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26849" + "plane" "(-157.195 -204.602 -192) (-78.5965 -102.802 -192) (-102.8 -78.5991 -192)" + "material" "PROPS/PLASTICWALL003A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 247 196" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "126496" + "id" "141180" side { - "id" "24190" - "plane" "(-8 -96 1616) (-8 -27 1616) (13 -13 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "26860" + "plane" "(-102.794 -78.5997 -112) (-204.596 -157.2 -112) (-238.895 -98.8027 -112)" + "material" "MOTEL/ELEVATOR_CARPET001" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24189" - "plane" "(96 -96 1600) (13 -13 1600) (-8 -27 1600)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[0 -1 0 128] 0.25" - "vaxis" "[-1 0 0 -128] 0.25" + "id" "26859" + "plane" "(-204.598 -157.199 -192) (-204.598 -157.199 -112) (-102.794 -78.599 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.791526 0.611135 0 -23.09] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24188" - "plane" "(13 -13 1600) (96 -96 1600) (96 -96 1616)" + "id" "26858" + "plane" "(-118.894 -49.4014 -192) (-118.894 -49.4014 -112) (-238.894 -98.8021 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 0.707107 0 0] 0.25" + "uaxis" "[-0.924708 -0.380678 0 5.63584] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -4073,10 +4313,10 @@ world } side { - "id" "24187" - "plane" "(-8 -96 1600) (-8 -27 1600) (-8 -27 1616)" + "id" "26857" + "plane" "(-238.895 -98.8007 -192) (-238.895 -98.8008 -112) (-204.596 -157.199 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.506428 -0.862282 0 -47.1949] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -4084,64 +4324,64 @@ world } side { - "id" "24186" - "plane" "(96 -96 1600) (-8 -96 1600) (-8 -96 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26856" + "plane" "(-102.795 -78.6013 -192) (-102.795 -78.6016 -112) (-118.896 -49.4024 -112)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS" + "uaxis" "[-0.482868 0.875693 0 -220.139] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "24185" - "plane" "(-8 -27 1600) (13 -13 1600) (13 -13 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.83205 -0.5547 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26855" + "plane" "(-204.594 -157.195 -192) (-102.795 -78.5984 -192) (-118.895 -49.3993 -192)" + "material" "PROPS/PLASTICWALL003A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 157 138" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "126497" + "id" "141182" side { - "id" "24196" - "plane" "(-32 -96 1616) (-32 -32 1616) (-8 -27 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "26866" + "plane" "(-118.897 -49.4013 -112) (-238.9 -98.8017 -112) (-256 -33.2988 -112)" + "material" "MOTEL/ELEVATOR_CARPET001" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24195" - "plane" "(-32 -32 1600) (-32 -96 1600) (-8 -96 1600)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[0 -1 0 128] 0.25" - "vaxis" "[-1 0 0 -128] 0.25" + "id" "26865" + "plane" "(-238.902 -98.8029 -192) (-238.902 -98.8027 -112) (-118.897 -49.4014 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.924712 0.380668 0 -5.63763] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24194" - "plane" "(-8 -27 1600) (-8 -96 1600) (-8 -96 1616)" + "id" "26864" + "plane" "(-128 -17.0994 -192) (-128 -17.0993 -112) (-256 -33.2991 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-0.992086 -0.125562 0 46.9151] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -4149,10 +4389,10 @@ world } side { - "id" "24193" - "plane" "(-32 -96 1600) (-32 -32 1600) (-32 -32 1616)" + "id" "26863" + "plane" "(-256 -33.3009 -192) (-256 -33.3008 -112) (-238.901 -98.7969 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.252612 -0.967567 0 -28.1829] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -4160,64 +4400,64 @@ world } side { - "id" "24192" - "plane" "(-8 -96 1600) (-32 -96 1600) (-32 -96 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26862" + "plane" "(-118.897 -49.3986 -192) (-118.897 -49.3984 -112) (-128 -17.0988 -112)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS" + "uaxis" "[-0.271226 0.962516 0 -102.329] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "24191" - "plane" "(-32 -32 1600) (-8 -27 1600) (-8 -27 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.97898 -0.203954 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26861" + "plane" "(-238.898 -98.8027 -192) (-118.897 -49.4026 -192) (-128 -17.0979 -192)" + "material" "PROPS/PLASTICWALL003A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 147 212" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "126498" + "id" "141186" side { - "id" "24202" - "plane" "(-56 -96 1616) (-56 -27 1616) (-32 -32 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "26872" + "plane" "(-128 -17.0947 -112) (-256 -33.295 -112) (-256 33.3003 -112)" + "material" "MOTEL/ELEVATOR_CARPET001" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24201" - "plane" "(-56 -27 1600) (-56 -96 1600) (-32 -96 1600)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[0 -1 0 128] 0.25" - "vaxis" "[-1 0 0 -128] 0.25" + "id" "26871" + "plane" "(-256 -33.2966 -192) (-256 -33.2964 -112) (-128 -17.0961 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.992086 0.125563 0 -46.9149] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24200" - "plane" "(-32 -32 1600) (-32 -96 1600) (-32 -96 1616)" + "id" "26870" + "plane" "(-128 17.0994 -192) (-128 17.0993 -112) (-256 33.3003 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-0.992085 0.125568 0 15.0596] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -4225,8 +4465,8 @@ world } side { - "id" "24199" - "plane" "(-56 -96 1600) (-56 -27 1600) (-56 -27 1616)" + "id" "26869" + "plane" "(-256 33.3008 -192) (-256 33.3008 -112) (-256 -33.293 -112)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -4236,64 +4476,64 @@ world } side { - "id" "24198" - "plane" "(-32 -96 1600) (-56 -96 1600) (-56 -96 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26868" + "plane" "(-128 -17.0939 -192) (-128 -17.0938 -112) (-128 17.0993 -112)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS" + "uaxis" "[0 1 0 -472.897] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "24197" - "plane" "(-56 -27 1600) (-32 -32 1600) (-32 -32 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.97898 0.203954 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26867" + "plane" "(-256 -33.2935 -192) (-128 -17.0932 -192) (-128 17.0998 -192)" + "material" "PROPS/PLASTICWALL003A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 109 234" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "126499" + "id" "141184" side { - "id" "24208" - "plane" "(-160 -96 1616) (-77 -13 1616) (-56 -27 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "26878" + "plane" "(-128 17.1009 -112) (-256 33.3013 -112) (-238.898 98.8047 -112)" + "material" "MOTEL/ELEVATOR_CARPET001" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24207" - "plane" "(-56 -96 1600) (-56 -27 1600) (-77 -13 1600)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[0 -1 0 128] 0.25" - "vaxis" "[-1 0 0 -128] 0.25" + "id" "26877" + "plane" "(-256 33.3008 -192) (-256 33.3008 -112) (-128 17.1004 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.992086 -0.125563 0 -15.0591] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24206" - "plane" "(-56 -27 1600) (-56 -96 1600) (-56 -96 1616)" + "id" "26876" + "plane" "(-118.899 49.4017 -192) (-118.899 49.4021 -112) (-238.898 98.8014 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-0.924713 0.380665 0 39.0884] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -4301,10 +4541,10 @@ world } side { - "id" "24205" - "plane" "(-160 -96 1600) (-77 -13 1600) (-77 -13 1616)" + "id" "26875" + "plane" "(-238.898 98.8004 -192) (-238.897 98.8008 -112) (-256 33.3047 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707107 -0.707107 0 0] 0.25" + "uaxis" "[-0.252626 -0.967564 0 -27.5121] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -4312,64 +4552,64 @@ world } side { - "id" "24204" - "plane" "(-56 -96 1600) (-160 -96 1600) (-160 -96 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26874" + "plane" "(-128 17.1055 -192) (-128 17.1055 -112) (-118.899 49.4024 -112)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS" + "uaxis" "[0.271203 0.962522 0 -331.478] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "24203" - "plane" "(-77 -13 1600) (-56 -27 1600) (-56 -27 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.83205 0.5547 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26873" + "plane" "(-256 33.3013 -192) (-128 17.1009 -192) (-118.899 49.4034 -192)" + "material" "PROPS/PLASTICWALL003A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 243 100" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "126500" + "id" "141190" side { - "id" "24214" - "plane" "(-160 8 1616) (-91 8 1616) (-77 -13 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "26884" + "plane" "(-118.897 49.3996 -112) (-238.902 98.8008 -112) (-204.605 157.203 -112)" + "material" "MOTEL/ELEVATOR_CARPET001" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24213" - "plane" "(-160 -96 1600) (-77 -13 1600) (-91 8 1600)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[0 -1 0 128] 0.25" - "vaxis" "[-1 0 0 -128] 0.25" + "id" "26883" + "plane" "(-238.902 98.7989 -192) (-238.902 98.7988 -112) (-118.898 49.3981 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.924713 -0.380663 0 -39.0881] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24212" - "plane" "(-77 -13 1600) (-160 -96 1600) (-160 -96 1616)" + "id" "26882" + "plane" "(-102.801 78.5951 -192) (-102.801 78.5951 -112) (-204.606 157.196 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" + "uaxis" "[-0.791529 0.611131 0 51.5405] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -4377,10 +4617,10 @@ world } side { - "id" "24211" - "plane" "(-160 8 1600) (-91 8 1600) (-91 8 1616)" + "id" "26881" + "plane" "(-204.603 157.199 -192) (-204.604 157.199 -112) (-238.9 98.8008 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-0.506435 -0.862278 0 18.4521] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -4388,86 +4628,129 @@ world } side { - "id" "24210" - "plane" "(-160 -96 1600) (-160 8 1600) (-160 8 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26880" + "plane" "(-118.9 49.3946 -192) (-118.9 49.3945 -112) (-102.8 78.5975 -112)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS" + "uaxis" "[0.482806 0.875727 0 -213.69] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "24209" - "plane" "(-91 8 1600) (-77 -13 1600) (-77 -13 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.5547 0.83205 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26879" + "plane" "(-238.902 98.7988 -192) (-118.898 49.3979 -192) (-102.8 78.5979 -192)" + "material" "PROPS/PLASTICWALL003A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 125 214" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "126501" + "id" "141188" side { - "id" "24220" - "plane" "(-91 8 1616) (-160 8 1616) (-160 32 1616)" + "id" "26890" + "plane" "(-102.799 78.5991 -112) (-204.604 157.204 -112) (-157.207 204.609 -112)" + "material" "MOTEL/ELEVATOR_CARPET001" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26889" + "plane" "(-204.605 157.207 -192) (-204.605 157.207 -112) (-102.798 78.6004 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.791523 -0.61114 0 -51.5409] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24219" - "plane" "(-96 32 1600) (-160 32 1600) (-160 8 1600)" + "id" "26888" + "plane" "(-78.5987 102.8 -192) (-78.5987 102.8 -112) (-157.204 204.608 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.611132 0.791528 0 51.5405] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26887" + "plane" "(-157.207 204.609 -192) (-157.207 204.609 -112) (-204.605 157.207 -112)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[0 -1 0 128] 0.25" - "vaxis" "[-1 0 0 -128] 0.25" + "uaxis" "[-0.707107 -0.707107 0 -348] 0.25" + "vaxis" "[0 0 -1 -383] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24218" - "plane" "(-91 8 1600) (-160 8 1600) (-160 8 1616)" - "material" "TOOLS/TOOLSNODRAW" + "id" "26886" + "plane" "(-102.797 78.6016 -192) (-102.797 78.6016 -112) (-78.5979 102.801 -112)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS" + "uaxis" "[0.707103 0.70711 0 -68.447] 0.25" + "vaxis" "[0 0 -1 -448.001] 0.25" + "rotation" "0" + "lightmapscale" "512" + "smoothing_groups" "0" + } + side + { + "id" "26885" + "plane" "(-204.605 157.207 -192) (-102.799 78.5998 -192) (-78.5986 102.8 -192)" + "material" "PROPS/PLASTICWALL003A" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "141192" side { - "id" "24217" - "plane" "(-160 32 1600) (-96 32 1600) (-96 32 1616)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "26896" + "plane" "(-78.6021 102.801 -112) (-157.204 204.606 -112) (-98.8027 238.902 -112)" + "material" "MOTEL/ELEVATOR_CARPET001" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24216" - "plane" "(-160 8 1600) (-160 32 1600) (-160 32 1616)" + "id" "26895" + "plane" "(-157.199 204.609 -192) (-157.199 204.609 -112) (-78.5971 102.804 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.611131 -0.791529 0 -51.5405] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -4475,212 +4758,284 @@ world } side { - "id" "24215" - "plane" "(-96 32 1600) (-91 8 1600) (-91 8 1616)" + "id" "26894" + "plane" "(-49.4004 118.901 -192) (-49.4006 118.901 -112) (-98.8022 238.903 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.203954 0.97898 0 0] 0.25" + "uaxis" "[-0.380676 0.924708 0 39.0892] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } - editor + side { - "color" "0 219 104" - "visgroupshown" "1" - "visgroupautoshown" "1" + "id" "26893" + "plane" "(-98.8046 238.904 -192) (-98.8047 238.904 -112) (-157.207 204.605 -112)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-0.862245 -0.506491 0 -98.4635] 0.25" + "vaxis" "[0 0 -1 -383] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26892" + "plane" "(-78.6014 102.801 -192) (-78.6016 102.801 -112) (-49.4001 118.901 -112)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS" + "uaxis" "[0.87572 0.482819 0 76.7951] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" + "rotation" "0" + "lightmapscale" "512" + "smoothing_groups" "0" + } + side + { + "id" "26891" + "plane" "(-157.203 204.609 -192) (-78.5994 102.802 -192) (-49.4005 118.901 -192)" + "material" "PROPS/PLASTICWALL003A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - } - group - { - "id" "136399" editor { - "color" "213 210 0" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } - group + solid { - "id" "131009" + "id" "141194" + side + { + "id" "26902" + "plane" "(-49.4047 118.897 -112) (-98.8042 238.9 -112) (-33 256 -112)" + "material" "MOTEL/ELEVATOR_CARPET001" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26901" + "plane" "(-98.8064 238.898 -192) (-98.8066 238.898 -112) (-49.4074 118.897 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.380665 -0.924713 0 -39.0884] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26900" + "plane" "(-17.1006 128 -192) (-17.1006 128 -112) (-33 256 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.1233 0.992369 0 14.8056] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26899" + "plane" "(-33 256 -192) (-33 256 -112) (-98.8086 238.899 -112)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-0.966932 -0.255033 0 -381.877] 0.25" + "vaxis" "[0 0 -1 -383] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26898" + "plane" "(-49.4021 118.898 -192) (-49.4023 118.898 -112) (-17.1001 128 -112)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS" + "uaxis" "[0.96252 0.271211 0 194.588] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" + "rotation" "0" + "lightmapscale" "512" + "smoothing_groups" "0" + } + side + { + "id" "26897" + "plane" "(-98.8086 238.898 -192) (-49.409 118.896 -192) (-17.1011 128 -192)" + "material" "PROPS/PLASTICWALL003A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } editor { - "color" "246 247 0" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } - group + solid { - "id" "129905" - editor + "id" "141198" + side { - "color" "224 229 0" - "visgroupshown" "1" - "visgroupautoshown" "1" + "id" "26908" + "plane" "(-17.0986 128 -112) (-33 256 -112) (33 256 -112)" + "material" "MOTEL/ELEVATOR_CARPET001" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26907" + "plane" "(-33 256 -192) (-33 256 -112) (-17.0986 128 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.123276 -0.992372 0 -14.8029] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26906" + "plane" "(17.1001 128 -192) (17.1001 128 -112) (33 256 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.123259 0.992374 0 47.2467] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26905" + "plane" "(33 256 -192) (33 256 -112) (-33 256 -112)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 128] 0.25" + "vaxis" "[0 0 -1 -129] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26904" + "plane" "(-17.1016 128 -192) (-17.1016 128 -112) (17.1003 128 -112)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS" + "uaxis" "[1 0 0 336.012] 0.25" + "vaxis" "[0 0 -1 -448] 0.25" + "rotation" "0" + "lightmapscale" "512" + "smoothing_groups" "0" + } + side + { + "id" "26903" + "plane" "(-33 256 -192) (-17.0991 128 -192) (17.1011 128 -192)" + "material" "PROPS/PLASTICWALL003A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } } -} -entity -{ - "id" "138226" - "classname" "prop_static" - "angles" "0 0 0" - "disableselfshadowing" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/props_bts/hanging_walkway_end_cap.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "-32 288 -92" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 8500]" - } -} -entity -{ - "id" "137900" - "classname" "prop_static" - "angles" "0 180 90" - "disableselfshadowing" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/props_bts/truss_512_cheap.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "-116 332 864" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 8500]" - } -} -entity -{ - "id" "137904" - "classname" "prop_static" - "angles" "0 180 90" - "disableselfshadowing" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/props_bts/truss_512_cheap.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "52 332 864" editor { - "color" "255 255 0" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 8500]" + "logicalpos" "[500 3000]" } } entity { - "id" "135752" + "id" "141569" "classname" "func_detail" solid { - "id" "135741" + "id" "141219" side { - "id" "24730" - "plane" "(100 306 228) (109 306 228) (109 306 224)" + "id" "26914" + "plane" "(16.0009 -144 -192) (16 -144 -864) (33.2988 -256 -864)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -4] 0.25" - "vaxis" "[0 0 -1 -29.4727] 0.25" + "uaxis" "[-0.125563 0.992086 0 15.0591] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24729" - "plane" "(100 352 224) (109 352 224) (109 352 228)" + "id" "26913" + "plane" "(-33.2983 -256 -192) (-33.2989 -256 -864) (-18.1975 -144 -864)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -4] 0.25" - "vaxis" "[0 0 -1 -29.4727] 0.25" + "uaxis" "[-0.125563 -0.992086 0 -46.9149] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24728" - "plane" "(100 306 228) (100 306 224) (100 352 224)" - "material" "CONCRETE/CONCRETE_BTS_FLOOR002B" - "uaxis" "[0 0 -1 460] 0.25" - "vaxis" "[0 1 0 -33.4726] 0.25" + "id" "26912" + "plane" "(33.2997 -256 -192) (33.2988 -256 -864) (-33.2989 -256 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24727" - "plane" "(109 352 228) (109 352 224) (109 306 224)" + "id" "26911" + "plane" "(-18.1969 -144 -192) (-18.1975 -144 -864) (16 -144 -864)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 29.4727] 0.25" - "vaxis" "[0 1 0 -33.4727] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24726" - "plane" "(109 306 228) (100 306 228) (100 352 228)" + "id" "26910" + "plane" "(-18.1975 -144 -864) (-33.2989 -256 -864) (33.2988 -256 -864)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -4] 0.25" - "vaxis" "[0 1 0 -33.4727] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24725" - "plane" "(109 352 224) (100 352 224) (100 306 224)" - "material" "CONCRETE/CONCRETE_BTS_FLOOR002B" - "uaxis" "[1 0 0 188] 0.25" - "vaxis" "[0 1 0 -33.4727] 0.25" + "id" "26909" + "plane" "(16.0009 -144 -192) (33.2997 -256 -192) (-33.2983 -256 -192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4694,69 +5049,69 @@ entity } solid { - "id" "135734" + "id" "141217" side { - "id" "24736" - "plane" "(147 306 228) (156 306 228) (156 306 224)" + "id" "26920" + "plane" "(63.9975 -144.002 -192) (63.9986 -144.003 -864) (98.7998 -238.903 -864)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -29.4727] 0.25" + "uaxis" "[-0.38067 0.924711 0 39.0888] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24735" - "plane" "(147 352 224) (156 352 224) (156 352 228)" + "id" "26919" + "plane" "(33.2967 -256 -192) (33.2985 -256 -864) (15.9998 -144 -864)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -29.4727] 0.25" + "uaxis" "[0.125562 -0.992086 0 -15.0589] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24734" - "plane" "(147 306 228) (147 306 224) (147 352 224)" - "material" "CONCRETE/CONCRETE_BTS_FLOOR002B" - "uaxis" "[0 0 -1 460] 0.25" - "vaxis" "[0 1 0 -33.4726] 0.25" + "id" "26918" + "plane" "(98.7989 -238.902 -192) (98.7998 -238.903 -864) (33.2985 -256 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.967577 0.252575 0 -27.5202] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24733" - "plane" "(156 352 228) (156 352 224) (156 306 224)" + "id" "26917" + "plane" "(15.9979 -144 -192) (15.9998 -144 -864) (63.9986 -144.003 -864)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 29.4727] 0.25" - "vaxis" "[0 1 0 -33.4727] 0.25" + "uaxis" "[-0.962556 -0.271082 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24732" - "plane" "(156 306 228) (147 306 228) (147 352 228)" + "id" "26916" + "plane" "(15.9998 -144 -864) (33.2985 -256 -864) (98.7998 -238.903 -864)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 -33.4727] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24731" - "plane" "(156 352 224) (147 352 224) (147 306 224)" - "material" "CONCRETE/CONCRETE_BTS_FLOOR002B" + "id" "26915" + "plane" "(63.9975 -144.002 -192) (98.7989 -238.902 -192) (33.2967 -256 -192)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 -33.4727] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4768,83 +5123,71 @@ entity "visgroupautoshown" "1" } } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 1500]" - } -} -entity -{ - "id" "135756" - "classname" "func_detail" solid { - "id" "135757" + "id" "141215" side { - "id" "24754" - "plane" "(-220 306 228) (-211 306 228) (-211 306 224)" + "id" "26926" + "plane" "(112.002 -143.998 -192) (112 -144 -864) (157.197 -204.602 -864)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -4] 0.25" - "vaxis" "[0 0 -1 -29.4727] 0.25" + "uaxis" "[-0.611139 0.791523 0 51.5407] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24753" - "plane" "(-220 352 224) (-211 352 224) (-211 352 228)" + "id" "26925" + "plane" "(98.8018 -238.897 -192) (98.7987 -238.898 -864) (63.9974 -144.002 -864)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -4] 0.25" - "vaxis" "[0 0 -1 -29.4727] 0.25" + "uaxis" "[0.380677 -0.924708 0 -39.0893] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24752" - "plane" "(-220 306 228) (-220 306 224) (-220 352 224)" + "id" "26924" + "plane" "(157.199 -204.602 -192) (157.197 -204.602 -864) (98.7987 -238.898 -864)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 29.4727] 0.25" - "vaxis" "[0 1 0 -33.4727] 0.25" + "uaxis" "[0.862278 0.506435 0 -45.5479] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24751" - "plane" "(-211 352 228) (-211 352 224) (-211 306 224)" - "material" "CONCRETE/CONCRETE_BTS_FLOOR002B" - "uaxis" "[0 0 1 -272] 0.25" - "vaxis" "[0 1 0 -33.4726] 0.25" + "id" "26923" + "plane" "(64 -144 -192) (63.9974 -144.002 -864) (112 -144 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.875686 -0.482881 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24750" - "plane" "(-211 306 228) (-220 306 228) (-220 352 228)" + "id" "26922" + "plane" "(63.9974 -144.002 -864) (98.7987 -238.898 -864) (157.197 -204.602 -864)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -4] 0.25" - "vaxis" "[0 1 0 -33.4727] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24749" - "plane" "(-211 352 224) (-220 352 224) (-220 306 224)" - "material" "CONCRETE/CONCRETE_BTS_FLOOR002B" - "uaxis" "[1 0 0 444] 0.25" - "vaxis" "[0 1 0 -33.4727] 0.25" + "id" "26921" + "plane" "(112.002 -143.998 -192) (157.199 -204.602 -192) (98.8018 -238.897 -192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4858,69 +5201,69 @@ entity } solid { - "id" "135758" + "id" "141213" side { - "id" "24760" - "plane" "(-173 306 228) (-164 306 228) (-164 306 224)" + "id" "26932" + "plane" "(143.997 -112.004 -192) (143.999 -112.002 -864) (204.6 -157.199 -864)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -29.4727] 0.25" + "uaxis" "[-0.791524 0.611138 0 51.5407] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24759" - "plane" "(-173 352 224) (-164 352 224) (-164 352 228)" + "id" "26931" + "plane" "(157.198 -204.596 -192) (157.2 -204.595 -864) (112.002 -143.998 -864)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -29.4727] 0.25" + "uaxis" "[0.611139 -0.791523 0 -51.5407] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24758" - "plane" "(-173 306 228) (-173 306 224) (-173 352 224)" + "id" "26930" + "plane" "(204.598 -157.199 -192) (204.6 -157.199 -864) (157.2 -204.595 -864)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 29.4727] 0.25" - "vaxis" "[0 1 0 -33.4727] 0.25" + "uaxis" "[0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24757" - "plane" "(-164 352 228) (-164 352 224) (-164 306 224)" - "material" "CONCRETE/CONCRETE_BTS_FLOOR002B" - "uaxis" "[0 0 1 -272] 0.25" - "vaxis" "[0 1 0 -33.4726] 0.25" + "id" "26929" + "plane" "(112 -144 -192) (112.002 -143.998 -864) (143.999 -112.002 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707114 -0.707099 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24756" - "plane" "(-164 306 228) (-173 306 228) (-173 352 228)" + "id" "26928" + "plane" "(112.002 -143.998 -864) (157.2 -204.595 -864) (204.6 -157.199 -864)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 -33.4727] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24755" - "plane" "(-164 352 224) (-173 352 224) (-173 306 224)" - "material" "CONCRETE/CONCRETE_BTS_FLOOR002B" - "uaxis" "[1 0 0 256] 0.25" - "vaxis" "[0 1 0 -33.4727] 0.25" + "id" "26927" + "plane" "(143.997 -112.004 -192) (204.598 -157.199 -192) (157.198 -204.596 -192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4932,75 +5275,134 @@ entity "visgroupautoshown" "1" } } - editor + solid { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 1500]" - } -} -entity -{ - "id" "135789" - "classname" "prop_static" - "angles" "0 90 180" - "disableselfshadowing" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "drawinfastreflection" "1" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/elevator/elevator_coop_main.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "-32 32 287.589" - editor - { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 500]" + "id" "141211" + side + { + "id" "26938" + "plane" "(144.001 -79.9979 -192) (144.001 -79.9993 -864) (238.9 -98.7996 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.92471 0.380673 0 39.089] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26937" + "plane" "(204.604 -157.199 -192) (204.602 -157.199 -864) (144 -112.002 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.791526 -0.611136 0 -51.5407] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26936" + "plane" "(238.902 -98.7989 -192) (238.9 -98.7996 -864) (204.602 -157.199 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.506438 0.862276 0 -18.4527] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26935" + "plane" "(144 -112 -192) (144 -112.002 -864) (144.001 -79.9993 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.482886 -0.875683 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26934" + "plane" "(144 -112.002 -864) (204.602 -157.199 -864) (238.9 -98.7996 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26933" + "plane" "(144.001 -79.9979 -192) (238.902 -98.7989 -192) (204.604 -157.199 -192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } -} -entity -{ - "id" "131376" - "classname" "func_brush" - "disableflashlight" "0" - "disablereceiveshadows" "0" - "disableshadowdepth" "0" - "disableshadows" "1" - "drawinfastreflection" "0" - "InputFilter" "0" - "invert_exclusion" "0" - "origin" "-32 32 -264.75" - "renderamt" "255" - "rendercolor" "255 255 255" - "renderfx" "0" - "rendermode" "10" - "shadowdepthnocache" "0" - "solidbsp" "1" - "Solidity" "0" - "spawnflags" "2" - "StartDisabled" "0" - "vrad_brush_cast_shadows" "0" solid { - "id" "131377" + "id" "141209" + side + { + "id" "26944" + "plane" "(144 -31.9996 -192) (144 -31.9986 -864) (256 -33.2983 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.992086 0.125561 0 15.0588] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26943" + "plane" "(238.898 -98.8007 -192) (238.898 -98.801 -864) (144 -80.0002 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.924709 -0.380675 0 -39.0892] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26942" + "plane" "(256 -33.2992 -192) (256 -33.2983 -864) (238.898 -98.801 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.252584 0.967575 0 27.5188] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26941" + "plane" "(144 -80 -192) (144 -80.0002 -864) (144 -31.9986 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.271154 -0.962536 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } side { - "id" "24574" - "plane" "(-160 -96 -113.499) (-160 160 -113.499) (96 160 -113.499)" - "material" "GLASS/GLASSWINDOW_FROSTED_002" + "id" "26940" + "plane" "(144 -80.0002 -864) (238.898 -98.801 -864) (256 -33.2983 -864)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -5009,900 +5411,1514 @@ entity } side { - "id" "24573" - "plane" "(-160 160 -416) (-160 -96 -416) (96 -96 -416)" - "material" "TOOLS/TOOLSPLAYERCLIP" + "id" "26939" + "plane" "(144 -31.9996 -192) (256 -33.2992 -192) (238.898 -98.8007 -192)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0.00180054] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "141207" + side + { + "id" "26950" + "plane" "(144 32.0007 -192) (144 32.0008 -864) (256 33.2989 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.992086 -0.125562 0 46.9151] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26949" + "plane" "(256 -33.2997 -192) (256 -33.2998 -864) (144 -32.0001 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.992086 -0.125562 0 -15.0589] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24572" - "plane" "(-160 -96 -416) (-160 160 -416) (-160 160 -113.498)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 -0.00180054] 0.25" - "vaxis" "[0 0 -1 -6.35431] 0.100767" + "id" "26948" + "plane" "(256 33.2988 -192) (256 33.2989 -864) (256 -33.2998 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24571" - "plane" "(96 160 -416) (96 -96 -416) (96 -96 -113.498)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 -0.00180054] 0.25" - "vaxis" "[0 0 -1 -6.35431] 0.100767" + "id" "26947" + "plane" "(144 -32 -192) (144 -32.0001 -864) (144 32.0008 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24570" - "plane" "(-160 160 -416) (96 160 -416) (96 160 -113.498)" - "material" "TOOLS/TOOLSPLAYERCLIP" + "id" "26946" + "plane" "(144 -32.0001 -864) (256 -33.2998 -864) (256 33.2989 -864)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -6.35431] 0.100767" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24569" - "plane" "(96 -96 -416) (-160 -96 -416) (-160 -96 -113.498)" - "material" "TOOLS/TOOLSPLAYERCLIP" + "id" "26945" + "plane" "(144 32.0007 -192) (256 33.2988 -192) (256 -33.2997 -192)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -6.35431] 0.100767" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 30 220" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "129731" - "classname" "light" - "_constant_attn" "3000" - "_distance" "0" - "_fifty_percent_distance" "0" - "_hardfalloff" "0" - "_light" "245 241 226 25" - "_lightHDR" "-1 -1 -1 1" - "_lightscaleHDR" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "0" - "spawnflags" "0" - "style" "0" - "origin" "176 80 144" - editor + solid { - "color" "224 229 0" - "groupid" "129905" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 3500]" + "id" "141205" + side + { + "id" "26956" + "plane" "(143.998 96.0063 -192) (144 96.0038 -864) (238.904 98.7997 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.92471 -0.380672 0 5.63686] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26955" + "plane" "(256 33.2981 -192) (256 33.2995 -864) (144 32.0015 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.992086 0.125563 0 -46.9149] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26954" + "plane" "(238.902 98.8025 -192) (238.904 98.7997 -864) (256 33.2995 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.252589 0.967574 0 28.1809] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26953" + "plane" "(144 32 -192) (144 32.0015 -864) (144 96.0038 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.271091 -0.962554 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26952" + "plane" "(144 32.0015 -864) (256 33.2995 -864) (238.904 98.7997 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26951" + "plane" "(143.998 96.0063 -192) (238.902 98.8025 -192) (256 33.2981 -192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } -} -entity -{ - "id" "129746" - "classname" "light" - "_constant_attn" "3000" - "_distance" "0" - "_fifty_percent_distance" "0" - "_hardfalloff" "0" - "_light" "245 241 226 20" - "_lightHDR" "-1 -1 -1 1" - "_lightscaleHDR" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "0" - "spawnflags" "0" - "style" "0" - "origin" "96 -128 144" - editor + solid { - "color" "224 229 0" - "groupid" "129905" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 3500]" - } -} -entity -{ - "id" "129751" - "classname" "light" - "_constant_attn" "3000" - "_distance" "0" - "_fifty_percent_distance" "0" - "_hardfalloff" "0" - "_light" "245 241 226 20" - "_lightHDR" "-1 -1 -1 1" - "_lightscaleHDR" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "0" - "spawnflags" "0" - "style" "0" - "origin" "-96 -160 144" - editor - { - "color" "224 229 0" - "groupid" "129905" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 3500]" - } -} -entity -{ - "id" "129756" - "classname" "light" - "_constant_attn" "3000" - "_distance" "0" - "_fifty_percent_distance" "0" - "_hardfalloff" "0" - "_light" "245 241 226 25" - "_lightHDR" "-1 -1 -1 1" - "_lightscaleHDR" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "0" - "spawnflags" "0" - "style" "0" - "origin" "-240 16 144" - editor - { - "color" "224 229 0" - "groupid" "129905" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 3500]" + "id" "141203" + side + { + "id" "26962" + "plane" "(144.003 111.997 -192) (144 112 -864) (204.595 157.202 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.791524 -0.611138 0 23.0894] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26961" + "plane" "(238.903 98.7953 -192) (238.901 98.7975 -864) (143.998 96.002 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.924711 0.380669 0 -5.63737] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26960" + "plane" "(204.597 157.199 -192) (204.595 157.202 -864) (238.901 98.7975 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.506444 0.862273 0 47.1958] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26959" + "plane" "(144 96 -192) (143.998 96.002 -864) (144 112 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.482786 -0.875739 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26958" + "plane" "(143.998 96.002 -864) (238.901 98.7975 -864) (204.595 157.202 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26957" + "plane" "(144.003 111.997 -192) (204.597 157.199 -192) (238.903 98.7953 -192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } -} -entity -{ - "id" "129969" - "classname" "light" - "_constant_attn" "10000" - "_light" "255 255 255 20" - "_lightHDR" "-1 -1 -1 1" - "_lightscaleHDR" "1" - "_quadratic_attn" "1" - "origin" "-192 112 96" - editor + solid { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "id" "141201" + side + { + "id" "26968" + "plane" "(112.004 144.002 -192) (112.004 144.002 -864) (157.195 204.602 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.61114 -0.791522 0 40.9111] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26967" + "plane" "(204.595 157.202 -192) (204.597 157.2 -864) (143.999 111.995 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.791528 0.611133 0 -23.0906] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26966" + "plane" "(157.195 204.602 -192) (157.195 204.602 -864) (204.597 157.2 -864)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-0.706991 0.707222 0 -163.981] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26965" + "plane" "(143.997 111.997 -192) (143.999 111.995 -864) (112.004 144.002 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707109 -0.707104 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26964" + "plane" "(143.999 111.995 -864) (204.597 157.2 -864) (157.195 204.602 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26963" + "plane" "(112.004 144.002 -192) (157.195 204.602 -192) (204.595 157.202 -192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } -} -entity -{ - "id" "129130" - "classname" "linked_portal_door" - "angles" "0 270 0" - "height" "128" - "partnername" "@exit_portal_chamber_side" - "renderamt" "255" - "rendercolor" "255 255 255" - "targetname" "@exit_portal_elevator_side" - "width" "128" - "origin" "-31.999 685.001 96" - editor + solid { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 -15768]" + "id" "141199" + side + { + "id" "26974" + "plane" "(63.9989 144.003 -192) (64.0015 144.002 -864) (98.799 238.9 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.380668 -0.924712 0 -5.63763] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26973" + "plane" "(157.195 204.602 -192) (157.194 204.601 -864) (111.999 144.001 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.611145 0.791519 0 -40.9121] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26972" + "plane" "(98.7971 238.902 -192) (98.799 238.9 -864) (157.194 204.601 -864)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-0.862599 0.505886 0 99.1661] 0.25" + "vaxis" "[0 0 -1 -385] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26971" + "plane" "(112 144 -192) (111.999 144.001 -864) (64.0015 144.002 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.875697 -0.482861 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26970" + "plane" "(111.999 144.001 -864) (157.194 204.601 -864) (98.799 238.9 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26969" + "plane" "(157.195 204.602 -192) (112 144 -192) (63.9989 144.003 -192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } -} -entity -{ - "id" "129133" - "classname" "prop_testchamber_door" - "angles" "0 90 0" - "targetname" "@exit_airlock_door" - connections + solid { - "OnFullyClosed" "@exit_portal_chamber_sideClose0-1" - } - "origin" "-32 688 32" - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 500]" - } -} -entity -{ - "id" "125870" - "classname" "env_cubemap" - "cubemapsize" "6" - "origin" "-32 32 -31" - editor - { - "color" "0 0 255" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "id" "141197" + side + { + "id" "26980" + "plane" "(-18.1987 144 -192) (-18.1987 144 -864) (-33 256 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.123276 -0.992372 0 -14.8029] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26979" + "plane" "(33 256 -192) (33 256 -864) (16 144 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.123259 0.992374 0 47.2467] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26978" + "plane" "(-33 256 -192) (-33 256 -864) (33 256 -864)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 128] 0.25" + "vaxis" "[0 0 -1 -129] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26977" + "plane" "(16 144 -192) (16 144 -864) (-18.1987 144 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26976" + "plane" "(16 144 -864) (33 256 -864) (-33 256 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26975" + "plane" "(33 256 -192) (16 144 -192) (-18.1987 144 -192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } -} -entity -{ - "id" "125877" - "classname" "prop_static" - "angles" "0 180 -180" - "disableselfshadowing" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/props_underground/truss_64_256.mdl" - "renderamt" "255" - "rendercolor" "192 192 192" - "screenspacefade" "0" - "shadowdepthnocache" "0" - "skin" "0" - "solid" "6" - "origin" "-32 -64 1471.54" - editor + solid { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[4500 -4768]" + "id" "141195" + side + { + "id" "26986" + "plane" "(16.0008 144 -192) (16.0008 144 -864) (33 256 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.123267 -0.992374 0 -47.2457] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26985" + "plane" "(98.7957 238.896 -192) (98.7965 238.896 -864) (64.0007 144 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.380666 0.924712 0 5.63789] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26984" + "plane" "(33 256 -192) (33 256 -864) (98.7965 238.896 -864)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-0.967404 0.253237 0 -130.758] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26983" + "plane" "(64 144 -192) (64.0007 144 -864) (16.0008 144 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.962489 -0.271319 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26982" + "plane" "(64.0007 144 -864) (98.7965 238.896 -864) (33 256 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26981" + "plane" "(98.7957 238.896 -192) (64 144 -192) (16.0008 144 -192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } -} -entity -{ - "id" "125886" - "classname" "prop_static" - "angles" "0 180 -180" - "disableselfshadowing" "0" - "disablevertexlighting" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "model" "models/elevator/elevator_central_pipe.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "-32 32 822.626" - editor + solid { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 -10768]" + "id" "141193" + side + { + "id" "26992" + "plane" "(-48.0068 143.996 -192) (-48.0043 143.996 -864) (-98.8042 238.899 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.380665 -0.924713 0 -39.0884] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26991" + "plane" "(-33 256 -192) (-33 256 -864) (-18.2006 144 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.1233 0.992369 0 14.8056] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26990" + "plane" "(-98.8064 238.898 -192) (-98.8042 238.899 -864) (-33 256 -864)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-0.966932 -0.255033 0 -381.877] 0.25" + "vaxis" "[0 0 -1 -383] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26989" + "plane" "(-18.2008 144 -192) (-18.2006 144 -864) (-48.0043 143.996 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.96252 0.271211 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26988" + "plane" "(-18.2006 144 -864) (-33 256 -864) (-98.8042 238.899 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26987" + "plane" "(-33 256 -192) (-18.2008 144 -192) (-48.0068 143.996 -192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } -} -entity -{ - "id" "125897" - "classname" "prop_static" - "angles" "0 180 -180" - "disableselfshadowing" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/props_underground/truss_64_256.mdl" - "renderamt" "255" - "rendercolor" "192 192 192" - "screenspacefade" "0" - "shadowdepthnocache" "0" - "skin" "0" - "solid" "6" - "origin" "-32 -64 1215.79" - editor + solid { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[4500 -4768]" - } -} -entity -{ - "id" "125901" - "classname" "prop_static" - "angles" "90 90 0" - "disableselfshadowing" "0" - "disablevertexlighting" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "model" "models/props_backstage/triple_wallpipe_corner_d.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "-162 7.08124e-006 383.788" - editor - { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 -10768]" + "id" "141191" + side + { + "id" "26998" + "plane" "(-112.002 144.001 -192) (-112 144 -864) (-157.199 204.61 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.611131 -0.791529 0 -51.5405] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26997" + "plane" "(-98.8021 238.903 -192) (-98.8012 238.904 -864) (-47.9984 143.999 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.380676 0.924708 0 39.0892] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26996" + "plane" "(-157.199 204.609 -192) (-157.199 204.61 -864) (-98.8012 238.904 -864)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-0.862245 -0.506491 0 -98.4635] 0.25" + "vaxis" "[0 0 -1 -383] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26995" + "plane" "(-48 144 -192) (-47.9984 143.999 -864) (-112 144 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.87572 0.482819 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26994" + "plane" "(-47.9984 143.999 -864) (-98.8012 238.904 -864) (-157.199 204.61 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26993" + "plane" "(-98.8021 238.903 -192) (-48 144 -192) (-112.002 144.001 -192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } -} -entity -{ - "id" "125905" - "classname" "prop_static" - "angles" "0 75 0" - "disableselfshadowing" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/props_bts/pipe_64_256.mdl" - "renderamt" "255" - "rendercolor" "136 136 136" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "64 112 1215.79" - editor + solid { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "id" "141189" + side + { + "id" "27004" + "plane" "(-143.998 64.0011 -192) (-143.997 64.0022 -864) (-238.901 98.7997 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.924713 -0.380663 0 -39.0881] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27003" + "plane" "(-204.606 157.196 -192) (-204.605 157.195 -864) (-144 112 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.791529 0.611131 0 51.5405] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27002" + "plane" "(-238.902 98.7989 -192) (-238.901 98.7997 -864) (-204.605 157.195 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.506435 -0.862278 0 18.4521] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27001" + "plane" "(-144 112 -192) (-144 112 -864) (-143.997 64.0022 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.482806 0.875727 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27000" + "plane" "(-144 112 -864) (-204.605 157.195 -864) (-238.901 98.7997 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26999" + "plane" "(-204.606 157.196 -192) (-144 112 -192) (-143.998 64.0011 -192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } -} -entity -{ - "id" "125909" - "classname" "prop_static" - "angles" "0 180 -180" - "disableselfshadowing" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/props_underground/truss_64_256.mdl" - "renderamt" "255" - "rendercolor" "192 192 192" - "screenspacefade" "0" - "shadowdepthnocache" "0" - "skin" "0" - "solid" "6" - "origin" "-32 -64 959.79" - editor + solid { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[4500 -4768]" + "id" "141187" + side + { + "id" "27010" + "plane" "(-143.997 112.005 -192) (-143.997 112.005 -864) (-204.605 157.207 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.791523 -0.61114 0 -51.5409] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27009" + "plane" "(-157.204 204.608 -192) (-157.205 204.607 -864) (-112.004 143.998 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.611132 0.791528 0 51.5405] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27008" + "plane" "(-204.605 157.207 -192) (-204.605 157.207 -864) (-157.205 204.607 -864)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-0.707107 -0.707107 0 -348] 0.25" + "vaxis" "[0 0 -1 -383] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27007" + "plane" "(-112.003 143.998 -192) (-112.004 143.998 -864) (-143.997 112.005 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707103 0.70711 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27006" + "plane" "(-112.004 143.998 -864) (-157.205 204.607 -864) (-204.605 157.207 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27005" + "plane" "(-157.204 204.608 -192) (-112.003 143.998 -192) (-143.997 112.005 -192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } -} -entity -{ - "id" "125917" - "classname" "prop_static" - "angles" "0 180 90" - "disableselfshadowing" "0" - "disablevertexlighting" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "model" "models/props_backstage/triple_wallpipe_straight_c.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "-120 5.24537e-006 511.788" - editor + solid { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 -10768]" + "id" "141185" + side + { + "id" "27016" + "plane" "(-144 -15.9969 -192) (-144 -15.9989 -864) (-256 -33.2986 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.992086 0.125563 0 -46.9149] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27015" + "plane" "(-256 33.3004 -192) (-256 33.3007 -864) (-144 18.1992 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.992085 0.125568 0 15.0596] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27014" + "plane" "(-256 -33.2966 -192) (-256 -33.2986 -864) (-256 33.3007 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27013" + "plane" "(-144 18.1988 -192) (-144 18.1992 -864) (-144 -15.9989 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27012" + "plane" "(-144 18.1992 -864) (-256 33.3007 -864) (-256 -33.2986 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27011" + "plane" "(-256 33.3004 -192) (-144 18.1988 -192) (-144 -15.9969 -192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } -} -entity -{ - "id" "125921" - "classname" "prop_static" - "angles" "0 180 90" - "disableselfshadowing" "0" - "disablevertexlighting" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "model" "models/props_backstage/triple_wallpipe_straight_c.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "-120 5.24537e-006 639.788" - editor + solid { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 -10768]" + "id" "141183" + side + { + "id" "27022" + "plane" "(-144 18.1999 -864) (-256 33.301 -864) (-256 33.3008 -192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.992086 -0.125563 0 -15.0591] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27021" + "plane" "(-238.9 98.7965 -864) (-144 64 -864) (-143.999 64.0047 -192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.924713 0.380665 0 39.0884] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27020" + "plane" "(-256 33.301 -864) (-238.9 98.7965 -864) (-238.898 98.801 -192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.252626 -0.967564 0 -27.5121] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27019" + "plane" "(-144 64 -864) (-144 18.1999 -864) (-144 18.1998 -192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.271203 0.962522 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27018" + "plane" "(-238.9 98.7965 -864) (-256 33.301 -864) (-144 18.1999 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27017" + "plane" "(-143.999 64.0047 -192) (-144 18.1998 -192) (-256 33.3008 -192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } -} -entity -{ - "id" "125933" - "classname" "prop_static" - "angles" "0 180 90" - "disableselfshadowing" "0" - "disablevertexlighting" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "model" "models/props_backstage/triple_wallpipe_straight_b.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "-120 5.24537e-006 767.788" - editor + solid { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 -10768]" + "id" "141181" + side + { + "id" "27028" + "plane" "(-144.003 -64.0002 -192) (-144.003 -64.0021 -864) (-238.902 -98.8048 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.924712 0.380668 0 -5.63763] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27027" + "plane" "(-256 -33.2993 -192) (-256 -33.3009 -864) (-144 -16.0016 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.992086 -0.125562 0 46.9151] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27026" + "plane" "(-238.902 -98.8029 -192) (-238.902 -98.8048 -864) (-256 -33.3009 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.252612 -0.967567 0 -28.1829] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27025" + "plane" "(-144 -16 -192) (-144 -16.0016 -864) (-144.003 -64.0021 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.271226 0.962516 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27024" + "plane" "(-144 -16.0016 -864) (-256 -33.3009 -864) (-238.902 -98.8048 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27023" + "plane" "(-256 -33.2993 -192) (-144 -16 -192) (-144.003 -64.0002 -192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } -} -entity -{ - "id" "125937" - "classname" "prop_static" - "angles" "0 180 -180" - "disableselfshadowing" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/props_underground/truss_64_256.mdl" - "renderamt" "255" - "rendercolor" "192 192 192" - "screenspacefade" "0" - "shadowdepthnocache" "0" - "skin" "0" - "solid" "6" - "origin" "-32 -64 703.788" - editor + solid { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[4500 -4768]" - } -} -entity -{ - "id" "125949" - "classname" "prop_static" - "angles" "0 345 0" - "disableselfshadowing" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/props_bts/pipe_64_256.mdl" - "renderamt" "255" - "rendercolor" "136 136 136" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "64 -64 1471.79" - editor - { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "id" "141179" + side + { + "id" "27034" + "plane" "(-143.998 -112.003 -192) (-144 -112 -864) (-204.599 -157.196 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.791526 0.611135 0 -23.09] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27033" + "plane" "(-238.894 -98.802 -192) (-238.894 -98.801 -864) (-144.001 -63.9993 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.924708 -0.380678 0 5.63584] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27032" + "plane" "(-204.598 -157.199 -192) (-204.599 -157.196 -864) (-238.894 -98.801 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.506428 -0.862282 0 -47.1949] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27031" + "plane" "(-144 -64 -192) (-144.001 -63.9993 -864) (-144 -112 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.482868 0.875693 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27030" + "plane" "(-144.001 -63.9993 -864) (-238.894 -98.801 -864) (-204.599 -157.196 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27029" + "plane" "(-238.894 -98.802 -192) (-144 -64 -192) (-143.998 -112.003 -192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } -} -entity -{ - "id" "125953" - "classname" "prop_static" - "angles" "0 345 0" - "disableselfshadowing" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/props_bts/pipe_64_256.mdl" - "renderamt" "255" - "rendercolor" "136 136 136" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "64 -64 1215.79" - editor + solid { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "id" "141177" + side + { + "id" "27040" + "plane" "(-112 -144 -864) (-157.195 -204.602 -864) (-157.195 -204.602 -192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.611136 0.791526 0 -40.9101] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27039" + "plane" "(-204.598 -157.203 -864) (-143.999 -112.008 -864) (-144.001 -112.005 -192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.791534 -0.611124 0 23.0925] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27038" + "plane" "(-157.195 -204.602 -864) (-204.598 -157.203 -864) (-204.6 -157.201 -192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 -53.0194] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27037" + "plane" "(-143.999 -112.008 -864) (-112 -144 -864) (-112 -144 -192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707106 0.707108 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27036" + "plane" "(-204.598 -157.203 -864) (-157.195 -204.602 -864) (-112 -144 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27035" + "plane" "(-157.195 -204.602 -192) (-204.6 -157.201 -192) (-144.001 -112.005 -192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } -} -entity -{ - "id" "125965" - "classname" "prop_static" - "angles" "0 345 0" - "disableselfshadowing" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/props_bts/pipe_64_256.mdl" - "renderamt" "255" - "rendercolor" "136 136 136" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "64 -64 959.79" - editor + solid { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "id" "141175" + side + { + "id" "27046" + "plane" "(-49.0988 -144 -192) (-49.0961 -144.001 -864) (-98.8 -238.896 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.380671 0.924711 0 5.63712] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27045" + "plane" "(-157.196 -204.599 -192) (-157.196 -204.6 -864) (-112.005 -144.001 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.611131 -0.791529 0 40.9091] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27044" + "plane" "(-98.8025 -238.895 -192) (-98.8 -238.896 -864) (-157.196 -204.6 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.862276 -0.506439 0 -47.1955] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27043" + "plane" "(-112.006 -144.001 -192) (-112.005 -144.001 -864) (-49.0961 -144.001 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.87572 0.482819 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27042" + "plane" "(-112.005 -144.001 -864) (-157.196 -204.6 -864) (-98.8 -238.896 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27041" + "plane" "(-49.0988 -144 -192) (-98.8025 -238.895 -192) (-157.196 -204.599 -192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } -} -entity -{ - "id" "125969" - "classname" "prop_static" - "angles" "0 345 0" - "disableselfshadowing" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/props_bts/pipe_64_256.mdl" - "renderamt" "255" - "rendercolor" "136 136 136" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "64 -64 703.788" - editor + solid { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "125981" - "classname" "prop_static" - "angles" "0 345 0" - "disableselfshadowing" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/props_bts/pipe_64_256.mdl" - "renderamt" "255" - "rendercolor" "136 136 136" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "64 -64 447.788" - editor - { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "id" "141173" + side + { + "id" "27052" + "plane" "(-18.1997 -144 -864) (-33.3005 -256 -864) (-33.3003 -256 -192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.12556 0.992086 0 46.9153] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27051" + "plane" "(-98.7958 -238.901 -864) (-49.0988 -144 -864) (-49.0985 -144 -192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.38067 -0.924711 0 -5.63725] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27050" + "plane" "(-33.3005 -256 -864) (-98.7958 -238.901 -864) (-98.7956 -238.901 -192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.967574 -0.252588 0 -28.1807] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27049" + "plane" "(-49.0988 -144 -864) (-18.1997 -144 -864) (-18.1995 -144 -192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.962551 0.271099 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27048" + "plane" "(-98.7958 -238.901 -864) (-33.3005 -256 -864) (-18.1997 -144 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27047" + "plane" "(-33.3003 -256 -192) (-98.7956 -238.901 -192) (-49.0985 -144 -192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } -} -entity -{ - "id" "125997" - "classname" "prop_static" - "angles" "0 180 90" - "disableselfshadowing" "0" - "disablevertexlighting" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "model" "models/props_backstage/triple_wallpipe_straight_a.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "-120 5.24537e-006 895.79" editor { - "color" "213 210 0" - "groupid" "136399" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 -10768]" + "logicalpos" "[500 3500]" } } -entity +hidden { - "id" "126005" - "classname" "prop_static" - "angles" "0 75 0" - "disableselfshadowing" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/props_bts/pipe_64_256.mdl" - "renderamt" "255" - "rendercolor" "136 136 136" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "64 112 703.788" - editor - { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" + entity + { + "id" "138299" + "classname" "func_instance" + "angles" "0 0 0" + "file" "instances/bee2/clean/elevator_sp/elevator_exit/stair_dn.vmf" + "fixup_style" "0" + "origin" "0 0 0" + editor + { + "color" "220 30 220" + "visgroupid" "13" + "visgroupshown" "0" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } } } -entity +hidden { - "id" "126013" - "classname" "prop_static" - "angles" "0 90 0" - "disableselfshadowing" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/props_bts/pipe_64_corner.mdl" - "renderamt" "255" - "rendercolor" "136 136 136" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "64 111.7 1343.79" - editor - { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 3500]" + entity + { + "id" "138315" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/bee2/clean/elevator_sp/elevator_exit/logic_up.vmf" + "fixup_style" "0" + "origin" "0 0 0" + editor + { + "color" "220 30 220" + "visgroupid" "18" + "visgroupshown" "0" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } } } -entity +hidden { - "id" "126037" - "classname" "prop_static" - "angles" "-90 0 0" - "disableselfshadowing" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/props_bts/pipe_64_corner.mdl" - "renderamt" "255" - "rendercolor" "136 136 136" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "16 112 1391.79" - editor - { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 3500]" + entity + { + "id" "138327" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/bee2/clean/elevator_sp/elevator_exit/logic_dn.vmf" + "fixup_style" "0" + "origin" "0 0 0" + editor + { + "color" "220 30 220" + "visgroupid" "19" + "visgroupshown" "0" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } } } -entity +hidden { - "id" "126045" - "classname" "prop_static" - "angles" "0 90 180" - "disableselfshadowing" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/props_bts/pipe_64_corner.mdl" - "renderamt" "255" - "rendercolor" "136 136 136" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "64 112 575.788" - editor - { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 3500]" + entity + { + "id" "138353" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/bee2/clean/elevator_sp/elevator_exit/stair_up.vmf" + "fixup_style" "0" + "replace01" "$no_player_start ???" + "origin" "0 0 0" + editor + { + "color" "220 30 220" + "visgroupid" "20" + "visgroupshown" "0" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } } } entity { - "id" "126053" + "id" "137900" "classname" "prop_static" - "angles" "0 75 0" + "angles" "0 180 90" "disableselfshadowing" "0" "disableshadows" "0" "disablevertexlighting" "0" + "drawinfastreflection" "0" "fademaxdist" "0" "fademindist" "-1" "fadescale" "1" "ignorenormals" "0" "maxdxlevel" "0" "mindxlevel" "0" - "model" "models/props_bts/pipe_64_256.mdl" + "model" "models/props_bts/truss_512_cheap.mdl" "renderamt" "255" - "rendercolor" "136 136 136" + "rendercolor" "255 255 255" "screenspacefade" "0" "skin" "0" "solid" "6" - "origin" "64 112 959.79" - editor - { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "126101" - "classname" "vgui_movie_display" - "angles" "0 90 0" - "forcedslave" "1" - "groupname" "departure_signs" - "height" "128" - "looping" "0" - "moviefilename" "media/" - "stretch" "1" - "targetname" "@departure_sign_12" - "width" "64" - "origin" "-0.0996185 -207.3 32" + "origin" "-84 300 864" editor { - "color" "200 200 0" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "logicalpos" "[0 8500]" } } entity { - "id" "126103" + "id" "137904" "classname" "prop_static" - "angles" "0 180 0" + "angles" "0 180 90" "disableselfshadowing" "0" "disableshadows" "0" "disablevertexlighting" "0" @@ -5913,17 +6929,16 @@ entity "ignorenormals" "0" "maxdxlevel" "0" "mindxlevel" "0" - "model" "models/props_bts/hanging_walkway_end_cap.mdl" + "model" "models/props_bts/truss_512_cheap.mdl" "renderamt" "255" "rendercolor" "255 255 255" "screenspacefade" "0" "skin" "0" "solid" "6" - "origin" "-32 608 36" + "origin" "84 300 864" editor { - "color" "213 210 0" - "groupid" "136399" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 8500]" @@ -5931,249 +6946,73 @@ entity } entity { - "id" "126115" - "classname" "prop_static" - "angles" "0 180 -180" - "disableselfshadowing" "0" - "disablevertexlighting" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "model" "models/elevator/elevator_central_pipe.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "-32 32 1498.63" - editor - { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 -10768]" - } -} -entity -{ - "id" "126119" - "classname" "prop_static" - "angles" "0 165 90" - "disableselfshadowing" "0" - "disableshadows" "1" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/anim_wp/framework/squarebeam_off.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "0" - "origin" "34 288 320" - editor - { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 8500]" - } -} -entity -{ - "id" "126123" - "classname" "prop_static" - "angles" "0 165 90" - "disableselfshadowing" "0" - "disableshadows" "1" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/anim_wp/framework/squarebeam_off.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "0" - "origin" "34 288 192" - editor - { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 8500]" - } -} -entity -{ - "id" "126127" - "classname" "prop_static" - "angles" "0 165 90" - "disableselfshadowing" "0" - "disableshadows" "1" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/anim_wp/framework/squarebeam_off.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "0" - "origin" "34 288 0" - editor - { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 8500]" - } -} -entity -{ - "id" "126131" - "classname" "prop_static" - "angles" "0 165 90" - "disableselfshadowing" "0" - "disableshadows" "1" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/anim_wp/framework/squarebeam_off.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "0" - "origin" "34 288 -64" - editor - { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 8500]" - } -} -entity -{ - "id" "126147" - "classname" "prop_static" - "angles" "0 180 90" - "disableselfshadowing" "0" - "disablevertexlighting" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "model" "models/props_backstage/triple_wallpipe_straight_a.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "-120 5.24537e-006 1023.79" - editor - { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 -10768]" - } -} -entity -{ - "id" "126151" + "id" "135752" "classname" "func_detail" solid { - "id" "135290" + "id" "135741" side { - "id" "24676" - "plane" "(-72 288 160) (-72 296 160) (-71 296 160)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 -20] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "id" "24730" + "plane" "(141 274 228) (141 274 224) (132 274 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 0 -1 -29.4727] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24675" - "plane" "(-65 288 -96) (-71 296 -96) (-72 296 -96)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 -20] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "id" "24729" + "plane" "(132 320 228) (132 320 224) (141 320 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 0 -1 -29.4727] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24674" - "plane" "(-71 296 -96) (-65 288 -96) (-65 288 160)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24728" + "plane" "(132 274 228) (132 274 224) (132 320 224)" + "material" "CONCRETE/CONCRETE_BTS_FLOOR002B" + "uaxis" "[0 0 -1 460] 0.25" + "vaxis" "[0 1 0 94.5274] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24673" - "plane" "(-72 288 -96) (-72 296 -96) (-72 296 160)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24727" + "plane" "(141 320 228) (141 320 224) (141 274 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 29.4727] 0.25" + "vaxis" "[0 1 0 30.5273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24672" - "plane" "(-72 296 -96) (-71 296 -96) (-71 296 160)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 -20] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24726" + "plane" "(141 274 228) (132 274 228) (132 320 228)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 1 0 30.5273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24671" - "plane" "(-65 288 -96) (-72 288 -96) (-72 288 160)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 -20] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24725" + "plane" "(141 320 224) (132 320 224) (132 274 224)" + "material" "CONCRETE/CONCRETE_BTS_FLOOR002B" + "uaxis" "[1 0 0 60] 0.25" + "vaxis" "[0 1 0 94.5273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -6187,69 +7026,69 @@ entity } solid { - "id" "135291" + "id" "135734" side { - "id" "24682" - "plane" "(1 288 160) (7 296 160) (8 296 160)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "id" "24736" + "plane" "(188 274 228) (188 274 224) (179 274 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -29.4727] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24681" - "plane" "(8 288 -96) (8 296 -96) (7 296 -96)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 1 0 -32] 0.25" + "id" "24735" + "plane" "(179 320 228) (179 320 224) (188 320 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -29.4727] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24680" - "plane" "(8 296 -96) (8 288 -96) (8 288 160)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24734" + "plane" "(179 274 228) (179 274 224) (179 320 224)" + "material" "CONCRETE/CONCRETE_BTS_FLOOR002B" + "uaxis" "[0 0 -1 460] 0.25" + "vaxis" "[0 1 0 94.5274] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24679" - "plane" "(1 288 -96) (7 296 -96) (7 296 160)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24733" + "plane" "(188 320 228) (188 320 224) (188 274 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 29.4727] 0.25" + "vaxis" "[0 1 0 30.5273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24678" - "plane" "(7 296 -96) (8 296 -96) (8 296 160)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24732" + "plane" "(188 274 228) (179 274 228) (179 320 228)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 30.5273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24677" - "plane" "(8 288 -96) (1 288 -96) (1 288 160)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 -48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24731" + "plane" "(188 320 224) (179 320 224) (179 274 224)" + "material" "CONCRETE/CONCRETE_BTS_FLOOR002B" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 1 0 94.5273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -6261,71 +7100,83 @@ entity "visgroupautoshown" "1" } } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "135756" + "classname" "func_detail" solid { - "id" "135293" + "id" "135757" side { - "id" "24694" - "plane" "(7 544 160) (7 608 160) (32 608 160)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "24754" + "plane" "(-179 274 228) (-179 274 224) (-188 274 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 0 -1 -29.4727] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24693" - "plane" "(7 608 32) (7 544 32) (32 544 32)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "24753" + "plane" "(-188 320 228) (-188 320 224) (-179 320 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 0 -1 -29.4727] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24692" - "plane" "(32 608 32) (32 544 32) (32 544 160)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24752" + "plane" "(-188 274 228) (-188 274 224) (-188 320 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 29.4727] 0.25" + "vaxis" "[0 1 0 30.5273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24691" - "plane" "(7 544 32) (7 608 32) (7 608 160)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24751" + "plane" "(-179 320 228) (-179 320 224) (-179 274 224)" + "material" "CONCRETE/CONCRETE_BTS_FLOOR002B" + "uaxis" "[0 0 1 -272] 0.25" + "vaxis" "[0 1 0 94.5274] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24690" - "plane" "(7 608 32) (32 608 32) (32 608 160)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24750" + "plane" "(-179 274 228) (-188 274 228) (-188 320 228)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 1 0 30.5273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24689" - "plane" "(32 544 32) (7 544 32) (7 544 160)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24749" + "plane" "(-179 320 224) (-188 320 224) (-188 274 224)" + "material" "CONCRETE/CONCRETE_BTS_FLOOR002B" + "uaxis" "[1 0 0 316] 0.25" + "vaxis" "[0 1 0 94.5273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -6339,221 +7190,69 @@ entity } solid { - "id" "135295" + "id" "135758" side { - "id" "24706" - "plane" "(-96 544 160) (-96 608 160) (-71 608 160)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 -28] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "id" "24760" + "plane" "(-132 274 228) (-132 274 224) (-141 274 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -29.4727] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24705" - "plane" "(-96 608 32) (-96 544 32) (-71 544 32)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 -28] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24704" - "plane" "(-71 608 32) (-71 544 32) (-71 544 160)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24703" - "plane" "(-96 544 32) (-96 608 32) (-96 608 160)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24702" - "plane" "(-96 608 32) (-71 608 32) (-71 608 160)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 -28] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24701" - "plane" "(-71 544 32) (-96 544 32) (-96 544 160)" - "material" "TOOLS/TOOLSPLAYERCLIP" + "id" "24759" + "plane" "(-141 320 228) (-141 320 224) (-132 320 224)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "135292" - side - { - "id" "24688" - "plane" "(7 296 160) (7 544 160) (32 544 160)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24687" - "plane" "(7 544 -96) (7 296 -96) (32 296 -96)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24686" - "plane" "(32 544 -96) (32 296 -96) (32 296 160)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24685" - "plane" "(7 296 -96) (7 544 -96) (7 544 160)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24684" - "plane" "(32 296 -96) (7 296 -96) (7 296 160)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24683" - "plane" "(7 544 -96) (32 544 -96) (32 544 160)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "135294" - side - { - "id" "24700" - "plane" "(-96 296 160) (-96 544 160) (-71 544 160)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 -28] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24699" - "plane" "(-96 544 -96) (-96 296 -96) (-71 296 -96)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 -28] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -29.4727] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24698" - "plane" "(-71 544 -96) (-71 296 -96) (-71 296 160)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24758" + "plane" "(-141 274 228) (-141 274 224) (-141 320 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 29.4727] 0.25" + "vaxis" "[0 1 0 30.5273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24697" - "plane" "(-96 296 -96) (-96 544 -96) (-96 544 160)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24757" + "plane" "(-132 320 228) (-132 320 224) (-132 274 224)" + "material" "CONCRETE/CONCRETE_BTS_FLOOR002B" + "uaxis" "[0 0 1 -272] 0.25" + "vaxis" "[0 1 0 94.5274] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24696" - "plane" "(-71 296 -96) (-96 296 -96) (-96 296 160)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 -28] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24756" + "plane" "(-132 274 228) (-141 274 228) (-141 320 228)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 30.5273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24695" - "plane" "(-96 544 -96) (-71 544 -96) (-71 544 160)" - "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24755" + "plane" "(-132 320 224) (-141 320 224) (-141 274 224)" + "material" "CONCRETE/CONCRETE_BTS_FLOOR002B" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 1 0 94.5273] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -6570,3507 +7269,490 @@ entity "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 2500]" + "logicalpos" "[0 1500]" } } entity { - "id" "126156" + "id" "135789" "classname" "prop_static" - "angles" "0 165 90" + "angles" "0 90 180" "disableselfshadowing" "0" - "disableshadows" "1" + "disableshadows" "0" "disablevertexlighting" "0" - "drawinfastreflection" "0" + "drawinfastreflection" "1" "fademaxdist" "0" "fademindist" "-1" "fadescale" "1" "ignorenormals" "0" "maxdxlevel" "0" "mindxlevel" "0" - "model" "models/anim_wp/framework/squarebeam_off.mdl" + "model" "models/elevator/elevator_coop_main.mdl" "renderamt" "255" "rendercolor" "255 255 255" "screenspacefade" "0" "skin" "0" - "solid" "0" - "origin" "34 288 128" + "solid" "6" + "origin" "0 0 287.589" editor { "color" "213 210 0" "groupid" "136399" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 8500]" + "logicalpos" "[0 500]" } } entity { - "id" "126160" - "classname" "prop_static" - "angles" "0 180 90" - "disableselfshadowing" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/props_bts/truss_1024.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "-116 332 96" + "id" "129731" + "classname" "light" + "_constant_attn" "3000" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "245 241 226 25" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "_zero_percent_distance" "0" + "angles" "0 0 0" + "spawnflags" "0" + "style" "0" + "origin" "208 48 144" editor { - "color" "213 210 0" - "groupid" "136399" + "color" "224 229 0" + "groupid" "129905" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 8500]" + "logicalpos" "[0 3500]" } } entity { - "id" "126164" - "classname" "prop_static" - "angles" "0 180 90" - "disableselfshadowing" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/props_bts/truss_1024.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "52 332 96" + "id" "129746" + "classname" "light" + "_constant_attn" "3000" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "245 241 226 20" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "_zero_percent_distance" "0" + "angles" "0 0 0" + "spawnflags" "0" + "style" "0" + "origin" "128 -160 144" editor { - "color" "213 210 0" - "groupid" "136399" + "color" "224 229 0" + "groupid" "129905" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 8500]" + "logicalpos" "[0 3500]" } } entity { - "id" "126168" + "id" "129751" "classname" "light" - "_constant_attn" "0" + "_constant_attn" "3000" "_distance" "0" - "_fifty_percent_distance" "180" + "_fifty_percent_distance" "0" "_hardfalloff" "0" - "_light" "255 247 217 50" + "_light" "245 241 226 20" "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" - "_zero_percent_distance" "220" + "_shadoworiginoffset" "0 0 0" + "_zero_percent_distance" "0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" - "origin" "128 320 192" + "origin" "-64 -192 144" editor { - "color" "220 30 220" + "color" "224 229 0" + "groupid" "129905" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 1000]" + "logicalpos" "[0 3500]" } } entity { - "id" "126173" + "id" "129756" "classname" "light" - "_constant_attn" "0" + "_constant_attn" "3000" "_distance" "0" - "_fifty_percent_distance" "180" + "_fifty_percent_distance" "0" "_hardfalloff" "0" - "_light" "255 247 217 50" + "_light" "245 241 226 25" "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" - "_zero_percent_distance" "220" + "_shadoworiginoffset" "0 0 0" + "_zero_percent_distance" "0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" - "origin" "-192 320 192" + "origin" "-208 -16 144" editor { - "color" "220 30 220" + "color" "224 229 0" + "groupid" "129905" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 1000]" + "logicalpos" "[0 3500]" } } entity { - "id" "126178" - "classname" "func_detail" - solid + "id" "129969" + "classname" "light" + "_constant_attn" "10000" + "_light" "255 255 255 20" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" + "origin" "-160 80 96" + editor { - "id" "137523" - side - { - "id" "24766" - "plane" "(-179.15 223.557 352) (-223.506 179.1 352) (-236.601 189.196 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24765" - "plane" "(-179.15 223.557 352) (-189.203 236.598 352) (-189.257 236.54 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.610576 0.791958 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24764" - "plane" "(-223.506 179.1 352) (-223.504 179.101 288) (-236.598 189.195 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.791992 -0.610531 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24763" - "plane" "(-189.203 236.598 352) (-236.601 189.196 352) (-236.598 189.195 288)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[-0.707092 -0.707122 0 -348.101] 0.25" - "vaxis" "[0 0 -1 -383.379] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24762" - "plane" "(-179.15 223.557 352) (-179.205 223.501 288) (-223.504 179.101 288)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 -1 0 45.8047] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24761" - "plane" "(-223.504 179.101 288) (-179.205 223.501 288) (-189.257 236.54 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" } - solid +} +entity +{ + "id" "125870" + "classname" "env_cubemap" + "cubemapsize" "6" + "origin" "0 0 -31" + editor { - "id" "137524" - side - { - "id" "24772" - "plane" "(-0.803712 272 288) (-63.2013 272 288) (-65 288 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24771" - "plane" "(-0.803712 272 288) (1 288 288) (1 288 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.111903 0.993719 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24770" - "plane" "(-65 288 288) (-63.2013 272 288) (-63.1997 272 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.111813 -0.993729 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24769" - "plane" "(1 288 288) (-65 288 288) (-65 288 160)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01_NOSPEC" - "uaxis" "[-1 0 0 -508] 0.25" - "vaxis" "[0 0 -1 -384] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24768" - "plane" "(-63.2013 272 288) (-0.803712 272 288) (-0.801714 272 160)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24767" - "plane" "(-63.1997 272 160) (-0.801714 272 160) (1 288 160)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS" - "uaxis" "[0 -1 0 128] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "0 0 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" } - solid +} +entity +{ + "id" "126101" + "classname" "vgui_movie_display" + "angles" "0 90 0" + "forcedslave" "1" + "groupname" "departure_signs" + "height" "128" + "looping" "0" + "moviefilename" "media/" + "stretch" "1" + "targetname" "@departure_sign_12" + "width" "64" + "origin" "31.9004 -239.3 32" + editor { - "id" "137525" - side - { - "id" "24778" - "plane" "(-124.697 -191.703 352) (-63.1999 -207.902 352) (-65.2993 -224 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24777" - "plane" "(-124.697 -191.703 352) (-130.797 -206.902 352) (-130.798 -206.901 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.372464 -0.928046 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24776" - "plane" "(-65.2993 -224 352) (-63.1999 -207.902 352) (-63.2008 -207.902 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.129318 0.991603 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24775" - "plane" "(-130.797 -206.902 352) (-65.2993 -224 352) (-65.3003 -224 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.967571 -0.252598 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24774" - "plane" "(-63.1999 -207.902 352) (-124.697 -191.703 352) (-124.698 -191.702 288)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24773" - "plane" "(-130.798 -206.901 288) (-65.3003 -224 288) (-63.2008 -207.902 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "200 200 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" } - solid - { - "id" "137526" - side - { - "id" "24784" - "plane" "(-271.897 0.801073 352) (-255.699 -60.6961 352) (-270.902 -66.7968 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24783" - "plane" "(-271.897 0.801073 352) (-288 -1.29883 352) (-288 -1.29891 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.991604 -0.129311 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24782" - "plane" "(-270.902 -66.7968 352) (-255.699 -60.6961 352) (-255.699 -60.696 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.928066 0.372416 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24781" - "plane" "(-288 -1.29883 352) (-270.902 -66.7968 352) (-270.902 -66.7969 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.252575 -0.967577 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24780" - "plane" "(-255.699 -60.6961 352) (-271.897 0.801073 352) (-271.897 0.800935 288)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24779" - "plane" "(-288 -1.29891 288) (-270.902 -66.7969 288) (-255.699 -60.696 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "137527" - side - { - "id" "24790" - "plane" "(-255.781 -60.7313 352) (-223.499 -115.203 352) (-236.601 -125.204 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24789" - "plane" "(-255.781 -60.7313 352) (-270.906 -66.8008 352) (-270.921 -66.7689 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.928068 -0.372412 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24788" - "plane" "(-236.601 -125.204 352) (-223.499 -115.203 352) (-223.5 -115.202 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.79489 0.606754 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24787" - "plane" "(-270.906 -66.8008 352) (-236.601 -125.204 352) (-236.601 -125.203 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.506431 -0.86228 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24786" - "plane" "(-223.499 -115.203 352) (-255.781 -60.7313 352) (-255.799 -60.7009 288)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24785" - "plane" "(-270.921 -66.7689 288) (-236.601 -125.203 288) (-223.5 -115.202 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "137528" - side - { - "id" "24796" - "plane" "(-223.502 -115.1 352) (-179.195 -159.508 352) (-189.189 -172.601 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24795" - "plane" "(-223.502 -115.1 352) (-236.594 -125.195 352) (-236.54 -125.25 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.791924 -0.610619 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24794" - "plane" "(-179.195 -159.508 352) (-179.152 -159.45 288) (-189.191 -172.603 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.606729 0.794909 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24793" - "plane" "(-236.594 -125.195 352) (-189.189 -172.601 352) (-189.191 -172.603 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707099 -0.707114 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24792" - "plane" "(-223.502 -115.1 352) (-223.391 -115.11 288) (-179.152 -159.45 288)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24791" - "plane" "(-236.54 -125.25 288) (-189.191 -172.603 288) (-179.152 -159.45 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "137529" - side - { - "id" "24802" - "plane" "(-179.1 -159.5 352) (-124.698 -191.701 352) (-130.8 -206.904 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24801" - "plane" "(-179.1 -159.5 352) (-189.203 -172.605 352) (-189.199 -172.604 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.610558 -0.791972 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24800" - "plane" "(-130.8 -206.904 352) (-124.698 -191.701 352) (-124.701 -191.7 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.372454 0.928051 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24799" - "plane" "(-189.203 -172.605 352) (-130.8 -206.904 352) (-130.801 -206.898 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.862274 -0.506441 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24798" - "plane" "(-124.698 -191.701 352) (-179.1 -159.5 352) (-179.098 -159.502 288)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24797" - "plane" "(-189.199 -172.604 288) (-130.801 -206.898 288) (-124.701 -191.7 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "137530" - side - { - "id" "24808" - "plane" "(-63.2017 -207.9 352) (-0.800222 -207.9 352) (1.29937 -224 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24807" - "plane" "(-63.2017 -207.9 352) (-65.3013 -224 352) (-65.2988 -224 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.129315 -0.991604 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24806" - "plane" "(1.29937 -224 352) (-0.800222 -207.9 352) (-0.80077 -207.9 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.129315 0.991604 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24805" - "plane" "(-65.3013 -224 352) (1.29937 -224 352) (1.29883 -224 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24804" - "plane" "(-0.800222 -207.9 352) (-63.2017 -207.9 352) (-63.1992 -207.9 288)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-1 0 0 -2.42969] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24803" - "plane" "(-65.2988 -224 288) (1.29883 -224 288) (-0.80077 -207.9 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "137531" - side - { - "id" "24814" - "plane" "(-271.9 63.1963 352) (-271.9 0.799921 352) (-288 -1.29971 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24813" - "plane" "(-271.9 63.1963 352) (-288 65.2959 352) (-288 65.3008 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.991604 0.129315 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24812" - "plane" "(-288 -1.29971 352) (-271.9 0.799921 352) (-271.9 0.799335 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.991603 0.129316 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24811" - "plane" "(-288 65.2959 352) (-288 -1.29971 352) (-288 -1.30029 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24810" - "plane" "(-271.9 0.799921 352) (-271.9 63.1963 352) (-271.9 63.2012 288)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24809" - "plane" "(-288 65.3008 288) (-288 -1.30029 288) (-271.9 0.799335 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "137532" - side - { - "id" "24820" - "plane" "(60.702 -191.699 352) (115.101 -159.501 352) (125.2 -172.6 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24819" - "plane" "(66.8008 -206.898 352) (66.7998 -206.899 288) (60.7204 -191.748 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.372401 -0.928072 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24818" - "plane" "(125.2 -172.6 352) (115.101 -159.501 352) (115.131 -159.542 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.610569 0.791963 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24817" - "plane" "(66.8008 -206.898 352) (125.2 -172.6 352) (125.199 -172.602 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.862282 0.506429 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24816" - "plane" "(115.101 -159.501 352) (60.702 -191.699 352) (60.7204 -191.748 288)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-1 0 0 -18.5117] 0.25" - "vaxis" "[0 0 -1 -63.944] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24815" - "plane" "(66.7998 -206.899 288) (125.199 -172.602 288) (115.131 -159.542 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "137533" - side - { - "id" "24826" - "plane" "(115.153 -159.555 352) (159.511 -115.099 352) (172.609 -125.196 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24825" - "plane" "(115.153 -159.555 352) (125.207 -172.594 352) (125.262 -172.543 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.610602 -0.791938 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24824" - "plane" "(159.511 -115.099 352) (159.509 -115.099 288) (172.609 -125.2 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.791949 0.610587 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24823" - "plane" "(125.207 -172.594 352) (172.609 -125.196 352) (172.609 -125.2 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24822" - "plane" "(115.153 -159.555 352) (115.206 -159.5 288) (159.509 -115.099 288)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 -1 0 24.9492] 0.25" - "vaxis" "[0 0 -1 -54.4055] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24821" - "plane" "(159.509 -115.099 288) (115.206 -159.5 288) (125.262 -172.543 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "137534" - side - { - "id" "24832" - "plane" "(159.5 -115.097 352) (191.698 -60.7014 352) (206.898 -66.8017 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24831" - "plane" "(159.5 -115.097 352) (172.598 -125.195 352) (172.6 -125.199 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.791949 -0.610587 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24830" - "plane" "(206.898 -66.8017 352) (191.698 -60.7014 352) (191.697 -60.7021 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.928051 0.372454 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24829" - "plane" "(172.598 -125.195 352) (206.898 -66.8017 352) (206.898 -66.8027 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.506436 0.862278 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24828" - "plane" "(191.698 -60.7014 352) (159.5 -115.097 352) (159.499 -115.099 288)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 -1 0 37.6953] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24827" - "plane" "(191.697 -60.7021 288) (159.499 -115.099 288) (172.6 -125.199 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "137535" - side - { - "id" "24838" - "plane" "(191.701 -60.7016 352) (207.901 0.801689 352) (224 -1.29842 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24837" - "plane" "(191.701 -60.7016 352) (206.902 -66.8008 352) (206.902 -66.8004 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.92808 -0.37238 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24836" - "plane" "(224 -1.29842 352) (207.901 0.801689 352) (207.901 0.801278 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.991598 0.129355 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24835" - "plane" "(206.902 -66.8008 352) (224 -1.29842 352) (224 -1.29883 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.252568 0.967579 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24834" - "plane" "(207.901 0.801689 352) (191.701 -60.7016 352) (191.701 -60.7013 288)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 -1 0 45.0273] 0.25" - "vaxis" "[0 0 -1 -63.9961] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24833" - "plane" "(207.901 0.801278 288) (191.701 -60.7013 288) (206.902 -66.8004 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "137536" - side - { - "id" "24844" - "plane" "(207.9 0.799792 352) (207.9 63.2002 352) (224 65.2998 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24843" - "plane" "(207.9 0.799792 352) (224 -1.2998 352) (224 -1.29899 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.991603 -0.129315 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24842" - "plane" "(224 65.2998 352) (207.9 63.2002 352) (207.9 63.1992 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.991604 -0.129315 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24841" - "plane" "(224 -1.2998 352) (224 65.2998 352) (224 65.2988 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24840" - "plane" "(207.9 63.2002 352) (207.9 0.799792 352) (207.9 0.800621 288)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24839" - "plane" "(207.9 63.1992 288) (207.9 0.800621 288) (224 -1.29899 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "137537" - side - { - "id" "24850" - "plane" "(207.898 63.1985 352) (191.797 124.703 352) (206.9 130.805 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24849" - "plane" "(207.898 63.1985 352) (224 65.2983 352) (224 65.2995 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.991603 0.129317 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24848" - "plane" "(206.9 130.805 352) (191.797 124.703 352) (191.707 124.667 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.927189 -0.374595 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24847" - "plane" "(224 65.2983 352) (206.9 130.805 352) (206.898 130.805 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.252591 0.967573 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24846" - "plane" "(191.797 124.703 352) (207.898 63.1985 352) (207.802 63.187 288)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24845" - "plane" "(191.707 124.667 288) (207.802 63.187 288) (224 65.2995 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "137538" - side - { - "id" "24856" - "plane" "(191.799 124.699 352) (159.5 179.199 352) (172.602 189.201 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24855" - "plane" "(191.799 124.699 352) (206.902 130.801 352) (206.902 130.801 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.927188 0.374596 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24854" - "plane" "(172.602 189.201 352) (159.5 179.199 352) (159.5 179.199 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.794867 -0.606784 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24853" - "plane" "(206.902 130.801 352) (172.602 189.201 352) (172.605 189.203 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.506435 0.862278 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24852" - "plane" "(159.5 179.199 352) (191.799 124.699 352) (191.799 124.699 288)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24851" - "plane" "(159.5 179.199 288) (191.799 124.699 288) (206.902 130.801 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "137539" - side - { - "id" "24862" - "plane" "(159.505 179.097 352) (115.201 223.502 352) (125.197 236.6 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24861" - "plane" "(159.505 179.097 352) (172.602 189.195 352) (172.543 189.254 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.79194 0.610599 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24860" - "plane" "(115.201 223.502 352) (115.153 223.449 288) (125.195 236.606 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.606709 -0.794924 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24859" - "plane" "(172.602 189.195 352) (125.197 236.6 352) (125.195 236.606 288)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[-0.707121 0.707092 0 -344.869] 0.25" - "vaxis" "[0 0 -1 -383.645] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24858" - "plane" "(159.505 179.097 352) (159.389 179.112 288) (115.153 223.449 288)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24857" - "plane" "(115.153 223.449 288) (159.389 179.112 288) (172.543 189.254 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "137540" - side - { - "id" "24868" - "plane" "(115.098 223.5 352) (60.6965 255.7 352) (66.7971 270.902 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24867" - "plane" "(115.098 223.5 352) (125.199 236.602 352) (125.197 236.603 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.610595 0.791943 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24866" - "plane" "(66.7971 270.902 352) (60.6965 255.7 352) (60.6978 255.7 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.372437 -0.928057 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24865" - "plane" "(125.199 236.602 352) (66.7971 270.902 352) (66.7988 270.902 288)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[-0.862645 0.50581 0 -76.4883] 0.25" - "vaxis" "[0 0 -1 -383.646] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24864" - "plane" "(60.6965 255.7 352) (115.098 223.5 352) (115.096 223.501 288)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24863" - "plane" "(60.6978 255.7 288) (115.096 223.501 288) (125.197 236.603 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "137541" - side - { - "id" "24874" - "plane" "(60.6968 255.698 352) (-0.800188 271.896 352) (1 288 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24873" - "plane" "(60.6968 255.698 352) (66.7969 270.898 352) (66.7971 270.899 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.372433 0.928059 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24872" - "plane" "(1 288 352) (-0.800188 271.896 352) (-0.799803 271.896 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.111068 -0.993813 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24871" - "plane" "(66.7969 270.898 352) (1 288 352) (1 288 288)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[-0.967305 0.253616 0 -287.285] 0.25" - "vaxis" "[0 0 -1 -383.944] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24870" - "plane" "(-0.800188 271.896 352) (60.6968 255.698 352) (60.6968 255.698 288)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24869" - "plane" "(-0.799803 271.896 288) (60.6968 255.698 288) (66.7971 270.899 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "137542" - side - { - "id" "24880" - "plane" "(-63.199 271.899 352) (-124.737 255.789 352) (-130.802 270.902 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24879" - "plane" "(-63.199 271.899 352) (-65 288 352) (-65 288 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.111164 0.993802 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24878" - "plane" "(-130.802 270.902 352) (-124.737 255.789 352) (-124.739 255.789 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.372438 -0.928057 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24877" - "plane" "(-65 288 352) (-130.802 270.902 352) (-130.803 270.898 288)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[-0.967462 -0.253018 0 -473.076] 0.25" - "vaxis" "[0 0 -1 -384] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24876" - "plane" "(-124.737 255.789 352) (-63.199 271.899 352) (-63.1989 271.899 288)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24875" - "plane" "(-124.739 255.789 288) (-63.1989 271.899 288) (-65 288 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "137543" - side - { - "id" "24886" - "plane" "(-124.698 255.697 352) (-179.099 223.498 352) (-189.203 236.603 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24885" - "plane" "(-130.801 270.902 352) (-130.802 270.904 288) (-124.718 255.745 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.372463 0.928047 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24884" - "plane" "(-189.203 236.603 352) (-179.099 223.498 352) (-179.129 223.539 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.610593 -0.791945 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24883" - "plane" "(-130.801 270.902 352) (-189.203 236.603 352) (-189.203 236.605 288)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[-0.862692 -0.50573 0 -144.466] 0.25" - "vaxis" "[0 0 -1 -383.391] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24882" - "plane" "(-179.099 223.498 352) (-124.698 255.697 352) (-124.718 255.745 288)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24881" - "plane" "(-179.129 223.539 288) (-124.718 255.745 288) (-130.802 270.904 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "137544" - side - { - "id" "24892" - "plane" "(-255.699 124.696 352) (-271.898 63.1999 352) (-288 65.2997 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24891" - "plane" "(-255.699 124.696 352) (-270.898 130.797 352) (-270.899 130.797 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.928042 0.372475 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24890" - "plane" "(-288 65.2997 352) (-271.898 63.1999 352) (-271.898 63.199 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.991604 -0.129311 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24889" - "plane" "(-270.898 130.797 352) (-288 65.2997 352) (-288 65.2993 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.252623 -0.967565 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24888" - "plane" "(-271.898 63.1999 352) (-255.699 124.696 352) (-255.699 124.697 288)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24887" - "plane" "(-270.899 130.797 288) (-288 65.2993 288) (-271.898 63.199 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "137545" - side - { - "id" "24898" - "plane" "(-223.496 179.104 352) (-255.698 124.701 352) (-270.902 130.803 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24897" - "plane" "(-223.496 179.104 352) (-236.598 189.207 352) (-236.601 189.203 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.791913 0.610633 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24896" - "plane" "(-270.902 130.803 352) (-255.698 124.701 352) (-255.698 124.701 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.928047 -0.372463 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24895" - "plane" "(-236.598 189.207 352) (-270.902 130.803 352) (-270.902 130.803 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.506437 -0.862277 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24894" - "plane" "(-255.698 124.701 352) (-223.496 179.104 352) (-223.499 179.1 288)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 -1 0 38.4336] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24893" - "plane" "(-236.601 189.203 288) (-270.902 130.803 288) (-255.698 124.701 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "137546" - side - { - "id" "24904" - "plane" "(-0.798357 -207.927 352) (60.7004 -191.7 352) (66.8004 -206.9 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24903" - "plane" "(-0.798357 -207.927 352) (1.29736 -224 352) (1.29811 -224 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.129296 -0.991606 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24902" - "plane" "(66.8004 -206.9 352) (60.7004 -191.7 352) (60.6999 -191.7 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.372433 0.928059 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24901" - "plane" "(1.29736 -224 352) (66.8004 -206.9 352) (66.8008 -206.902 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.967578 0.25257 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24900" - "plane" "(60.7004 -191.7 352) (-0.798357 -207.927 352) (-0.797459 -207.927 288)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-1 0 0 -3.95313] 0.25" - "vaxis" "[0 0 -1 -63.9879] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24899" - "plane" "(1.29811 -224 288) (66.8008 -206.902 288) (60.6999 -191.7 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "137547" - side - { - "id" "24910" - "plane" "(-0.803712 272 352) (-63.2013 272 352) (-65 288 352)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24909" - "plane" "(-0.803712 272 352) (1 288 352) (1 288 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.111903 0.993719 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24908" - "plane" "(-65 288 352) (-63.2013 272 352) (-63.1997 272 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.111813 -0.993729 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24907" - "plane" "(1 288 352) (-65 288 352) (-65 288 288)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[-1 0 0 -508] 0.25" - "vaxis" "[0 0 -1 -384] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24906" - "plane" "(-63.2013 272 352) (-0.803712 272 352) (-0.801714 272 288)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24905" - "plane" "(-63.1997 272 288) (-0.801714 272 288) (1 288 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "137548" - side - { - "id" "24916" - "plane" "(-124.697 -191.703 288) (-63.1999 -207.902 288) (-65.2993 -224 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24915" - "plane" "(-124.697 -191.703 288) (-130.797 -206.902 288) (-130.798 -206.901 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.372464 -0.928046 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24914" - "plane" "(-65.2993 -224 288) (-63.1999 -207.902 288) (-63.2008 -207.902 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.129318 0.991603 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24913" - "plane" "(-130.797 -206.902 288) (-65.2993 -224 288) (-65.3003 -224 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.967571 -0.252598 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24912" - "plane" "(-63.1999 -207.902 288) (-124.697 -191.703 288) (-124.698 -191.702 160)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24911" - "plane" "(-130.798 -206.901 160) (-65.3003 -224 160) (-63.2008 -207.902 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "137549" - side - { - "id" "24922" - "plane" "(-271.9 0.80025 288) (-255.8 -60.6979 288) (-270.901 -66.798 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24921" - "plane" "(-271.9 0.80025 288) (-288 -1.29932 288) (-288 -1.29946 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.991604 -0.129311 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24920" - "plane" "(-270.901 -66.798 288) (-255.8 -60.6979 288) (-255.8 -60.6982 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.927205 0.374553 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24919" - "plane" "(-288 -1.29932 288) (-270.901 -66.798 288) (-270.902 -66.7988 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.252583 -0.967575 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24918" - "plane" "(-255.8 -60.6979 288) (-271.9 0.80025 288) (-271.9 0.800015 160)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24917" - "plane" "(-288 -1.29946 160) (-270.902 -66.7988 160) (-255.8 -60.6982 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "137550" - side - { - "id" "24928" - "plane" "(-255.783 -60.7299 288) (-223.499 -115.204 288) (-236.598 -125.204 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24927" - "plane" "(-255.783 -60.7299 288) (-270.902 -66.7969 288) (-270.902 -66.7974 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.928065 -0.372417 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24926" - "plane" "(-236.598 -125.204 288) (-223.499 -115.204 288) (-223.499 -115.204 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.794881 0.606765 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24925" - "plane" "(-270.902 -66.7969 288) (-236.598 -125.204 288) (-236.598 -125.203 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.506438 -0.862276 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24924" - "plane" "(-223.499 -115.204 288) (-255.783 -60.7299 288) (-255.783 -60.7304 160)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24923" - "plane" "(-270.902 -66.7974 160) (-236.598 -125.203 160) (-223.499 -115.204 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "137551" - side - { - "id" "24934" - "plane" "(-223.501 -115.101 288) (-179.196 -159.503 288) (-189.195 -172.602 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24933" - "plane" "(-223.501 -115.101 288) (-236.598 -125.199 288) (-236.601 -125.196 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.79194 -0.610599 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24932" - "plane" "(-189.195 -172.602 288) (-179.196 -159.503 288) (-179.197 -159.502 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.606756 0.794888 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24931" - "plane" "(-236.598 -125.199 288) (-189.195 -172.602 288) (-189.195 -172.602 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 -0.707107 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24930" - "plane" "(-179.196 -159.503 288) (-223.501 -115.101 288) (-223.504 -115.098 160)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24929" - "plane" "(-236.601 -125.196 160) (-189.195 -172.602 160) (-179.197 -159.502 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "137552" - side - { - "id" "24940" - "plane" "(-179.1 -159.5 288) (-124.698 -191.701 288) (-130.8 -206.904 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24939" - "plane" "(-179.1 -159.5 288) (-189.203 -172.605 288) (-189.199 -172.604 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.610558 -0.791972 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24938" - "plane" "(-130.8 -206.904 288) (-124.698 -191.701 288) (-124.701 -191.7 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.372454 0.928051 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24937" - "plane" "(-189.203 -172.605 288) (-130.8 -206.904 288) (-130.801 -206.898 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.862274 -0.506441 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24936" - "plane" "(-124.698 -191.701 288) (-179.1 -159.5 288) (-179.098 -159.502 160)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24935" - "plane" "(-189.199 -172.604 160) (-130.801 -206.898 160) (-124.701 -191.7 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "137553" - side - { - "id" "24946" - "plane" "(-63.2017 -207.9 288) (-0.800222 -207.9 288) (1.29937 -224 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24945" - "plane" "(-63.2017 -207.9 288) (-65.3013 -224 288) (-65.2988 -224 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.129315 -0.991604 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24944" - "plane" "(1.29937 -224 288) (-0.800222 -207.9 288) (-0.80077 -207.9 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.129315 0.991604 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24943" - "plane" "(-65.3013 -224 288) (1.29937 -224 288) (1.29883 -224 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24942" - "plane" "(-0.800222 -207.9 288) (-63.2017 -207.9 288) (-63.1992 -207.9 160)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-1 0 0 -2.42969] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24941" - "plane" "(-65.2988 -224 160) (1.29883 -224 160) (-0.80077 -207.9 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "137554" - side - { - "id" "24952" - "plane" "(-271.9 63.1963 288) (-271.9 0.799921 288) (-288 -1.29971 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24951" - "plane" "(-271.9 63.1963 288) (-288 65.2959 288) (-288 65.3008 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.991604 0.129315 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24950" - "plane" "(-288 -1.29971 288) (-271.9 0.799921 288) (-271.9 0.799335 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.991603 0.129316 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24949" - "plane" "(-288 65.2959 288) (-288 -1.29971 288) (-288 -1.30029 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24948" - "plane" "(-271.9 0.799921 288) (-271.9 63.1963 288) (-271.9 63.2012 160)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24947" - "plane" "(-288 65.3008 160) (-288 -1.30029 160) (-271.9 0.799335 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "137555" - side - { - "id" "24958" - "plane" "(60.7006 -191.702 288) (115.132 -159.543 288) (125.199 -172.6 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24957" - "plane" "(60.7006 -191.702 288) (66.7988 -206.898 288) (66.8005 -206.898 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.372438 -0.928057 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24956" - "plane" "(125.199 -172.6 288) (115.132 -159.543 288) (115.131 -159.544 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.610572 0.791961 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24955" - "plane" "(66.7988 -206.898 288) (125.199 -172.6 288) (125.195 -172.598 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.862282 0.506429 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24954" - "plane" "(115.132 -159.543 288) (60.7006 -191.702 288) (60.702 -191.702 160)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-1 0 0 -18.5117] 0.25" - "vaxis" "[0 0 -1 -63.944] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24953" - "plane" "(66.8005 -206.898 160) (125.195 -172.598 160) (115.131 -159.544 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "137556" - side - { - "id" "24964" - "plane" "(115.1 -159.498 288) (159.499 -115.2 288) (172.602 -125.202 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24963" - "plane" "(115.1 -159.498 288) (125.199 -172.598 288) (125.264 -172.541 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.610592 -0.791945 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24962" - "plane" "(172.602 -125.202 288) (159.499 -115.2 288) (159.501 -115.198 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.794912 0.606724 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24961" - "plane" "(125.199 -172.598 288) (172.602 -125.202 288) (172.605 -125.199 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707099 0.707114 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24960" - "plane" "(159.499 -115.2 288) (115.1 -159.498 288) (115.161 -159.437 160)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 -1 0 2.35547] 0.25" - "vaxis" "[0 0 -1 -23.2629] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24959" - "plane" "(159.501 -115.198 160) (115.161 -159.437 160) (125.264 -172.541 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "137557" - side - { - "id" "24970" - "plane" "(159.5 -115.097 288) (191.698 -60.7014 288) (206.898 -66.8017 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24969" - "plane" "(159.5 -115.097 288) (172.598 -125.195 288) (172.6 -125.199 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.791949 -0.610587 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24968" - "plane" "(206.898 -66.8017 288) (191.698 -60.7014 288) (191.697 -60.7021 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.928051 0.372454 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24967" - "plane" "(172.598 -125.195 288) (206.898 -66.8017 288) (206.898 -66.8027 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.506436 0.862278 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24966" - "plane" "(191.698 -60.7014 288) (159.5 -115.097 288) (159.499 -115.099 160)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 -1 0 37.6953] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24965" - "plane" "(191.697 -60.7021 160) (159.499 -115.099 160) (172.6 -125.199 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "137558" - side - { - "id" "24976" - "plane" "(191.701 -60.7016 288) (207.901 0.801689 288) (224 -1.29842 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24975" - "plane" "(191.701 -60.7016 288) (206.902 -66.8008 288) (206.902 -66.8004 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.92808 -0.37238 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24974" - "plane" "(224 -1.29842 288) (207.901 0.801689 288) (207.901 0.801278 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.991598 0.129355 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24973" - "plane" "(206.902 -66.8008 288) (224 -1.29842 288) (224 -1.29883 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.252568 0.967579 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24972" - "plane" "(207.901 0.801689 288) (191.701 -60.7016 288) (191.701 -60.7013 160)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 -1 0 45.0273] 0.25" - "vaxis" "[0 0 -1 -63.9961] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24971" - "plane" "(207.901 0.801278 160) (191.701 -60.7013 160) (206.902 -66.8004 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "137559" - side - { - "id" "24982" - "plane" "(207.9 0.799792 288) (207.9 63.2002 288) (224 65.2998 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24981" - "plane" "(207.9 0.799792 288) (224 -1.2998 288) (224 -1.29899 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.991603 -0.129315 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24980" - "plane" "(224 65.2998 288) (207.9 63.2002 288) (207.9 63.1992 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.991604 -0.129315 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24979" - "plane" "(224 -1.2998 288) (224 65.2998 288) (224 65.2988 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24978" - "plane" "(207.9 63.2002 288) (207.9 0.799792 288) (207.9 0.800622 160)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24977" - "plane" "(207.9 63.1992 160) (207.9 0.800622 160) (224 -1.29899 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid +} +entity +{ + "id" "126119" + "classname" "prop_static" + "angles" "0 165 90" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/anim_wp/framework/squarebeam_off.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "origin" "66 256 320" + editor { - "id" "137560" - side - { - "id" "24988" - "plane" "(207.896 63.1992 288) (191.795 124.702 288) (206.9 130.805 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24987" - "plane" "(207.896 63.1992 288) (224 65.2998 288) (224 65.2996 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.991604 0.129313 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24986" - "plane" "(206.9 130.805 288) (191.795 124.702 288) (191.795 124.701 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.927184 -0.374605 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24985" - "plane" "(224 65.2998 288) (206.9 130.805 288) (206.902 130.805 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.252591 0.967573 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24984" - "plane" "(191.795 124.702 288) (207.896 63.1992 288) (207.896 63.1994 160)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24983" - "plane" "(191.795 124.701 160) (207.896 63.1994 160) (224 65.2996 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "213 210 0" + "groupid" "136399" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" } - solid - { - "id" "137561" - side - { - "id" "24994" - "plane" "(191.78 124.736 288) (159.504 179.2 288) (172.604 189.2 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24993" - "plane" "(191.78 124.736 288) (206.902 130.805 288) (206.922 130.768 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.928065 0.372417 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24992" - "plane" "(172.604 189.2 288) (159.504 179.2 288) (159.504 179.198 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.794874 -0.606774 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24991" - "plane" "(206.902 130.805 288) (172.604 189.2 288) (172.606 189.2 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.50643 0.862281 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24990" - "plane" "(159.504 179.2 288) (191.78 124.736 288) (191.801 124.701 160)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24989" - "plane" "(159.504 179.198 160) (191.801 124.701 160) (206.922 130.768 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } +} +entity +{ + "id" "126123" + "classname" "prop_static" + "angles" "0 165 90" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/anim_wp/framework/squarebeam_off.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "origin" "66 256 192" + editor + { + "color" "213 210 0" + "groupid" "136399" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" } - solid +} +entity +{ + "id" "126127" + "classname" "prop_static" + "angles" "0 165 90" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/anim_wp/framework/squarebeam_off.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "origin" "66 256 0" + editor { - "id" "137562" - side - { - "id" "25000" - "plane" "(159.502 179.096 288) (115.203 223.496 288) (125.201 236.596 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24999" - "plane" "(159.502 179.096 288) (172.598 189.191 288) (172.602 189.195 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.791979 0.610549 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24998" - "plane" "(125.201 236.596 288) (115.203 223.496 288) (115.199 223.5 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.606726 -0.794911 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24997" - "plane" "(172.598 189.191 288) (125.201 236.596 288) (125.199 236.602 160)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[-0.707121 0.707092 0 -344.869] 0.25" - "vaxis" "[0 0 -1 -383.656] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24996" - "plane" "(115.203 223.496 288) (159.502 179.096 288) (159.502 179.096 160)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "24995" - "plane" "(115.199 223.5 160) (159.502 179.096 160) (172.602 189.195 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "213 210 0" + "groupid" "136399" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" } - solid +} +entity +{ + "id" "126131" + "classname" "prop_static" + "angles" "0 165 90" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/anim_wp/framework/squarebeam_off.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "origin" "66 256 -64" + editor { - "id" "137563" - side - { - "id" "25006" - "plane" "(115.098 223.5 288) (60.6965 255.7 288) (66.7971 270.902 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "25005" - "plane" "(115.098 223.5 288) (125.199 236.602 288) (125.197 236.603 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.610595 0.791943 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "25004" - "plane" "(66.7971 270.902 288) (60.6965 255.7 288) (60.6978 255.7 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.372437 -0.928057 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "25003" - "plane" "(125.199 236.602 288) (66.7971 270.902 288) (66.7988 270.902 160)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[-0.862582 0.505917 0 -76.6191] 0.25" - "vaxis" "[0 0 -1 -383.709] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "25002" - "plane" "(60.6965 255.7 288) (115.098 223.5 288) (115.096 223.501 160)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "25001" - "plane" "(60.6978 255.7 160) (115.096 223.501 160) (125.197 236.603 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "213 210 0" + "groupid" "136399" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" } - solid +} +entity +{ + "id" "126156" + "classname" "prop_static" + "angles" "0 165 90" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/anim_wp/framework/squarebeam_off.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "origin" "66 256 128" + editor + { + "color" "213 210 0" + "groupid" "136399" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +entity +{ + "id" "126160" + "classname" "prop_static" + "angles" "0 180 90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/truss_1024.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "-84 300 96" + editor { - "id" "137564" - side - { - "id" "25012" - "plane" "(60.6968 255.698 288) (-0.800188 271.896 288) (1 288 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "25011" - "plane" "(60.6968 255.698 288) (66.7969 270.898 288) (66.7971 270.899 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.372433 0.928059 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "25010" - "plane" "(1 288 288) (-0.800188 271.896 288) (-0.799803 271.896 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.111068 -0.993813 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "25009" - "plane" "(66.7969 270.898 288) (1 288 288) (1 288 160)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01_NOSPEC" - "uaxis" "[-0.967305 0.253616 0 -287.285] 0.25" - "vaxis" "[0 0 -1 -383.944] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "25008" - "plane" "(-0.800188 271.896 288) (60.6968 255.698 288) (60.6968 255.698 160)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "25007" - "plane" "(-0.799803 271.896 160) (60.6968 255.698 160) (66.7971 270.899 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "213 210 0" + "groupid" "136399" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" } - solid +} +entity +{ + "id" "126164" + "classname" "prop_static" + "angles" "0 180 90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/truss_1024.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "84 300 96" + editor { - "id" "137565" - side - { - "id" "25018" - "plane" "(-63.199 271.899 288) (-124.7 255.799 288) (-130.801 270.901 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "25017" - "plane" "(-63.199 271.899 288) (-65 288 288) (-65 288 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.111164 0.993802 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "25016" - "plane" "(-130.801 270.901 288) (-124.7 255.799 288) (-124.702 255.798 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.374585 -0.927192 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "25015" - "plane" "(-65 288 288) (-130.801 270.901 288) (-130.803 270.898 160)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01_NOSPEC" - "uaxis" "[-0.967462 -0.253018 0 -231.934] 0.25" - "vaxis" "[0 0 -1 -384] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "25014" - "plane" "(-124.7 255.799 288) (-63.199 271.899 288) (-63.1985 271.899 160)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "25013" - "plane" "(-124.702 255.798 160) (-63.1985 271.899 160) (-65 288 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "213 210 0" + "groupid" "136399" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" } - solid +} +entity +{ + "id" "126168" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "180" + "_hardfalloff" "0" + "_light" "255 247 217 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "_zero_percent_distance" "220" + "angles" "0 0 0" + "spawnflags" "0" + "style" "0" + "origin" "160 288 192" + editor { - "id" "137566" - side - { - "id" "25024" - "plane" "(-124.698 255.699 288) (-179.131 223.538 288) (-189.204 236.602 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "25023" - "plane" "(-124.698 255.699 288) (-130.801 270.906 288) (-130.799 270.905 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.372433 0.928059 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "25022" - "plane" "(-189.204 236.602 288) (-179.131 223.538 288) (-179.129 223.539 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.610598 -0.791941 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "25021" - "plane" "(-130.801 270.906 288) (-189.204 236.602 288) (-189.203 236.605 160)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[-0.862694 -0.505725 0 -144.468] 0.25" - "vaxis" "[0 0 -1 -383.397] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "25020" - "plane" "(-179.131 223.538 288) (-124.698 255.699 288) (-124.697 255.7 160)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "512" - "smoothing_groups" "0" - } - side - { - "id" "25019" - "plane" "(-179.129 223.539 160) (-124.697 255.7 160) (-130.799 270.905 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "126173" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "180" + "_hardfalloff" "0" + "_light" "255 247 217 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "_zero_percent_distance" "220" + "angles" "0 0 0" + "spawnflags" "0" + "style" "0" + "origin" "-160 288 192" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" } +} +entity +{ + "id" "126178" + "classname" "func_detail" solid { - "id" "137567" + "id" "137523" side { - "id" "25030" - "plane" "(-179.099 223.503 288) (-223.5 179.203 288) (-236.596 189.2 288)" + "id" "24766" + "plane" "(-147.152 191.559 352) (-191.509 147.101 352) (-204.605 157.196 352)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -10080,10 +7762,10 @@ entity } side { - "id" "25029" - "plane" "(-179.099 223.503 288) (-189.199 236.602 288) (-189.257 236.54 160)" + "id" "24765" + "plane" "(-147.152 191.559 352) (-157.203 204.598 352) (-157.257 204.544 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.610607 0.791934 0 0] 0.25" + "uaxis" "[-0.610576 0.791958 0 51.5243] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -10091,10 +7773,10 @@ entity } side { - "id" "25028" - "plane" "(-236.596 189.2 288) (-223.5 179.203 288) (-223.501 179.202 160)" + "id" "24764" + "plane" "(-191.509 147.101 352) (-191.508 147.101 288) (-204.602 157.195 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.794888 -0.606756 0 0] 0.25" + "uaxis" "[0.791992 -0.610531 0 -51.5229] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -10102,21 +7784,21 @@ entity } side { - "id" "25027" - "plane" "(-189.199 236.602 288) (-236.596 189.2 288) (-236.598 189.199 160)" + "id" "24763" + "plane" "(-157.203 204.598 352) (-204.605 157.196 352) (-204.602 157.195 288)" "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[-0.707092 -0.707122 0 -348.098] 0.25" - "vaxis" "[0 0 -1 -383.391] 0.25" + "uaxis" "[-0.707092 -0.707122 0 -348.105] 0.25" + "vaxis" "[0 0 -1 -383.379] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25026" - "plane" "(-223.5 179.203 288) (-179.099 223.503 288) (-179.159 223.443 160)" + "id" "24762" + "plane" "(-147.152 191.559 352) (-147.205 191.505 288) (-191.508 147.101 288)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 -1 0 45.8047] 0.25" + "uaxis" "[0 -1 0 -18.1953] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "512" @@ -10124,8 +7806,8 @@ entity } side { - "id" "25025" - "plane" "(-223.501 179.202 160) (-179.159 223.443 160) (-189.257 236.54 160)" + "id" "24761" + "plane" "(-191.508 147.101 288) (-147.205 191.505 288) (-157.257 204.544 288)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -10142,11 +7824,11 @@ entity } solid { - "id" "137568" + "id" "137524" side { - "id" "25036" - "plane" "(-223.496 179.104 288) (-255.698 124.701 288) (-270.902 130.803 288)" + "id" "24772" + "plane" "(31.1962 240 288) (-31.2023 240 288) (-33 256 288)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -10156,10 +7838,10 @@ entity } side { - "id" "25035" - "plane" "(-223.496 179.104 288) (-236.598 189.207 288) (-236.601 189.203 160)" + "id" "24771" + "plane" "(31.1962 240 288) (33 256 288) (33 256 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.791913 0.610633 0 0] 0.25" + "uaxis" "[0.111903 0.993719 0 48.8724] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -10167,10 +7849,10 @@ entity } side { - "id" "25034" - "plane" "(-270.902 130.803 288) (-255.698 124.701 288) (-255.698 124.701 160)" + "id" "24770" + "plane" "(-33 256 288) (-31.2023 240 288) (-31.2008 240 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.928047 -0.372463 0 0] 0.25" + "uaxis" "[0.111813 -0.993729 0 -13.5094] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -10178,21 +7860,21 @@ entity } side { - "id" "25033" - "plane" "(-236.598 189.207 288) (-270.902 130.803 288) (-270.902 130.803 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.506437 -0.862277 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24769" + "plane" "(33 256 288) (-33 256 288) (-33 256 160)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01_NOSPEC" + "uaxis" "[-1 0 0 -380] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25032" - "plane" "(-255.698 124.701 288) (-223.496 179.104 288) (-223.499 179.1 160)" + "id" "24768" + "plane" "(-31.2023 240 288) (31.1962 240 288) (31.1971 240 160)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 -1 0 38.4336] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "512" @@ -10200,12 +7882,12 @@ entity } side { - "id" "25031" - "plane" "(-236.601 189.203 160) (-270.902 130.803 160) (-255.698 124.701 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" + "id" "24767" + "plane" "(-31.2008 240 160) (31.1971 240 160) (33 256 160)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 128] 0.25" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } @@ -10218,11 +7900,11 @@ entity } solid { - "id" "137569" + "id" "137525" side { - "id" "25042" - "plane" "(-255.699 124.696 288) (-271.898 63.1999 288) (-288 65.2997 288)" + "id" "24778" + "plane" "(-92.6948 -223.703 352) (-31.1995 -239.902 352) (-33.2989 -256 352)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -10232,10 +7914,10 @@ entity } side { - "id" "25041" - "plane" "(-255.699 124.696 288) (-270.898 130.797 288) (-270.899 130.797 160)" + "id" "24777" + "plane" "(-92.6948 -223.703 352) (-98.7949 -238.902 352) (-98.7989 -238.902 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.928042 0.372475 0 0] 0.25" + "uaxis" "[-0.372464 -0.928046 0 -7.11449] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -10243,10 +7925,10 @@ entity } side { - "id" "25040" - "plane" "(-288 65.2997 288) (-271.898 63.1999 288) (-271.898 63.199 160)" + "id" "24776" + "plane" "(-33.2989 -256 352) (-31.1995 -239.902 352) (-31.2007 -239.901 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.991604 -0.129311 0 0] 0.25" + "uaxis" "[0.129318 0.991603 0 46.3725] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -10254,10 +7936,10 @@ entity } side { - "id" "25039" - "plane" "(-270.898 130.797 288) (-288 65.2997 288) (-288 65.2993 160)" + "id" "24775" + "plane" "(-98.7949 -238.902 352) (-33.2989 -256 352) (-33.3002 -256 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.252623 -0.967565 0 0] 0.25" + "uaxis" "[0.967571 -0.252598 0 -28.1816] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -10265,10 +7947,10 @@ entity } side { - "id" "25038" - "plane" "(-271.898 63.1999 288) (-255.699 124.696 288) (-255.699 124.697 160)" + "id" "24774" + "plane" "(-31.1995 -239.902 352) (-92.6948 -223.703 352) (-92.6983 -223.701 288)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "512" @@ -10276,8 +7958,8 @@ entity } side { - "id" "25037" - "plane" "(-270.899 130.797 160) (-288 65.2993 160) (-271.898 63.199 160)" + "id" "24773" + "plane" "(-98.7989 -238.902 288) (-33.3002 -256 288) (-31.2007 -239.901 288)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -10294,11 +7976,11 @@ entity } solid { - "id" "137570" + "id" "137526" side { - "id" "25048" - "plane" "(-0.801109 -207.898 288) (60.6982 -191.799 288) (66.7983 -206.901 288)" + "id" "24784" + "plane" "(-239.896 -31.2013 352) (-223.7 -92.6971 352) (-238.902 -98.7977 352)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -10308,10 +7990,10 @@ entity } side { - "id" "25047" - "plane" "(-0.801109 -207.898 288) (1.29883 -224 288) (1.29848 -224 160)" + "id" "24783" + "plane" "(-239.896 -31.2013 352) (-256 -33.3013 352) (-256 -33.2981 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.129319 -0.991603 0 0] 0.25" + "uaxis" "[-0.991604 -0.129311 0 46.3735] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -10319,10 +8001,10 @@ entity } side { - "id" "25046" - "plane" "(66.7983 -206.901 288) (60.6982 -191.799 288) (60.6983 -191.799 160)" + "id" "24782" + "plane" "(-238.902 -98.7977 352) (-223.7 -92.6971 352) (-223.7 -92.6944 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.374532 0.927214 0 0] 0.25" + "uaxis" "[0.928066 0.372416 0 -7.1232] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -10330,10 +8012,10 @@ entity } side { - "id" "25045" - "plane" "(1.29883 -224 288) (66.7983 -206.901 288) (66.7988 -206.902 160)" + "id" "24781" + "plane" "(-256 -33.3013 352) (-238.902 -98.7977 352) (-238.902 -98.7948 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.967576 0.252579 0 0] 0.25" + "uaxis" "[0.252575 -0.967577 0 -28.1795] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -10341,40 +8023,19 @@ entity } side { - "id" "25044" - "plane" "(60.6982 -191.799 288) (-0.801109 -207.898 288) (-0.801375 -207.898 160)" + "id" "24780" + "plane" "(-223.7 -92.6971 352) (-239.896 -31.2013 352) (-239.897 -31.1983 288)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-1 0 0 -3.95313] 0.25" - "vaxis" "[0 0 -1 -63.9879] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25043" - "plane" "(1.29848 -224 160) (66.7988 -206.902 160) (60.6983 -191.799 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "137571" - side - { - "id" "25054" - "plane" "(1.29874 -224 -112) (66.7988 -206.902 -112) (60.6978 -191.8 -112)" + "id" "24779" + "plane" "(-256 -33.2981 288) (-238.902 -98.7948 288) (-223.7 -92.6944 288)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -10382,61 +8043,6 @@ entity "lightmapscale" "16" "smoothing_groups" "0" } - side - { - "id" "25053" - "plane" "(-0.802204 -207.898 -96) (60.6981 -191.798 -96) (66.7991 -206.9 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "25052" - "plane" "(-0.80072 -207.899 -112) (-0.802204 -207.898 -96) (1.29688 -224 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.129294 -0.991606 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "25051" - "plane" "(66.7988 -206.902 -112) (66.7991 -206.9 -96) (60.6981 -191.798 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.374569 0.927199 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "25050" - "plane" "(1.29874 -224 -112) (1.29688 -224 -96) (66.7991 -206.9 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.967577 0.252574 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "25049" - "plane" "(60.6978 -191.8 -112) (60.6981 -191.798 -96) (-0.802204 -207.898 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.967403 -0.253242 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } editor { "color" "246 247 0" @@ -10446,22 +8052,11 @@ entity } solid { - "id" "137572" - side - { - "id" "25060" - "plane" "(66.7983 -206.899 -112) (125.199 -172.598 -112) (115.198 -159.497 -112)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "137527" side { - "id" "25059" - "plane" "(60.7039 -191.798 -96) (115.199 -159.5 -96) (125.197 -172.597 -96)" + "id" "24790" + "plane" "(-223.781 -92.731 352) (-191.495 -147.207 352) (-204.597 -157.208 352)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -10471,10 +8066,10 @@ entity } side { - "id" "25058" - "plane" "(60.6973 -191.798 -112) (60.7039 -191.798 -96) (66.8027 -206.895 -96)" + "id" "24789" + "plane" "(-223.781 -92.731 352) (-238.906 -98.8008 352) (-238.922 -98.7694 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.374585 -0.927192 0 0] 0.25" + "uaxis" "[-0.928068 -0.372412 0 7.12396] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -10482,10 +8077,10 @@ entity } side { - "id" "25057" - "plane" "(125.199 -172.598 -112) (125.197 -172.597 -96) (115.199 -159.5 -96)" + "id" "24788" + "plane" "(-204.597 -157.208 352) (-191.495 -147.207 352) (-191.497 -147.206 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.606792 0.79486 0 0] 0.25" + "uaxis" "[0.79489 0.606754 0 -24.0814] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -10493,10 +8088,10 @@ entity } side { - "id" "25056" - "plane" "(66.7983 -206.899 -112) (66.8027 -206.895 -96) (125.197 -172.597 -96)" + "id" "24787" + "plane" "(-238.906 -98.8008 352) (-204.597 -157.208 352) (-204.598 -157.206 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.862271 0.506448 0 0] 0.25" + "uaxis" "[0.506431 -0.86228 0 -47.195] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -10504,87 +8099,22 @@ entity } side { - "id" "25055" - "plane" "(115.198 -159.497 -112) (115.199 -159.5 -96) (60.7039 -191.798 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.86026 -0.509855 0 0] 0.25" + "id" "24786" + "plane" "(-191.495 -147.207 352) (-223.781 -92.731 352) (-223.799 -92.7007 288)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } - editor - { - "color" "246 247 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "137573" side { - "id" "25066" - "plane" "(159.498 -115.1 -112) (115.144 -159.555 -112) (125.203 -172.602 -112)" + "id" "24785" + "plane" "(-238.922 -98.7694 288) (-204.598 -157.206 288) (-191.497 -147.206 288)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "25065" - "plane" "(115.148 -159.559 -96) (159.5 -115.106 -96) (172.597 -125.204 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "25064" - "plane" "(115.144 -159.555 -112) (115.148 -159.559 -96) (125.203 -172.602 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.610552 -0.791976 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "25063" - "plane" "(172.598 -125.199 -112) (172.597 -125.204 -96) (159.5 -115.106 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.791952 0.610584 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "25062" - "plane" "(125.203 -172.602 -112) (125.203 -172.602 -96) (172.597 -125.204 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707077 0.707137 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "25061" - "plane" "(159.498 -115.1 -112) (159.5 -115.106 -96) (115.148 -159.559 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.706302 -0.707911 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10598,13 +8128,13 @@ entity } solid { - "id" "137574" + "id" "137528" side { - "id" "25072" - "plane" "(191.705 -60.6968 -112) (159.502 -115.103 -112) (172.6 -125.2 -112)" + "id" "24796" + "plane" "(-191.498 -147.1 352) (-147.193 -191.506 352) (-157.184 -204.598 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -10612,32 +8142,32 @@ entity } side { - "id" "25071" - "plane" "(159.459 -115.171 -96) (191.703 -60.6966 -96) (206.903 -66.7961 -96)" + "id" "24795" + "plane" "(-191.498 -147.1 352) (-204.59 -157.195 352) (-204.539 -157.247 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-0.791924 -0.610619 0 23.207] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25070" - "plane" "(159.502 -115.103 -112) (159.459 -115.171 -96) (172.559 -125.27 -96)" + "id" "24794" + "plane" "(-147.193 -191.506 352) (-147.15 -191.447 288) (-157.19 -204.604 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.791986 -0.61054 0 0] 0.25" - "vaxis" "[0.00301697 0.00391358 -1 0] 0.25" + "uaxis" "[0.606729 0.794909 0 -39.913] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25069" - "plane" "(206.902 -66.7949 -112) (206.903 -66.7961 -96) (191.703 -60.6966 -96)" + "id" "24793" + "plane" "(-204.59 -157.195 352) (-157.184 -204.598 352) (-157.19 -204.604 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.92807 0.372407 0 0] 0.25" + "uaxis" "[0.707099 -0.707114 0 -53.0193] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -10645,22 +8175,22 @@ entity } side { - "id" "25068" - "plane" "(172.6 -125.2 -112) (172.559 -125.27 -96) (206.903 -66.7961 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.506425 0.862284 0 0] 0.25" + "id" "24792" + "plane" "(-191.498 -147.1 352) (-191.388 -147.108 288) (-147.15 -191.447 288)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25067" - "plane" "(191.705 -60.6968 -112) (191.703 -60.6966 -96) (159.459 -115.171 -96)" + "id" "24791" + "plane" "(-204.539 -157.247 288) (-157.19 -204.604 288) (-147.15 -191.447 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.509371 -0.860547 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10674,13 +8204,13 @@ entity } solid { - "id" "137575" + "id" "137529" side { - "id" "25078" - "plane" "(207.902 0.802633 -112) (191.701 -60.7021 -112) (206.9 -66.8013 -112)" + "id" "24802" + "plane" "(-147.099 -191.499 352) (-92.6992 -223.699 352) (-98.8005 -238.9 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -10688,21 +8218,21 @@ entity } side { - "id" "25077" - "plane" "(191.7 -60.7023 -96) (207.901 0.79987 -96) (224 -1.3 -96)" + "id" "24801" + "plane" "(-147.099 -191.499 352) (-157.203 -204.605 352) (-157.193 -204.602 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-0.610558 -0.791972 0 40.779] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25076" - "plane" "(191.701 -60.7021 -112) (191.7 -60.7023 -96) (206.902 -66.8027 -96)" + "id" "24800" + "plane" "(-98.8005 -238.9 352) (-92.6992 -223.699 352) (-92.7032 -223.697 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.928061 -0.372427 0 0] 0.25" + "uaxis" "[0.372454 0.928051 0 7.11642] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -10710,10 +8240,10 @@ entity } side { - "id" "25075" - "plane" "(224 -1.29688 -112) (224 -1.3 -96) (207.901 0.79987 -96)" + "id" "24799" + "plane" "(-157.203 -204.605 352) (-98.8005 -238.9 352) (-98.8036 -238.896 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.991602 0.129328 0 0] 0.25" + "uaxis" "[0.862274 -0.506441 0 -47.1955] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -10721,22 +8251,22 @@ entity } side { - "id" "25074" - "plane" "(206.9 -66.8013 -112) (206.902 -66.8027 -96) (224 -1.3 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.252602 0.96757 0 0] 0.25" + "id" "24798" + "plane" "(-92.6992 -223.699 352) (-147.099 -191.499 352) (-147.094 -191.503 288)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25073" - "plane" "(207.902 0.802633 -112) (207.901 0.79987 -96) (191.7 -60.7023 -96)" + "id" "24797" + "plane" "(-157.193 -204.602 288) (-98.8036 -238.896 288) (-92.7032 -223.697 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.254722 -0.967014 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10750,13 +8280,13 @@ entity } solid { - "id" "137576" + "id" "137530" side { - "id" "25084" - "plane" "(207.9 63.1997 -112) (207.9 0.796244 -112) (224 -1.30336 -112)" + "id" "24808" + "plane" "(-31.2012 -239.9 352) (31.2003 -239.9 352) (33.2999 -256 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -10764,21 +8294,21 @@ entity } side { - "id" "25083" - "plane" "(207.9 0.79637 -96) (207.9 63.1998 -96) (224 65.2994 -96)" + "id" "24807" + "plane" "(-31.2012 -239.9 352) (-33.3008 -256 352) (-33.2988 -256 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-0.129315 -0.991604 0 -46.373] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25082" - "plane" "(207.9 0.796244 -112) (207.9 0.79637 -96) (224 -1.30322 -96)" + "id" "24806" + "plane" "(33.2999 -256 352) (31.2003 -239.9 352) (31.1992 -239.9 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.991603 -0.129315 0 0] 0.25" + "uaxis" "[-0.129315 0.991604 0 15.4776] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -10786,10 +8316,10 @@ entity } side { - "id" "25081" - "plane" "(224 65.2993 -112) (224 65.2994 -96) (207.9 63.1998 -96)" + "id" "24805" + "plane" "(-33.3008 -256 352) (33.2999 -256 352) (33.2988 -256 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.991604 -0.129315 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -10797,22 +8327,22 @@ entity } side { - "id" "25080" - "plane" "(224 -1.30336 -112) (224 -1.30322 -96) (224 65.2994 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "24804" + "plane" "(31.2003 -239.9 352) (-31.2012 -239.9 352) (-31.1992 -239.9 288)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[-1 0 0 61.5703] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25079" - "plane" "(207.9 63.1997 -112) (207.9 63.1998 -96) (207.9 0.79637 -96)" + "id" "24803" + "plane" "(-33.2988 -256 288) (33.2988 -256 288) (31.1992 -239.9 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10826,13 +8356,13 @@ entity } solid { - "id" "137577" + "id" "137531" side { - "id" "25090" - "plane" "(191.703 124.699 -112) (207.903 63.1987 -112) (224 65.2975 -112)" + "id" "24814" + "plane" "(-239.9 31.1939 352) (-239.9 -31.2006 352) (-256 -33.3002 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -10840,21 +8370,21 @@ entity } side { - "id" "25089" - "plane" "(207.902 63.1985 -96) (191.701 124.701 -96) (206.901 130.801 -96)" + "id" "24813" + "plane" "(-239.9 31.1939 352) (-256 33.2935 352) (-256 33.3008 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-0.991604 0.129315 0 15.4776] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25088" - "plane" "(207.903 63.1987 -112) (207.902 63.1985 -96) (224 65.2974 -96)" + "id" "24812" + "plane" "(-256 -33.3002 352) (-239.9 -31.2006 352) (-239.9 -31.2013 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.991607 0.129288 0 0] 0.25" + "uaxis" "[0.991603 0.129316 0 -46.3727] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -10862,10 +8392,10 @@ entity } side { - "id" "25087" - "plane" "(206.902 130.799 -112) (206.901 130.801 -96) (191.701 124.701 -96)" + "id" "24811" + "plane" "(-256 33.2935 352) (-256 -33.3002 352) (-256 -33.3009 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.928055 -0.372443 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -10873,22 +8403,22 @@ entity } side { - "id" "25086" - "plane" "(224 65.2975 -112) (224 65.2974 -96) (206.901 130.801 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.252574 0.967578 0 0] 0.25" + "id" "24810" + "plane" "(-239.9 -31.2006 352) (-239.9 31.1939 352) (-239.9 31.2012 288)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25085" - "plane" "(191.703 124.699 -112) (191.701 124.701 -96) (207.902 63.1985 -96)" + "id" "24809" + "plane" "(-256 33.3008 288) (-256 -33.3009 288) (-239.9 -31.2013 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.254723 -0.967014 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10902,13 +8432,13 @@ entity } solid { - "id" "137578" + "id" "137532" side { - "id" "25096" - "plane" "(159.498 179.203 -112) (191.801 124.699 -112) (206.899 130.799 -112)" + "id" "24820" + "plane" "(92.7019 -223.698 352) (147.103 -191.499 352) (157.202 -204.599 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -10916,21 +8446,21 @@ entity } side { - "id" "25095" - "plane" "(191.8 124.697 -96) (159.5 179.195 -96) (172.604 189.197 -96)" + "id" "24819" + "plane" "(98.8027 -238.902 352) (98.8028 -238.898 288) (92.7226 -223.745 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.372401 -0.928072 0 -38.4605] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25094" - "plane" "(191.801 124.699 -112) (191.8 124.697 -96) (206.898 130.797 -96)" + "id" "24818" + "plane" "(157.202 -204.599 352) (147.103 -191.499 352) (147.133 -191.541 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.927192 0.374586 0 0] 0.25" + "uaxis" "[-0.610569 0.791963 0 51.5241] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -10938,10 +8468,10 @@ entity } side { - "id" "25093" - "plane" "(172.594 189.199 -112) (172.604 189.197 -96) (159.5 179.195 -96)" + "id" "24817" + "plane" "(98.8027 -238.902 352) (157.202 -204.599 352) (157.2 -204.599 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.794896 -0.606745 0 0] 0.25" + "uaxis" "[0.862282 0.506429 0 -45.5492] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -10949,22 +8479,22 @@ entity } side { - "id" "25092" - "plane" "(206.899 130.799 -112) (206.898 130.797 -96) (172.604 189.197 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.506426 0.862283 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24816" + "plane" "(147.103 -191.499 352) (92.7019 -223.698 352) (92.7226 -223.745 288)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[-1 0 0 45.4883] 0.25" + "vaxis" "[0 0 -1 -63.944] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25091" - "plane" "(159.498 179.203 -112) (159.5 179.195 -96) (191.8 124.697 -96)" + "id" "24815" + "plane" "(98.8028 -238.898 288) (157.2 -204.599 288) (147.133 -191.541 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.50985 -0.860263 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -10978,13 +8508,13 @@ entity } solid { - "id" "137579" + "id" "137533" side { - "id" "25102" - "plane" "(115.101 223.498 -112) (159.501 179.198 -112) (172.601 189.196 -112)" + "id" "24826" + "plane" "(147.151 -191.552 352) (191.506 -147.1 352) (204.602 -157.199 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -10992,21 +8522,21 @@ entity } side { - "id" "25101" - "plane" "(159.561 179.239 -96) (115.144 223.556 -96) (125.2 236.597 -96)" + "id" "24825" + "plane" "(147.151 -191.552 352) (157.207 -204.594 352) (157.262 -204.539 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.610602 -0.791938 0 -51.5251] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25100" - "plane" "(159.501 179.198 -112) (159.561 179.239 -96) (172.605 189.195 -96)" + "id" "24824" + "plane" "(191.506 -147.1 352) (191.505 -147.099 288) (204.603 -157.198 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.794909 0.606729 0 0] 0.25" + "uaxis" "[-0.791949 0.610587 0 51.5246] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -11014,10 +8544,10 @@ entity } side { - "id" "25099" - "plane" "(125.199 236.594 -112) (125.2 236.597 -96) (115.144 223.556 -96)" + "id" "24823" + "plane" "(157.207 -204.594 352) (204.602 -157.199 352) (204.603 -157.198 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.610628 -0.791918 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -11025,22 +8555,22 @@ entity } side { - "id" "25098" - "plane" "(172.601 189.196 -112) (172.605 189.195 -96) (125.2 236.597 -96)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[-0.707106 0.707107 0 -344.898] 0.25" - "vaxis" "[0 0 -1 -383.668] 0.25" + "id" "24822" + "plane" "(147.151 -191.552 352) (147.205 -191.496 288) (191.505 -147.099 288)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[0 -1 0 -39.0508] 0.25" + "vaxis" "[0 0 -1 -54.4055] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25097" - "plane" "(115.101 223.498 -112) (115.144 223.556 -96) (159.561 179.239 -96)" + "id" "24821" + "plane" "(191.505 -147.099 288) (147.205 -191.496 288) (157.262 -204.539 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707904 -0.706309 0 0] 0.25" - "vaxis" "[-0.00315267 -0.00315979 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11054,13 +8584,13 @@ entity } solid { - "id" "137580" + "id" "137534" side { - "id" "25108" - "plane" "(60.6975 255.699 -112) (115.103 223.495 -112) (125.204 236.597 -112)" + "id" "24832" + "plane" "(191.505 -147.093 352) (223.7 -92.7015 352) (238.899 -98.8019 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -11068,32 +8598,32 @@ entity } side { - "id" "25107" - "plane" "(115.168 223.46 -96) (60.7018 255.7 -96) (66.7994 270.895 -96)" + "id" "24831" + "plane" "(191.505 -147.093 352) (204.598 -157.188 352) (204.6 -157.196 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.791949 -0.610587 0 -51.5246] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25106" - "plane" "(115.103 223.495 -112) (115.168 223.46 -96) (125.266 236.559 -96)" + "id" "24830" + "plane" "(238.899 -98.8019 352) (223.7 -92.7015 352) (223.7 -92.7019 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.610557 0.791972 0 0] 0.25" - "vaxis" "[-0.00363598 0.00280309 -1 0] 0.25" + "uaxis" "[-0.928051 0.372454 0 38.4646] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25105" - "plane" "(66.7969 270.898 -112) (66.7994 270.895 -96) (60.7018 255.7 -96)" + "id" "24829" + "plane" "(204.598 -157.188 352) (238.899 -98.8019 352) (238.898 -98.8017 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.372427 -0.928061 0 0] 0.25" + "uaxis" "[0.506436 0.862278 0 -18.4522] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -11101,22 +8631,22 @@ entity } side { - "id" "25104" - "plane" "(125.204 236.597 -112) (125.266 236.559 -96) (66.7994 270.895 -96)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[-0.862671 0.505764 0 -76.4238] 0.25" - "vaxis" "[0 0 -1 -384.822] 0.25" + "id" "24828" + "plane" "(223.7 -92.7015 352) (191.505 -147.093 352) (191.502 -147.098 288)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[0 -1 0 -26.3047] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25103" - "plane" "(60.6975 255.699 -112) (60.7018 255.7 -96) (115.168 223.46 -96)" + "id" "24827" + "plane" "(223.7 -92.7019 288) (191.502 -147.098 288) (204.6 -157.196 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.860544 -0.509375 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11130,13 +8660,13 @@ entity } solid { - "id" "137581" + "id" "137535" side { - "id" "25114" - "plane" "(-0.800377 271.898 -112) (60.6945 255.699 -112) (66.7959 270.903 -112)" + "id" "24838" + "plane" "(223.7 -92.7048 352) (239.9 -31.1979 352) (256 -33.2981 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -11144,21 +8674,21 @@ entity } side { - "id" "25113" - "plane" "(60.6911 255.698 -96) (-0.798603 271.895 -96) (1 288 -96)" + "id" "24837" + "plane" "(223.7 -92.7048 352) (238.902 -98.8047 352) (238.903 -98.8003 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.92808 -0.37238 0 -38.4589] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25112" - "plane" "(60.6945 255.699 -112) (60.6911 255.698 -96) (66.791 270.898 -96)" + "id" "24836" + "plane" "(256 -33.2981 352) (239.9 -31.1979 352) (239.9 -31.1987 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.372432 0.928059 0 0] 0.25" + "uaxis" "[-0.991598 0.129355 0 15.482] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -11166,33 +8696,33 @@ entity } side { - "id" "25111" - "plane" "(1 288 -112) (1 288 -96) (-0.798603 271.895 -96)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS" - "uaxis" "[0 -1 0 128.215] 0.25" - "vaxis" "[0.00646112 0 -1 128.8] 0.25" + "id" "24835" + "plane" "(238.902 -98.8047 352) (256 -33.2981 352) (256 -33.2989 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.252568 0.967579 0 27.5214] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25110" - "plane" "(66.7959 270.903 -112) (66.791 270.898 -96) (1 288 -96)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[-0.967439 0.253103 0 -286.701] 0.25" - "vaxis" "[0 0 -1 -384.123] 0.25" + "id" "24834" + "plane" "(239.9 -31.1979 352) (223.7 -92.7048 352) (223.701 -92.7006 288)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[0 -1 0 -18.9727] 0.25" + "vaxis" "[0 0 -1 -63.9961] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25109" - "plane" "(-0.800377 271.898 -112) (-0.798603 271.895 -96) (60.6911 255.698 -96)" + "id" "24833" + "plane" "(239.9 -31.1987 288) (223.701 -92.7006 288) (238.903 -98.8003 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.967012 -0.254729 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11206,13 +8736,13 @@ entity } solid { - "id" "137582" + "id" "137536" side { - "id" "25120" - "plane" "(-63.2002 271.9 -112) (-0.798006 271.9 -112) (1 288 -112)" + "id" "24844" + "plane" "(239.9 -31.2016 352) (239.9 31.2003 352) (256 33.2999 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -11220,21 +8750,21 @@ entity } side { - "id" "25119" - "plane" "(-0.802238 271.9 -97) (-63.2008 271.9 -97) (-65 288 -97)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS" - "uaxis" "[0 -1 0 128] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "90" + "id" "24843" + "plane" "(239.9 -31.2016 352) (256 -33.3013 352) (256 -33.2986 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.991603 -0.129315 0 -15.4775] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25118" - "plane" "(-0.798006 271.9 -112) (-0.802238 271.9 -97) (1 288 -97)" + "id" "24842" + "plane" "(256 33.2999 352) (239.9 31.2003 352) (239.9 31.1982 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.111097 0.99381 0 0] 0.25" + "uaxis" "[-0.991604 -0.129315 0 46.373] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -11242,33 +8772,33 @@ entity } side { - "id" "25117" - "plane" "(-65 288 -112) (-65 288 -97) (-63.2008 271.9 -97)" + "id" "24841" + "plane" "(256 -33.3013 352) (256 33.2999 352) (256 33.2978 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.111097 -0.99381 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" - } - side - { - "id" "25116" - "plane" "(1 288 -112) (1 288 -97) (-65 288 -97)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -129] 0.25" + } + side + { + "id" "24840" + "plane" "(239.9 31.2003 352) (239.9 -31.2016 352) (239.9 -31.199 288)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25115" - "plane" "(-63.2002 271.9 -112) (-63.2008 271.9 -97) (-0.802238 271.9 -97)" + "id" "24839" + "plane" "(239.9 31.1982 288) (239.9 -31.199 288) (256 -33.2986 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11282,13 +8812,13 @@ entity } solid { - "id" "137583" + "id" "137537" side { - "id" "25126" - "plane" "(-124.701 255.697 -112) (-63.2008 271.897 -112) (-65 288 -112)" + "id" "24850" + "plane" "(239.897 31.1984 352) (223.796 92.7048 352) (238.899 98.8074 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -11296,32 +8826,32 @@ entity } side { - "id" "25125" - "plane" "(-63.2115 272 -96) (-124.737 255.786 -96) (-130.802 270.901 -96)" + "id" "24849" + "plane" "(239.897 31.1984 352) (256 33.2983 352) (256 33.2993 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.991603 0.129317 0 -46.3726] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25124" - "plane" "(-63.2008 271.897 -112) (-63.2115 272 -96) (-65 288 -96)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS" - "uaxis" "[0.0406877 -1 0.00602039 144.896] 0.25" - "vaxis" "[-0.0573704 -0.00835166 -0.998268 -387.403] 0.25" + "id" "24848" + "plane" "(238.899 98.8074 352) (223.796 92.7048 352) (223.706 92.6684 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.927189 -0.374595 0 6.73203] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25123" - "plane" "(-130.801 270.898 -112) (-130.802 270.901 -96) (-124.737 255.786 -96)" + "id" "24847" + "plane" "(256 33.2983 352) (238.899 98.8074 352) (238.903 98.8087 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.372412 -0.928068 0 0] 0.25" + "uaxis" "[-0.252591 0.967573 0 28.181] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -11329,22 +8859,22 @@ entity } side { - "id" "25122" - "plane" "(-65 288 -112) (-65 288 -96) (-130.802 270.901 -96)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[-0.967399 -0.253257 0 -472.785] 0.25" - "vaxis" "[0 0 -1 -383.341] 0.25" + "id" "24846" + "plane" "(223.796 92.7048 352) (239.897 31.1984 352) (239.801 31.187 288)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25121" - "plane" "(-124.701 255.697 -112) (-124.737 255.786 -96) (-63.2115 272 -96)" + "id" "24845" + "plane" "(223.706 92.6684 288) (239.801 31.187 288) (256 33.2993 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.967013 0.254726 0 0] 0.25" - "vaxis" "[0.00152744 -0.00579859 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11358,13 +8888,13 @@ entity } solid { - "id" "137584" + "id" "137538" side { - "id" "25132" - "plane" "(-179.206 223.501 -112) (-124.698 255.806 -112) (-130.797 270.903 -112)" + "id" "24856" + "plane" "(223.802 92.6945 352) (191.502 147.196 352) (204.604 157.198 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -11372,32 +8902,32 @@ entity } side { - "id" "25131" - "plane" "(-124.735 255.781 -96) (-179.204 223.5 -96) (-189.205 236.601 -96)" + "id" "24855" + "plane" "(223.802 92.6945 352) (238.906 98.7969 352) (238.906 98.8016 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.927188 0.374596 0 -6.73177] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25130" - "plane" "(-124.698 255.806 -112) (-124.735 255.781 -96) (-130.836 270.883 -96)" + "id" "24854" + "plane" "(204.604 157.198 352) (191.502 147.196 352) (191.5 147.199 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.374564 0.927201 0 0] 0.25" - "vaxis" "[0.00221881 0 -1 0] 0.25" + "uaxis" "[-0.794867 -0.606784 0 24.0746] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25129" - "plane" "(-189.207 236.602 -112) (-189.205 236.601 -96) (-179.204 223.5 -96)" + "id" "24853" + "plane" "(238.906 98.7969 352) (204.604 157.198 352) (204.605 157.202 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.606812 -0.794845 0 0] 0.25" + "uaxis" "[-0.506435 0.862278 0 47.1953] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -11405,22 +8935,22 @@ entity } side { - "id" "25128" - "plane" "(-130.797 270.903 -112) (-130.836 270.883 -96) (-189.205 236.601 -96)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[-0.862687 -0.505737 0 -144.444] 0.25" - "vaxis" "[0 0 -1 -383.293] 0.25" + "id" "24852" + "plane" "(191.502 147.196 352) (223.802 92.6945 352) (223.8 92.6982 288)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25127" - "plane" "(-179.206 223.501 -112) (-179.204 223.5 -96) (-124.735 255.781 -96)" + "id" "24851" + "plane" "(191.5 147.199 288) (223.8 92.6982 288) (238.906 98.8016 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.860266 0.509846 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11434,13 +8964,13 @@ entity } solid { - "id" "137585" + "id" "137539" side { - "id" "25138" - "plane" "(-223.5 179.102 -112) (-179.14 223.564 -112) (-189.194 236.603 -112)" + "id" "24862" + "plane" "(191.501 147.097 352) (147.196 191.499 352) (157.195 204.601 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -11448,21 +8978,21 @@ entity } side { - "id" "25137" - "plane" "(-179.145 223.559 -96) (-223.503 179.099 -96) (-236.601 189.196 -96)" + "id" "24861" + "plane" "(191.501 147.097 352) (204.598 157.195 352) (204.545 157.256 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.79194 0.610599 0 -23.2116] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25136" - "plane" "(-179.14 223.564 -112) (-179.145 223.559 -96) (-189.199 236.598 -96)" + "id" "24860" + "plane" "(147.196 191.499 352) (147.149 191.445 288) (157.193 204.604 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.610617 0.791926 0 0] 0.25" + "uaxis" "[-0.606709 -0.794924 0 39.9085] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -11470,33 +9000,33 @@ entity } side { - "id" "25135" - "plane" "(-236.598 189.199 -112) (-236.601 189.196 -96) (-223.503 179.099 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.791963 -0.61057 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24859" + "plane" "(204.598 157.195 352) (157.195 204.601 352) (157.193 204.604 288)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-0.707121 0.707092 0 -163.85] 0.25" + "vaxis" "[0 0 -1 -383.645] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25134" - "plane" "(-189.194 236.603 -112) (-189.199 236.598 -96) (-236.601 189.196 -96)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[-0.707107 -0.707107 0 -348.12] 0.25" - "vaxis" "[0 0 -1 -383.402] 0.25" + "id" "24858" + "plane" "(191.501 147.097 352) (191.387 147.11 288) (147.149 191.445 288)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25133" - "plane" "(-223.5 179.102 -112) (-223.503 179.099 -96) (-179.145 223.559 -96)" + "id" "24857" + "plane" "(147.149 191.445 288) (191.387 147.11 288) (204.545 157.256 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.706294 0.707918 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11510,13 +9040,13 @@ entity } solid { - "id" "137586" + "id" "137540" side { - "id" "25144" - "plane" "(-236.604 189.201 -112) (-270.902 130.803 -112) (-255.698 124.701 -112)" + "id" "24868" + "plane" "(147.098 191.5 352) (92.6941 223.7 352) (98.795 238.902 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -11524,55 +9054,55 @@ entity } side { - "id" "25143" - "plane" "(-223.46 179.161 -96) (-255.696 124.701 -96) (-270.903 130.804 -96)" + "id" "24867" + "plane" "(147.098 191.5 352) (157.199 204.602 352) (157.195 204.604 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.610595 0.791943 0 -40.7875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25142" - "plane" "(-223.5 179.098 -112) (-223.46 179.161 -96) (-236.566 189.266 -96)" + "id" "24866" + "plane" "(98.795 238.902 352) (92.6941 223.7 352) (92.699 223.696 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.791945 0.610593 0 0] 0.25" - "vaxis" "[-0.00279627 -0.00362679 -1 0] 0.25" + "uaxis" "[-0.372437 -0.928057 0 -7.11936] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25141" - "plane" "(-270.902 130.803 -112) (-270.903 130.804 -96) (-255.696 124.701 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.928055 -0.372442 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24865" + "plane" "(157.199 204.602 352) (98.795 238.902 352) (98.7998 238.898 288)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-0.862645 0.50581 0 98.6739] 0.25" + "vaxis" "[0 0 -1 -383.646] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25140" - "plane" "(-236.604 189.201 -112) (-236.566 189.266 -96) (-270.903 130.804 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.506445 -0.862272 0 0] 0.25" + "id" "24864" + "plane" "(92.6941 223.7 352) (147.098 191.5 352) (147.094 191.502 288)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25139" - "plane" "(-255.698 124.701 -112) (-255.696 124.701 -96) (-223.46 179.161 -96)" + "id" "24863" + "plane" "(92.699 223.696 288) (147.094 191.502 288) (157.195 204.604 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.509375 0.860544 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11586,13 +9116,13 @@ entity } solid { - "id" "137587" + "id" "137541" side { - "id" "25150" - "plane" "(-270.899 130.798 -112) (-288 65.2993 -112) (-271.898 63.1995 -112)" + "id" "24874" + "plane" "(92.7014 223.696 352) (31.2014 239.895 352) (33 256 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -11600,21 +9130,21 @@ entity } side { - "id" "25149" - "plane" "(-255.7 124.691 -96) (-271.898 63.1973 -96) (-288 65.2973 -96)" + "id" "24873" + "plane" "(92.7014 223.696 352) (98.8008 238.895 352) (98.7971 238.898 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.372433 0.928059 0 7.12012] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25148" - "plane" "(-255.699 124.697 -112) (-255.7 124.691 -96) (-270.902 130.793 -96)" + "id" "24872" + "plane" "(33 256 352) (31.2014 239.895 352) (31.1998 239.896 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.928034 0.372495 0 0] 0.25" + "uaxis" "[-0.111068 -0.993813 0 -48.9914] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -11622,33 +9152,33 @@ entity } side { - "id" "25147" - "plane" "(-288 65.2993 -112) (-288 65.2973 -96) (-271.898 63.1973 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.991604 -0.129311 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24871" + "plane" "(98.8008 238.895 352) (33 256 352) (33 256 288)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-0.967305 0.253616 0 -131.007] 0.25" + "vaxis" "[0 0 -1 -383.944] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25146" - "plane" "(-270.899 130.798 -112) (-270.902 130.793 -96) (-288 65.2973 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.252629 -0.967563 0 0] 0.25" + "id" "24870" + "plane" "(31.2014 239.895 352) (92.7014 223.696 352) (92.6969 223.698 288)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25145" - "plane" "(-271.898 63.1995 -112) (-271.898 63.1973 -96) (-255.7 124.691 -96)" + "id" "24869" + "plane" "(31.1998 239.896 288) (92.6969 223.698 288) (98.7971 238.898 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.25473 0.967012 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11662,13 +9192,13 @@ entity } solid { - "id" "137588" + "id" "137542" side { - "id" "25156" - "plane" "(-288 65.2944 -112) (-288 -1.29834 -112) (-271.9 0.801266 -112)" + "id" "24880" + "plane" "(-31.1981 239.898 352) (-92.7333 223.789 352) (-98.7986 238.903 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -11676,21 +9206,21 @@ entity } side { - "id" "25155" - "plane" "(-271.9 63.1983 -96) (-271.9 0.799627 -96) (-288 -1.29998 -96)" + "id" "24879" + "plane" "(-31.1981 239.898 352) (-33 256 352) (-33 256 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-0.111164 0.993802 0 13.4357] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25154" - "plane" "(-271.9 63.1948 -112) (-271.9 63.1983 -96) (-288 65.2979 -96)" + "id" "24878" + "plane" "(-98.7986 238.903 352) (-92.7333 223.789 352) (-92.734 223.79 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.991603 0.129315 0 0] 0.25" + "uaxis" "[0.372438 -0.928057 0 -38.4634] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -11698,33 +9228,33 @@ entity } side { - "id" "25153" - "plane" "(-288 -1.29834 -112) (-288 -1.29998 -96) (-271.9 0.799627 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.991603 0.129316 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24877" + "plane" "(-33 256 352) (-98.7986 238.903 352) (-98.7988 238.902 288)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-0.967462 -0.253018 0 -381.627] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25152" - "plane" "(-288 65.2944 -112) (-288 65.2979 -96) (-288 -1.29998 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "24876" + "plane" "(-92.7333 223.789 352) (-31.1981 239.898 352) (-31.1995 239.898 288)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25151" - "plane" "(-271.9 0.801266 -112) (-271.9 0.799627 -96) (-271.9 63.1983 -96)" + "id" "24875" + "plane" "(-92.734 223.79 288) (-31.1995 239.898 288) (-33 256 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11738,13 +9268,13 @@ entity } solid { - "id" "137589" + "id" "137543" side { - "id" "25162" - "plane" "(-288 -1.29878 -112) (-270.898 -66.7969 -112) (-255.699 -60.6969 -112)" + "id" "24886" + "plane" "(-92.697 223.698 352) (-147.095 191.5 352) (-157.201 204.607 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -11752,21 +9282,21 @@ entity } side { - "id" "25161" - "plane" "(-271.898 0.803461 -96) (-255.699 -60.697 -96) (-270.899 -66.7974 -96)" + "id" "24885" + "plane" "(-98.8008 238.906 352) (-98.8017 238.906 288) (-92.7171 223.746 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-0.372463 0.928047 0 38.4653] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25160" - "plane" "(-271.898 0.801147 -112) (-271.898 0.803461 -96) (-288 -1.29688 -96)" + "id" "24884" + "plane" "(-157.201 204.607 352) (-147.095 191.5 352) (-147.125 191.542 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.991603 -0.129316 0 0] 0.25" + "uaxis" "[0.610593 -0.791945 0 -51.5249] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -11774,33 +9304,33 @@ entity } side { - "id" "25159" - "plane" "(-270.898 -66.7969 -112) (-270.899 -66.7974 -96) (-255.699 -60.697 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.928051 0.372454 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24883" + "plane" "(-98.8008 238.906 352) (-157.201 204.607 352) (-157.199 204.608 288)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-0.862692 -0.50573 0 -98.7749] 0.25" + "vaxis" "[0 0 -1 -383.391] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25158" - "plane" "(-288 -1.29878 -112) (-288 -1.29688 -96) (-270.899 -66.7974 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.25263 -0.967563 0 0] 0.25" + "id" "24882" + "plane" "(-147.095 191.5 352) (-92.697 223.698 352) (-92.7171 223.746 288)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25157" - "plane" "(-255.699 -60.6969 -112) (-255.699 -60.697 -96) (-271.898 0.803461 -96)" + "id" "24881" + "plane" "(-147.125 191.542 288) (-92.7171 223.746 288) (-98.8017 238.906 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.254718 0.967015 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11814,13 +9344,13 @@ entity } solid { - "id" "137590" + "id" "137544" side { - "id" "25168" - "plane" "(-270.901 -66.7992 -112) (-236.602 -125.203 -112) (-223.498 -115.201 -112)" + "id" "24892" + "plane" "(-223.699 92.6981 352) (-239.898 31.2002 352) (-256 33.3 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -11828,21 +9358,21 @@ entity } side { - "id" "25167" - "plane" "(-255.801 -60.7009 -96) (-223.501 -115.2 -96) (-236.602 -125.2 -96)" + "id" "24891" + "plane" "(-223.699 92.6981 352) (-238.902 98.8008 352) (-238.898 98.7959 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-0.928042 0.372475 0 38.4662] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25166" - "plane" "(-255.799 -60.6992 -112) (-255.801 -60.7009 -96) (-270.902 -66.8008 -96)" + "id" "24890" + "plane" "(-256 33.3 352) (-239.898 31.2002 352) (-239.899 31.1987 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.927216 -0.374527 0 0] 0.25" + "uaxis" "[0.991604 -0.129311 0 -15.4771] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -11850,10 +9380,10 @@ entity } side { - "id" "25165" - "plane" "(-236.602 -125.203 -112) (-236.602 -125.2 -96) (-223.501 -115.2 -96)" + "id" "24889" + "plane" "(-238.902 98.8008 352) (-256 33.3 352) (-256 33.2984 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.794896 0.606745 0 0] 0.25" + "uaxis" "[-0.252623 -0.967565 0 -27.5126] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -11861,22 +9391,22 @@ entity } side { - "id" "25164" - "plane" "(-270.901 -66.7992 -112) (-270.902 -66.8008 -96) (-236.602 -125.2 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.5064 -0.862299 0 0] 0.25" + "id" "24888" + "plane" "(-239.898 31.2002 352) (-223.699 92.6981 352) (-223.701 92.6955 288)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25163" - "plane" "(-223.498 -115.201 -112) (-223.501 -115.2 -96) (-255.801 -60.7009 -96)" + "id" "24887" + "plane" "(-238.898 98.7959 288) (-256 33.2984 288) (-239.899 31.1987 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.509847 0.860265 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11890,13 +9420,13 @@ entity } solid { - "id" "137591" + "id" "137545" side { - "id" "25174" - "plane" "(-236.597 -125.199 -112) (-189.195 -172.602 -112) (-179.097 -159.503 -112)" + "id" "24898" + "plane" "(-191.498 147.102 352) (-223.698 92.7005 352) (-238.902 98.8025 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -11904,21 +9434,21 @@ entity } side { - "id" "25173" - "plane" "(-223.558 -115.245 -96) (-179.145 -159.559 -96) (-189.199 -172.599 -96)" + "id" "24897" + "plane" "(-191.498 147.102 352) (-204.598 157.203 352) (-204.6 157.204 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-0.791913 0.610633 0 51.5259] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25172" - "plane" "(-223.498 -115.201 -112) (-223.558 -115.245 -96) (-236.602 -125.199 -96)" + "id" "24896" + "plane" "(-238.902 98.8025 352) (-223.698 92.7005 352) (-223.698 92.7026 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.794933 -0.606697 0 0] 0.25" + "uaxis" "[0.928047 -0.372463 0 -38.4653] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -11926,10 +9456,10 @@ entity } side { - "id" "25171" - "plane" "(-189.195 -172.602 -112) (-189.199 -172.599 -96) (-179.145 -159.559 -96)" + "id" "24895" + "plane" "(-204.598 157.203 352) (-238.902 98.8025 352) (-238.902 98.8046 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.610561 0.791969 0 0] 0.25" + "uaxis" "[-0.506437 -0.862277 0 18.4525] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -11937,22 +9467,22 @@ entity } side { - "id" "25170" - "plane" "(-236.597 -125.199 -112) (-236.602 -125.199 -96) (-189.199 -172.599 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707099 -0.707114 0 0] 0.25" + "id" "24894" + "plane" "(-223.698 92.7005 352) (-191.498 147.102 352) (-191.499 147.102 288)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[0 -1 0 -25.5664] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25169" - "plane" "(-179.097 -159.503 -112) (-179.145 -159.559 -96) (-223.558 -115.245 -96)" + "id" "24893" + "plane" "(-204.6 157.204 288) (-238.902 98.8046 288) (-223.698 92.7026 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.707895 0.706317 0 0] 0.25" - "vaxis" "[0.00324687 0.00325413 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -11966,13 +9496,13 @@ entity } solid { - "id" "137592" + "id" "137546" side { - "id" "25180" - "plane" "(-189.196 -172.603 -112) (-130.799 -206.902 -112) (-124.698 -191.704 -112)" + "id" "24904" + "plane" "(31.2014 -239.928 352) (92.7004 -223.701 352) (98.8003 -238.9 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -11980,32 +9510,32 @@ entity } side { - "id" "25179" - "plane" "(-179.167 -159.465 -96) (-124.698 -191.706 -96) (-130.798 -206.902 -96)" + "id" "24903" + "plane" "(31.2014 -239.928 352) (33.2969 -256 352) (33.2973 -256 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.129296 -0.991606 0 -15.4755] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25178" - "plane" "(-179.097 -159.505 -112) (-179.167 -159.465 -96) (-189.266 -172.563 -96)" + "id" "24902" + "plane" "(98.8003 -238.9 352) (92.7004 -223.701 352) (92.6998 -223.702 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.610596 -0.791943 0 0] 0.25" - "vaxis" "[0.00401262 -0.00309377 -1 0] 0.25" + "uaxis" "[-0.372433 0.928059 0 38.463] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25177" - "plane" "(-130.799 -206.902 -112) (-130.798 -206.902 -96) (-124.698 -191.706 -96)" + "id" "24901" + "plane" "(33.2969 -256 352) (98.8003 -238.9 352) (98.8004 -238.903 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.372506 0.92803 0 0] 0.25" + "uaxis" "[0.967578 0.25257 0 -27.521] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12013,22 +9543,22 @@ entity } side { - "id" "25176" - "plane" "(-189.196 -172.603 -112) (-189.266 -172.563 -96) (-130.798 -206.902 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.862281 -0.50643 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24900" + "plane" "(92.7004 -223.701 352) (31.2014 -239.928 352) (31.202 -239.929 288)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[-1 0 0 60.0469] 0.25" + "vaxis" "[0 0 -1 -63.9879] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25175" - "plane" "(-124.698 -191.704 -112) (-124.698 -191.706 -96) (-179.167 -159.465 -96)" + "id" "24899" + "plane" "(33.2973 -256 288) (98.8004 -238.903 288) (92.6998 -223.702 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.860547 0.509371 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -12042,13 +9572,13 @@ entity } solid { - "id" "137593" + "id" "137547" side { - "id" "25186" - "plane" "(-130.803 -206.903 -112) (-65.2988 -224 -112) (-63.1998 -207.903 -112)" + "id" "24910" + "plane" "(31.1963 240 352) (-31.2013 240 352) (-33 256 352)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12056,21 +9586,21 @@ entity } side { - "id" "25185" - "plane" "(-124.707 -191.698 -96) (-63.2015 -207.9 -96) (-65.3005 -224 -96)" + "id" "24909" + "plane" "(31.1963 240 352) (33 256 352) (33 256 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.111903 0.993719 0 48.8724] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25184" - "plane" "(-124.701 -191.701 -112) (-124.707 -191.698 -96) (-130.809 -206.898 -96)" + "id" "24908" + "plane" "(-33 256 352) (-31.2013 240 352) (-31.2013 240 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.372496 -0.928034 0 0] 0.25" + "uaxis" "[0.111813 -0.993729 0 -13.5094] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12078,33 +9608,33 @@ entity } side { - "id" "25183" - "plane" "(-65.2988 -224 -112) (-65.3005 -224 -96) (-63.2015 -207.9 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.129306 0.991605 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24907" + "plane" "(33 256 352) (-33 256 352) (-33 256 288)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 -380] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25182" - "plane" "(-130.803 -206.903 -112) (-130.809 -206.898 -96) (-65.3005 -224 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.967585 -0.252546 0 0] 0.25" + "id" "24906" + "plane" "(-31.2013 240 352) (31.1963 240 352) (31.1965 240 288)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25181" - "plane" "(-63.1998 -207.903 -112) (-63.2015 -207.9 -96) (-124.707 -191.698 -96)" + "id" "24905" + "plane" "(-31.2013 240 288) (31.1965 240 288) (33 256 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.967009 0.254743 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -12118,13 +9648,13 @@ entity } solid { - "id" "137594" + "id" "137548" side { - "id" "25192" - "plane" "(-65.2998 -224 -112) (1.29883 -224 -112) (-0.80077 -207.9 -112)" + "id" "24916" + "plane" "(-92.6956 -223.705 288) (-31.1998 -239.904 288) (-33.2989 -256 288)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12132,21 +9662,21 @@ entity } side { - "id" "25191" - "plane" "(-63.2017 -207.9 -96) (-0.800123 -207.9 -96) (1.29948 -224 -96)" + "id" "24915" + "plane" "(-92.6956 -223.705 288) (-98.7949 -238.902 288) (-98.7978 -238.902 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-0.372464 -0.928046 0 -7.11449] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25190" - "plane" "(-63.2002 -207.9 -112) (-63.2017 -207.9 -96) (-65.3013 -224 -96)" + "id" "24914" + "plane" "(-33.2989 -256 288) (-31.1998 -239.904 288) (-31.2014 -239.903 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.129315 -0.991604 0 0] 0.25" + "uaxis" "[0.129318 0.991603 0 46.3725] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12154,10 +9684,10 @@ entity } side { - "id" "25189" - "plane" "(1.29883 -224 -112) (1.29948 -224 -96) (-0.800123 -207.9 -96)" + "id" "24913" + "plane" "(-98.7949 -238.902 288) (-33.2989 -256 288) (-33.3007 -256 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.129315 0.991603 0 0] 0.25" + "uaxis" "[0.967571 -0.252598 0 -28.1816] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12165,22 +9695,22 @@ entity } side { - "id" "25188" - "plane" "(-65.2998 -224 -112) (-65.3013 -224 -96) (1.29948 -224 -96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "24912" + "plane" "(-31.1998 -239.904 288) (-92.6956 -223.705 288) (-92.698 -223.704 160)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "16" + "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25187" - "plane" "(-0.80077 -207.9 -112) (-0.800123 -207.9 -96) (-63.2017 -207.9 -96)" + "id" "24911" + "plane" "(-98.7978 -238.902 160) (-33.3007 -256 160) (-31.2014 -239.903 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -12194,12 +9724,12 @@ entity } solid { - "id" "137595" + "id" "137549" side { - "id" "25198" - "plane" "(1 288 -112) (66.7969 270.898 -112) (17.3975 150.896 -112)" - "material" "MOTEL/ELEVATOR_CARPET001" + "id" "24922" + "plane" "(-239.9 -31.1998 288) (-223.801 -92.6969 288) (-238.9 -98.7966 288)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -12208,10 +9738,10 @@ entity } side { - "id" "25197" - "plane" "(1 288 -112) (-14.8993 160 -112) (-14.8993 160 -864)" + "id" "24921" + "plane" "(-239.9 -31.1998 288) (-256 -33.2993 288) (-256 -33.2999 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.123267 -0.992374 0 0] 0.25" + "uaxis" "[-0.991604 -0.129311 0 46.3735] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12219,10 +9749,10 @@ entity } side { - "id" "25196" - "plane" "(17.3975 150.896 -112) (66.7969 270.898 -112) (66.7991 270.901 -864)" + "id" "24920" + "plane" "(-238.9 -98.7966 288) (-223.801 -92.6969 288) (-223.8 -92.6982 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.380666 0.924712 0 0] 0.25" + "uaxis" "[0.927205 0.374553 0 -6.73946] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12230,32 +9760,32 @@ entity } side { - "id" "25195" - "plane" "(66.7969 270.898 -112) (1 288 -112) (1 288 -864)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-0.967404 0.253237 0 0] 0.25" + "id" "24919" + "plane" "(-256 -33.2993 288) (-238.9 -98.7966 288) (-238.898 -98.7972 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.252583 -0.967575 0 -28.1802] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "512" + "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25194" - "plane" "(-14.8993 160 -112) (17.3975 150.896 -112) (17.3979 150.896 -864)" + "id" "24918" + "plane" "(-223.801 -92.6969 288) (-239.9 -31.1998 288) (-239.9 -31.2004 160)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-0.464983 0.1308 -0.875604 -15.4873] 0.25" - "vaxis" "[-0.84289 0.237106 0.48303 -14.0391] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25193" - "plane" "(-14.8993 160 -864) (17.3979 150.896 -864) (66.7991 270.901 -864)" + "id" "24917" + "plane" "(-256 -33.2999 160) (-238.898 -98.7972 160) (-223.8 -92.6982 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12270,12 +9800,12 @@ entity } solid { - "id" "137596" + "id" "137550" side { - "id" "25204" - "plane" "(66.796 270.902 -112) (125.195 236.598 -112) (46.5955 134.8 -112)" - "material" "MOTEL/ELEVATOR_CARPET001" + "id" "24928" + "plane" "(-223.782 -92.7293 288) (-191.498 -147.203 288) (-204.597 -157.202 288)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -12284,10 +9814,10 @@ entity } side { - "id" "25203" - "plane" "(66.796 270.902 -112) (17.3964 150.901 -112) (17.3992 150.9 -864)" + "id" "24927" + "plane" "(-223.782 -92.7293 288) (-238.902 -98.7969 288) (-238.9 -98.7984 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.380668 -0.924712 0 0] 0.25" + "uaxis" "[-0.928065 -0.372417 0 7.12294] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12295,10 +9825,10 @@ entity } side { - "id" "25202" - "plane" "(46.5955 134.8 -112) (125.195 236.598 -112) (125.197 236.602 -864)" + "id" "24926" + "plane" "(-204.597 -157.202 288) (-191.498 -147.203 288) (-191.497 -147.204 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.611145 0.791519 0 0] 0.25" + "uaxis" "[0.794881 0.606765 0 -24.0788] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12306,32 +9836,32 @@ entity } side { - "id" "25201" - "plane" "(125.195 236.598 -112) (66.796 270.902 -112) (66.7983 270.899 -864)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-0.862599 0.505886 0 0] 0.25" + "id" "24925" + "plane" "(-238.902 -98.7969 288) (-204.597 -157.202 288) (-204.597 -157.204 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.506438 -0.862276 0 -47.1954] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "512" + "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25200" - "plane" "(17.3964 150.901 -112) (46.5955 134.8 -112) (46.5946 134.801 -864)" + "id" "24924" + "plane" "(-191.498 -147.203 288) (-223.782 -92.7293 288) (-223.781 -92.7315 160)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-0.422913 0.233364 -0.875606 -23.1621] 0.25" - "vaxis" "[-0.766646 0.423011 0.483026 -15.9609] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25199" - "plane" "(17.3992 150.9 -864) (46.5946 134.801 -864) (125.197 236.602 -864)" + "id" "24923" + "plane" "(-238.9 -98.7984 160) (-204.597 -157.204 160) (-191.497 -147.204 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12346,12 +9876,12 @@ entity } solid { - "id" "137597" + "id" "137551" side { - "id" "25210" - "plane" "(70.7989 110.6 -112) (46.5998 134.799 -112) (125.199 236.598 -112)" - "material" "MOTEL/ELEVATOR_CARPET001" + "id" "24934" + "plane" "(-191.502 -147.103 288) (-147.195 -191.504 288) (-157.195 -204.603 288)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -12360,10 +9890,10 @@ entity } side { - "id" "25209" - "plane" "(125.199 236.598 -112) (46.5998 134.799 -112) (46.5996 134.799 -864)" + "id" "24933" + "plane" "(-191.502 -147.103 288) (-204.598 -157.199 288) (-204.599 -157.198 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.61114 -0.791522 0 0] 0.25" + "uaxis" "[-0.79194 -0.610599 0 23.2116] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12371,10 +9901,10 @@ entity } side { - "id" "25208" - "plane" "(70.7989 110.6 -112) (172.598 189.199 -112) (172.599 189.196 -864)" + "id" "24932" + "plane" "(-157.195 -204.603 288) (-147.195 -191.504 288) (-147.2 -191.499 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.791528 0.611133 0 0] 0.25" + "uaxis" "[0.606756 0.794888 0 -39.9191] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12382,32 +9912,32 @@ entity } side { - "id" "25207" - "plane" "(172.598 189.199 -112) (125.199 236.598 -112) (125.199 236.598 -864)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-0.706991 0.707222 0 0] 0.25" + "id" "24931" + "plane" "(-204.598 -157.199 288) (-157.195 -204.603 288) (-157.2 -204.601 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 -53.0194] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "512" + "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25206" - "plane" "(46.5998 134.799 -112) (70.7989 110.6 -112) (70.8002 110.599 -864)" + "id" "24930" + "plane" "(-147.195 -191.504 288) (-191.502 -147.103 288) (-191.504 -147.101 160)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-0.341556 0.341549 -0.875605 -35.3691] 0.25" - "vaxis" "[-0.619151 0.619141 0.483028 -26.1074] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25205" - "plane" "(46.5996 134.799 -864) (70.8002 110.599 -864) (172.599 189.196 -864)" + "id" "24929" + "plane" "(-204.599 -157.198 160) (-157.2 -204.601 160) (-147.2 -191.499 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12422,12 +9952,12 @@ entity } solid { - "id" "137598" + "id" "137552" side { - "id" "25216" - "plane" "(86.9029 81.3975 -112) (70.8021 110.603 -112) (172.598 189.2 -112)" - "material" "MOTEL/ELEVATOR_CARPET001" + "id" "24940" + "plane" "(-147.1 -191.501 288) (-92.6999 -223.701 288) (-98.8012 -238.902 288)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -12436,10 +9966,10 @@ entity } side { - "id" "25215" - "plane" "(172.598 189.2 -112) (70.8021 110.603 -112) (70.7997 110.606 -864)" + "id" "24939" + "plane" "(-147.1 -191.501 288) (-157.199 -204.602 288) (-157.197 -204.601 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.791524 -0.611138 0 0] 0.25" + "uaxis" "[-0.610558 -0.791972 0 40.779] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12447,10 +9977,10 @@ entity } side { - "id" "25214" - "plane" "(86.9029 81.3975 -112) (206.902 130.797 -112) (206.899 130.799 -864)" + "id" "24938" + "plane" "(-98.8012 -238.902 288) (-92.6999 -223.701 288) (-92.704 -223.699 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.924711 0.380669 0 0] 0.25" + "uaxis" "[0.372454 0.928051 0 7.11642] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12458,10 +9988,10 @@ entity } side { - "id" "25213" - "plane" "(206.902 130.797 -112) (172.598 189.2 -112) (172.595 189.203 -864)" + "id" "24937" + "plane" "(-157.199 -204.602 288) (-98.8012 -238.902 288) (-98.8039 -238.897 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.506444 0.862273 0 0] 0.25" + "uaxis" "[0.862274 -0.506441 0 -47.1955] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12469,21 +9999,21 @@ entity } side { - "id" "25212" - "plane" "(70.8021 110.603 -112) (86.9029 81.3975 -112) (86.9006 81.4002 -864)" + "id" "24936" + "plane" "(-92.6999 -223.701 288) (-147.1 -191.501 288) (-147.099 -191.502 160)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-0.233321 0.422939 -0.875605 -38.0322] 0.25" - "vaxis" "[-0.422939 0.766686 0.483027 -18.959] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25211" - "plane" "(70.7997 110.606 -864) (86.9006 81.4002 -864) (206.899 130.799 -864)" + "id" "24935" + "plane" "(-157.197 -204.601 160) (-98.8039 -238.897 160) (-92.704 -223.699 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12498,12 +10028,12 @@ entity } solid { - "id" "137599" + "id" "137553" side { - "id" "25222" - "plane" "(96 49.0983 -112) (86.9026 81.4007 -112) (206.901 130.8 -112)" - "material" "MOTEL/ELEVATOR_CARPET001" + "id" "24946" + "plane" "(-31.2012 -239.9 288) (31.2003 -239.9 288) (33.2999 -256 288)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -12512,10 +10042,10 @@ entity } side { - "id" "25221" - "plane" "(206.901 130.8 -112) (86.9026 81.4007 -112) (86.9036 81.3976 -864)" + "id" "24945" + "plane" "(-31.2012 -239.9 288) (-33.3008 -256 288) (-33.2984 -256 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.92471 -0.380672 0 0] 0.25" + "uaxis" "[-0.129315 -0.991604 0 -46.373] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12523,10 +10053,10 @@ entity } side { - "id" "25220" - "plane" "(96 49.0983 -112) (224 65.2983 -112) (224 65.2999 -864)" + "id" "24944" + "plane" "(33.2999 -256 288) (31.2003 -239.9 288) (31.1987 -239.9 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.992086 0.125563 0 0] 0.25" + "uaxis" "[-0.129315 0.991604 0 15.4776] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12534,10 +10064,10 @@ entity } side { - "id" "25219" - "plane" "(224 65.2983 -112) (206.901 130.8 -112) (206.902 130.797 -864)" + "id" "24943" + "plane" "(-33.3008 -256 288) (33.2999 -256 288) (33.2983 -256 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.252589 0.967574 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12545,21 +10075,21 @@ entity } side { - "id" "25218" - "plane" "(86.9026 81.4007 -112) (96 49.0983 -112) (96 49.0996 -864)" + "id" "24942" + "plane" "(31.2003 -239.9 288) (-31.2012 -239.9 288) (-31.1988 -239.9 160)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-0.130747 0.464995 -0.875606 -23.3887] 0.25" - "vaxis" "[-0.237013 0.842918 0.483027 -44.4287] 0.25" + "uaxis" "[-1 0 0 61.5703] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25217" - "plane" "(86.9036 81.3976 -864) (96 49.0996 -864) (224 65.2999 -864)" + "id" "24941" + "plane" "(-33.2984 -256 160) (33.2983 -256 160) (31.1987 -239.9 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12574,12 +10104,12 @@ entity } solid { - "id" "137600" + "id" "137554" side { - "id" "25228" - "plane" "(96 14.9009 -112) (96 49.099 -112) (224 65.2992 -112)" - "material" "MOTEL/ELEVATOR_CARPET001" + "id" "24952" + "plane" "(-239.9 31.1939 288) (-239.9 -31.2007 288) (-256 -33.3003 288)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -12588,10 +10118,10 @@ entity } side { - "id" "25227" - "plane" "(224 65.2992 -112) (96 49.099 -112) (96 49.0991 -864)" + "id" "24951" + "plane" "(-239.9 31.1939 288) (-256 33.2935 288) (-256 33.3008 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.992086 -0.125562 0 0] 0.25" + "uaxis" "[-0.991604 0.129315 0 15.4776] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12599,10 +10129,10 @@ entity } side { - "id" "25226" - "plane" "(96 14.9009 -112) (224 -1.29932 -112) (224 -1.29936 -864)" + "id" "24950" + "plane" "(-256 -33.3003 288) (-239.9 -31.2007 288) (-239.9 -31.2008 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.992086 -0.125562 0 0] 0.25" + "uaxis" "[0.991603 0.129316 0 -46.3727] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12610,10 +10140,10 @@ entity } side { - "id" "25225" - "plane" "(224 -1.29932 -112) (224 65.2992 -112) (224 65.2994 -864)" + "id" "24949" + "plane" "(-256 33.2935 288) (-256 -33.3003 288) (-256 -33.3004 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12621,21 +10151,21 @@ entity } side { - "id" "25224" - "plane" "(96 49.099 -112) (96 14.9009 -112) (96 14.9009 -864)" + "id" "24948" + "plane" "(-239.9 -31.2007 288) (-239.9 31.1939 288) (-239.9 31.2012 160)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0 0.483026 -0.875606 -15.2358] 0.25" - "vaxis" "[0 0.875606 0.483026 -17.665] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25223" - "plane" "(96 49.0991 -864) (96 14.9009 -864) (224 -1.29936 -864)" + "id" "24947" + "plane" "(-256 33.3008 160) (-256 -33.3004 160) (-239.9 -31.2008 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12650,12 +10180,12 @@ entity } solid { - "id" "137601" + "id" "137555" side { - "id" "25234" - "plane" "(86.9005 -17.4009 -112) (96 14.9006 -112) (224 -1.29971 -112)" - "material" "MOTEL/ELEVATOR_CARPET001" + "id" "24958" + "plane" "(92.7003 -223.703 288) (147.135 -191.541 288) (157.202 -204.598 288)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -12664,10 +10194,10 @@ entity } side { - "id" "25233" - "plane" "(224 -1.29971 -112) (96 14.9006 -112) (96 14.9017 -864)" + "id" "24957" + "plane" "(92.7003 -223.703 288) (98.7969 -238.895 288) (98.8007 -238.892 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.992086 0.125561 0 0] 0.25" + "uaxis" "[0.372438 -0.928057 0 -38.4634] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12675,10 +10205,10 @@ entity } side { - "id" "25232" - "plane" "(86.9005 -17.4009 -112) (206.898 -66.8008 -112) (206.9 -66.8021 -864)" + "id" "24956" + "plane" "(157.202 -204.598 288) (147.135 -191.541 288) (147.134 -191.543 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.924709 -0.380675 0 0] 0.25" + "uaxis" "[-0.610572 0.791961 0 51.5242] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12686,10 +10216,10 @@ entity } side { - "id" "25231" - "plane" "(206.898 -66.8008 -112) (224 -1.29971 -112) (224 -1.29858 -864)" + "id" "24955" + "plane" "(98.7969 -238.895 288) (157.202 -204.598 288) (157.197 -204.595 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.252584 0.967575 0 0] 0.25" + "uaxis" "[0.862282 0.506429 0 -45.5492] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12697,21 +10227,21 @@ entity } side { - "id" "25230" - "plane" "(96 14.9006 -112) (86.9005 -17.4009 -112) (86.9011 -17.402 -864)" + "id" "24954" + "plane" "(147.135 -191.541 288) (92.7003 -223.703 288) (92.7045 -223.701 160)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0.130796 0.464979 -0.875606 -7.5188] 0.25" - "vaxis" "[0.237101 0.842894 0.483025 -55.6895] 0.25" + "uaxis" "[-1 0 0 45.4883] 0.25" + "vaxis" "[0 0 -1 -63.944] 0.25" "rotation" "0" "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25229" - "plane" "(96 14.9017 -864) (86.9011 -17.402 -864) (206.9 -66.8021 -864)" + "id" "24953" + "plane" "(98.8007 -238.892 160) (157.197 -204.595 160) (147.134 -191.543 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12726,12 +10256,12 @@ entity } solid { - "id" "137602" + "id" "137556" side { - "id" "25240" - "plane" "(70.8014 -46.5969 -112) (86.9022 -17.3991 -112) (206.9 -66.7984 -112)" - "material" "MOTEL/ELEVATOR_CARPET001" + "id" "24964" + "plane" "(147.1 -191.498 288) (191.5 -147.199 288) (204.603 -157.201 288)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -12740,10 +10270,10 @@ entity } side { - "id" "25239" - "plane" "(206.9 -66.7984 -112) (86.9022 -17.3991 -112) (86.9013 -17.4004 -864)" + "id" "24963" + "plane" "(147.1 -191.498 288) (157.199 -204.598 288) (157.259 -204.538 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.92471 0.380673 0 0] 0.25" + "uaxis" "[0.610592 -0.791945 0 -51.5247] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12751,10 +10281,10 @@ entity } side { - "id" "25238" - "plane" "(70.8014 -46.5969 -112) (172.605 -125.199 -112) (172.601 -125.198 -864)" + "id" "24962" + "plane" "(204.603 -157.201 288) (191.5 -147.199 288) (191.503 -147.196 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.791526 -0.611136 0 0] 0.25" + "uaxis" "[-0.794912 0.606724 0 51.4094] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12762,10 +10292,10 @@ entity } side { - "id" "25237" - "plane" "(172.605 -125.199 -112) (206.9 -66.7984 -112) (206.899 -66.7994 -864)" + "id" "24961" + "plane" "(157.199 -204.598 288) (204.603 -157.201 288) (204.604 -157.197 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.506438 0.862276 0 0] 0.25" + "uaxis" "[0.707099 0.707114 0 -63.9981] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12773,21 +10303,21 @@ entity } side { - "id" "25236" - "plane" "(86.9022 -17.3991 -112) (70.8014 -46.5969 -112) (70.8007 -46.5978 -864)" + "id" "24960" + "plane" "(191.5 -147.199 288) (147.1 -191.498 288) (147.16 -191.438 160)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0.233366 0.422916 -0.875604 -59.1609] 0.25" - "vaxis" "[0.423011 0.766645 0.483029 -21.2939] 0.25" + "uaxis" "[0 -1 0 -61.6445] 0.25" + "vaxis" "[0 0 -1 -23.2629] 0.25" "rotation" "0" "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25235" - "plane" "(86.9013 -17.4004 -864) (70.8007 -46.5978 -864) (172.601 -125.198 -864)" + "id" "24959" + "plane" "(191.503 -147.196 160) (147.16 -191.438 160) (157.259 -204.538 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12802,12 +10332,12 @@ entity } solid { - "id" "137603" + "id" "137557" side { - "id" "25246" - "plane" "(46.5971 -70.8014 -112) (70.8019 -46.5965 -112) (172.601 -125.196 -112)" - "material" "MOTEL/ELEVATOR_CARPET001" + "id" "24970" + "plane" "(191.503 -147.096 288) (223.699 -92.7035 288) (238.897 -98.8033 288)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -12816,10 +10346,10 @@ entity } side { - "id" "25245" - "plane" "(172.601 -125.196 -112) (70.8019 -46.5965 -112) (70.8037 -46.5948 -864)" + "id" "24969" + "plane" "(191.503 -147.096 288) (204.598 -157.191 288) (204.598 -157.194 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.791524 0.611138 0 0] 0.25" + "uaxis" "[0.791949 -0.610587 0 -51.5246] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12827,10 +10357,10 @@ entity } side { - "id" "25244" - "plane" "(46.5971 -70.8014 -112) (125.195 -172.598 -112) (125.199 -172.598 -864)" + "id" "24968" + "plane" "(238.897 -98.8033 288) (223.699 -92.7035 288) (223.699 -92.7036 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.611139 -0.791523 0 0] 0.25" + "uaxis" "[-0.928051 0.372454 0 38.4646] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12838,10 +10368,10 @@ entity } side { - "id" "25243" - "plane" "(125.195 -172.598 -112) (172.601 -125.196 -112) (172.604 -125.195 -864)" + "id" "24967" + "plane" "(204.598 -157.191 288) (238.897 -98.8033 288) (238.898 -98.8037 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" + "uaxis" "[0.506436 0.862278 0 -18.4522] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12849,21 +10379,21 @@ entity } side { - "id" "25242" - "plane" "(70.8019 -46.5965 -112) (46.5971 -70.8014 -112) (46.5994 -70.7991 -864)" + "id" "24966" + "plane" "(223.699 -92.7035 288) (191.503 -147.096 288) (191.502 -147.098 160)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0.341549 0.341548 -0.875607 57.6406] 0.25" - "vaxis" "[0.619149 0.619147 0.483023 34.3831] 0.25" + "uaxis" "[0 -1 0 -26.3047] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25241" - "plane" "(70.8037 -46.5948 -864) (46.5994 -70.7991 -864) (125.199 -172.598 -864)" + "id" "24965" + "plane" "(223.699 -92.7036 160) (191.502 -147.098 160) (204.598 -157.194 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12878,12 +10408,12 @@ entity } solid { - "id" "137604" + "id" "137558" side { - "id" "25252" - "plane" "(17.4028 -86.9003 -112) (46.6004 -70.7993 -112) (125.2 -172.599 -112)" - "material" "MOTEL/ELEVATOR_CARPET001" + "id" "24976" + "plane" "(223.701 -92.6991 288) (239.9 -31.1976 288) (256 -33.2978 288)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -12892,10 +10422,10 @@ entity } side { - "id" "25251" - "plane" "(125.2 -172.599 -112) (46.6004 -70.7993 -112) (46.5982 -70.8012 -864)" + "id" "24975" + "plane" "(223.701 -92.6991 288) (238.902 -98.7988 288) (238.903 -98.7991 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.611139 0.791523 0 0] 0.25" + "uaxis" "[0.92808 -0.37238 0 -38.4589] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12903,10 +10433,10 @@ entity } side { - "id" "25250" - "plane" "(17.4028 -86.9003 -112) (66.8027 -206.898 -112) (66.7996 -206.899 -864)" + "id" "24974" + "plane" "(256 -33.2978 288) (239.9 -31.1976 288) (239.9 -31.1991 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.380677 -0.924708 0 0] 0.25" + "uaxis" "[-0.991598 0.129355 0 15.482] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12914,10 +10444,10 @@ entity } side { - "id" "25249" - "plane" "(66.8027 -206.898 -112) (125.2 -172.599 -112) (125.197 -172.599 -864)" + "id" "24973" + "plane" "(238.902 -98.7988 288) (256 -33.2978 288) (256 -33.2994 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.862278 0.506435 0 0] 0.25" + "uaxis" "[0.252568 0.967579 0 27.5214] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12925,21 +10455,21 @@ entity } side { - "id" "25248" - "plane" "(46.6004 -70.7993 -112) (17.4028 -86.9003 -112) (17.4003 -86.9024 -864)" + "id" "24972" + "plane" "(239.9 -31.1976 288) (223.701 -92.6991 288) (223.701 -92.699 160)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0.422928 0.233315 -0.875612 23.6689] 0.25" - "vaxis" "[0.766691 0.422943 0.483016 48.7681] 0.25" + "uaxis" "[0 -1 0 -18.9727] 0.25" + "vaxis" "[0 0 -1 -63.9961] 0.25" "rotation" "0" "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25247" - "plane" "(46.5982 -70.8012 -864) (17.4003 -86.9024 -864) (66.7996 -206.899 -864)" + "id" "24971" + "plane" "(239.9 -31.1991 160) (223.701 -92.699 160) (238.903 -98.7991 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12954,12 +10484,12 @@ entity } solid { - "id" "137605" + "id" "137559" side { - "id" "25258" - "plane" "(-14.9036 -96 -112) (17.3987 -86.9033 -112) (66.7978 -206.902 -112)" - "material" "MOTEL/ELEVATOR_CARPET001" + "id" "24982" + "plane" "(239.9 -31.2017 288) (239.9 31.2008 288) (256 33.3004 288)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -12968,10 +10498,10 @@ entity } side { - "id" "25257" - "plane" "(66.7978 -206.902 -112) (17.3987 -86.9033 -112) (17.3995 -86.903 -864)" + "id" "24981" + "plane" "(239.9 -31.2017 288) (256 -33.3013 288) (256 -33.2996 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.38067 0.924711 0 0] 0.25" + "uaxis" "[0.991603 -0.129315 0 -15.4775] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12979,10 +10509,10 @@ entity } side { - "id" "25256" - "plane" "(-14.9036 -96 -112) (1.29639 -224 -112) (1.29843 -224 -864)" + "id" "24980" + "plane" "(256 33.3004 288) (239.9 31.2008 288) (239.9 31.1997 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.125562 -0.992086 0 0] 0.25" + "uaxis" "[-0.991604 -0.129315 0 46.373] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -12990,10 +10520,10 @@ entity } side { - "id" "25255" - "plane" "(1.29639 -224 -112) (66.7978 -206.902 -112) (66.7985 -206.902 -864)" + "id" "24979" + "plane" "(256 -33.3013 288) (256 33.3004 288) (256 33.2993 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.967577 0.252575 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13001,21 +10531,21 @@ entity } side { - "id" "25254" - "plane" "(17.3987 -86.9033 -112) (-14.9036 -96 -112) (-14.9016 -96 -864)" + "id" "24978" + "plane" "(239.9 31.2008 288) (239.9 -31.2017 288) (239.9 -31.2 160)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0.35861 0.323586 -0.875609 17.0966] 0.25" - "vaxis" "[0.650084 0.586584 0.483021 36.8618] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25253" - "plane" "(17.3995 -86.903 -864) (-14.9016 -96 -864) (1.29843 -224 -864)" + "id" "24977" + "plane" "(239.9 31.1997 160) (239.9 -31.2 160) (256 -33.2996 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13030,12 +10560,12 @@ entity } solid { - "id" "137606" + "id" "137560" side { - "id" "25264" - "plane" "(-49.0986 -96 -112) (-14.9004 -96 -112) (1.29984 -224 -112)" - "material" "MOTEL/ELEVATOR_CARPET001" + "id" "24988" + "plane" "(239.896 31.2007 288) (223.796 92.7021 288) (238.9 98.8048 288)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -13044,10 +10574,10 @@ entity } side { - "id" "25263" - "plane" "(1.29984 -224 -112) (-14.9004 -96 -112) (-14.9014 -96 -864)" + "id" "24987" + "plane" "(239.896 31.2007 288) (256 33.3013 288) (256 33.2991 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.125563 0.992086 0 0] 0.25" + "uaxis" "[0.991604 0.129313 0 -46.3732] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13055,10 +10585,10 @@ entity } side { - "id" "25262" - "plane" "(-49.0986 -96 -112) (-65.2988 -224 -112) (-65.2995 -224 -864)" + "id" "24986" + "plane" "(238.9 98.8048 288) (223.796 92.7021 288) (223.796 92.7015 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.125563 -0.992086 0 0] 0.25" + "uaxis" "[-0.927184 -0.374605 0 6.73011] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13066,10 +10596,10 @@ entity } side { - "id" "25261" - "plane" "(-65.2988 -224 -112) (1.29984 -224 -112) (1.29884 -224 -864)" + "id" "24985" + "plane" "(256 33.3013 288) (238.9 98.8048 288) (238.899 98.8038 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-0.252591 0.967573 0 28.181] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13077,21 +10607,21 @@ entity } side { - "id" "25260" - "plane" "(-14.9004 -96 -112) (-49.0986 -96 -112) (-49.0992 -96 -864)" + "id" "24984" + "plane" "(223.796 92.7021 288) (239.896 31.2007 288) (239.896 31.1986 160)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0.257623 0.408582 -0.875609 -22.4204] 0.25" - "vaxis" "[0.467025 0.740661 0.48302 -46.7573] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25259" - "plane" "(-14.9014 -96 -864) (-49.0992 -96 -864) (-65.2995 -224 -864)" + "id" "24983" + "plane" "(223.796 92.7015 160) (239.896 31.1986 160) (256 33.2991 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13106,12 +10636,12 @@ entity } solid { - "id" "137607" + "id" "137561" side { - "id" "25270" - "plane" "(-81.3966 -86.9016 -112) (-49.1005 -96 -112) (-65.3008 -224 -112)" - "material" "MOTEL/ELEVATOR_CARPET001" + "id" "24994" + "plane" "(223.779 92.737 288) (191.503 147.201 288) (204.603 157.202 288)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -13120,10 +10650,10 @@ entity } side { - "id" "25269" - "plane" "(-65.3008 -224 -112) (-49.1005 -96 -112) (-49.1007 -96 -864)" + "id" "24993" + "plane" "(223.779 92.737 288) (238.898 98.8047 288) (238.924 98.7708 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.12556 0.992086 0 0] 0.25" + "uaxis" "[0.928065 0.372417 0 -7.12294] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13131,10 +10661,10 @@ entity } side { - "id" "25268" - "plane" "(-81.3966 -86.9016 -112) (-130.797 -206.902 -112) (-130.797 -206.901 -864)" + "id" "24992" + "plane" "(204.603 157.202 288) (191.503 147.201 288) (191.503 147.201 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.38067 -0.924711 0 0] 0.25" + "uaxis" "[-0.794874 -0.606774 0 24.0768] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13142,10 +10672,10 @@ entity } side { - "id" "25267" - "plane" "(-130.797 -206.902 -112) (-65.3008 -224 -112) (-65.3008 -224 -864)" + "id" "24991" + "plane" "(238.898 98.8047 288) (204.603 157.202 288) (204.604 157.203 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.967574 -0.252588 0 0] 0.25" + "uaxis" "[-0.50643 0.862281 0 47.195] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13153,21 +10683,21 @@ entity } side { - "id" "25266" - "plane" "(-49.1005 -96 -112) (-81.3966 -86.9016 -112) (-81.3972 -86.9023 -864)" + "id" "24990" + "plane" "(191.503 147.201 288) (223.779 92.737 288) (223.801 92.7014 160)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0.137355 0.46308 -0.875608 -27.8003] 0.25" - "vaxis" "[0.249013 0.839454 0.483021 -4.49707] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25265" - "plane" "(-49.1007 -96 -864) (-81.3972 -86.9023 -864) (-130.797 -206.901 -864)" + "id" "24989" + "plane" "(191.503 147.201 160) (223.801 92.7014 160) (238.924 98.7708 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13182,12 +10712,12 @@ entity } solid { - "id" "137608" + "id" "137562" side { - "id" "25276" - "plane" "(-110.601 -70.8013 -112) (-81.4036 -86.8997 -112) (-130.802 -206.898 -112)" - "material" "MOTEL/ELEVATOR_CARPET001" + "id" "25000" + "plane" "(191.503 147.095 288) (147.207 191.492 288) (157.207 204.594 288)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -13196,10 +10726,10 @@ entity } side { - "id" "25275" - "plane" "(-130.802 -206.898 -112) (-81.4036 -86.8997 -112) (-81.4008 -86.9003 -864)" + "id" "24999" + "plane" "(191.503 147.095 288) (204.602 157.191 288) (204.602 157.195 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.380671 0.924711 0 0] 0.25" + "uaxis" "[0.791979 0.610549 0 -23.223] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13207,10 +10737,10 @@ entity } side { - "id" "25274" - "plane" "(-110.601 -70.8013 -112) (-189.195 -172.598 -112) (-189.197 -172.601 -864)" + "id" "24998" + "plane" "(157.207 204.594 288) (147.207 191.492 288) (147.2 191.499 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.611131 -0.791529 0 0] 0.25" + "uaxis" "[-0.606726 -0.794911 0 39.9123] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13218,32 +10748,32 @@ entity } side { - "id" "25273" - "plane" "(-189.195 -172.598 -112) (-130.802 -206.898 -112) (-130.8 -206.899 -864)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.862276 -0.506439 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "24997" + "plane" "(204.602 157.191 288) (157.207 204.594 288) (157.201 204.604 160)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-0.707121 0.707092 0 -163.85] 0.25" + "vaxis" "[0 0 -1 -383.656] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25272" - "plane" "(-81.4036 -86.8997 -112) (-110.601 -70.8013 -112) (-110.599 -70.8017 -864)" + "id" "24996" + "plane" "(147.207 191.492 288) (191.503 147.095 288) (191.501 147.097 160)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[0.0281702 0.482203 -0.875606 -19.895] 0.25" - "vaxis" "[0.0510698 0.874116 0.483025 -2.13867] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25271" - "plane" "(-81.4008 -86.9003 -864) (-110.599 -70.8017 -864) (-189.197 -172.601 -864)" + "id" "24995" + "plane" "(147.2 191.499 160) (191.501 147.097 160) (204.602 157.195 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13258,12 +10788,12 @@ entity } solid { - "id" "137609" + "id" "137563" side { - "id" "25282" - "plane" "(-134.799 -46.5997 -112) (-110.597 -70.8016 -112) (-189.196 -172.601 -112)" - "material" "MOTEL/ELEVATOR_CARPET001" + "id" "25006" + "plane" "(147.1 191.499 288) (92.696 223.699 288) (98.7969 238.901 288)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -13272,10 +10802,10 @@ entity } side { - "id" "25281" - "plane" "(-189.196 -172.601 -112) (-110.597 -70.8016 -112) (-110.597 -70.8014 -864)" + "id" "25005" + "plane" "(147.1 191.499 288) (157.199 204.598 288) (157.195 204.604 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.611136 0.791526 0 0] 0.25" + "uaxis" "[0.610595 0.791943 0 -40.7875] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13283,10 +10813,10 @@ entity } side { - "id" "25280" - "plane" "(-134.799 -46.5997 -112) (-236.602 -125.199 -112) (-236.597 -125.2 -864)" + "id" "25004" + "plane" "(98.7969 238.901 288) (92.696 223.699 288) (92.6989 223.696 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.791534 -0.611124 0 0] 0.25" + "uaxis" "[-0.372437 -0.928057 0 -7.11936] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13294,32 +10824,32 @@ entity } side { - "id" "25279" - "plane" "(-236.602 -125.199 -112) (-189.196 -172.601 -112) (-189.196 -172.601 -864)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 -0.707107 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "25003" + "plane" "(157.199 204.598 288) (98.7969 238.901 288) (98.7997 238.898 160)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-0.862582 0.505917 0 98.5488] 0.25" + "vaxis" "[0 0 -1 -383.709] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25278" - "plane" "(-110.597 -70.8016 -112) (-134.799 -46.5997 -112) (-134.797 -46.6021 -864)" + "id" "25002" + "plane" "(92.696 223.699 288) (147.1 191.499 288) (147.094 191.502 160)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-0.106746 0.471082 -0.875606 -37.3633] 0.25" - "vaxis" "[-0.193478 0.853963 0.483025 -57.7969] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25277" - "plane" "(-110.597 -70.8014 -864) (-134.797 -46.6021 -864) (-236.597 -125.2 -864)" + "id" "25001" + "plane" "(92.6989 223.696 160) (147.094 191.502 160) (157.195 204.604 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13334,12 +10864,12 @@ entity } solid { - "id" "137610" + "id" "137564" side { - "id" "25288" - "plane" "(-236.597 -125.2 -112) (-270.895 -66.8027 -112) (-150.896 -17.4025 -112)" - "material" "MOTEL/ELEVATOR_CARPET001" + "id" "25012" + "plane" "(92.6961 223.698 288) (31.1997 239.896 288) (33 256 288)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -13348,10 +10878,10 @@ entity } side { - "id" "25287" - "plane" "(-236.597 -125.2 -112) (-134.796 -46.5999 -112) (-134.798 -46.5968 -864)" + "id" "25011" + "plane" "(92.6961 223.698 288) (98.7949 238.895 288) (98.7943 238.899 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.791526 0.611135 0 0] 0.25" + "uaxis" "[0.372433 0.928059 0 7.12012] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13359,10 +10889,10 @@ entity } side { - "id" "25286" - "plane" "(-150.896 -17.4025 -112) (-270.895 -66.8027 -112) (-270.895 -66.8016 -864)" + "id" "25010" + "plane" "(33 256 288) (31.1997 239.896 288) (31.1998 239.896 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.924708 -0.380678 0 0] 0.25" + "uaxis" "[-0.111068 -0.993813 0 -48.9914] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13370,32 +10900,32 @@ entity } side { - "id" "25285" - "plane" "(-270.895 -66.8027 -112) (-236.597 -125.2 -112) (-236.599 -125.197 -864)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.506428 -0.862282 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "25009" + "plane" "(98.7949 238.895 288) (33 256 288) (33 256 160)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01_NOSPEC" + "uaxis" "[-0.967305 0.253616 0 -131.007] 0.25" + "vaxis" "[0 0 -1 -383.944] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25284" - "plane" "(-134.796 -46.5999 -112) (-150.896 -17.4025 -112) (-150.897 -17.4015 -864)" + "id" "25008" + "plane" "(31.1997 239.896 288) (92.6961 223.698 288) (92.6941 223.698 160)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-0.233692 0.422734 -0.875605 -29.2402] 0.25" - "vaxis" "[-0.422734 0.766799 0.483027 -23.8242] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25283" - "plane" "(-134.798 -46.5968 -864) (-150.897 -17.4015 -864) (-270.895 -66.8016 -864)" + "id" "25007" + "plane" "(31.1998 239.896 160) (92.6941 223.698 160) (98.7943 238.899 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13410,12 +10940,12 @@ entity } solid { - "id" "137611" + "id" "137565" side { - "id" "25294" - "plane" "(-270.9 -66.7997 -112) (-288 -1.29834 -112) (-160 14.9016 -112)" - "material" "MOTEL/ELEVATOR_CARPET001" + "id" "25018" + "plane" "(-31.1999 239.898 288) (-92.702 223.798 288) (-98.8031 238.9 288)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -13424,10 +10954,10 @@ entity } side { - "id" "25293" - "plane" "(-270.9 -66.7997 -112) (-150.899 -17.4 -112) (-150.898 -17.4017 -864)" + "id" "25017" + "plane" "(-31.1999 239.898 288) (-33 256 288) (-33 256 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.924712 0.380668 0 0] 0.25" + "uaxis" "[-0.111164 0.993802 0 13.4357] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13435,10 +10965,10 @@ entity } side { - "id" "25292" - "plane" "(-160 14.9016 -112) (-288 -1.29834 -112) (-288 -1.30018 -864)" + "id" "25016" + "plane" "(-98.8031 238.9 288) (-92.702 223.798 288) (-92.7059 223.797 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.992086 -0.125562 0 0] 0.25" + "uaxis" "[0.374585 -0.927192 0 -38.6275] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13446,32 +10976,32 @@ entity } side { - "id" "25291" - "plane" "(-288 -1.29834 -112) (-270.9 -66.7997 -112) (-270.901 -66.8022 -864)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.252612 -0.967567 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "25015" + "plane" "(-33 256 288) (-98.8031 238.9 288) (-98.8066 238.898 160)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01_NOSPEC" + "uaxis" "[-0.967462 -0.253018 0 -140.485] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25290" - "plane" "(-150.899 -17.4 -112) (-160 14.9016 -112) (-160 14.9001 -864)" + "id" "25014" + "plane" "(-92.702 223.798 288) (-31.1999 239.898 288) (-31.1985 239.898 160)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-0.323604 0.358605 -0.875604 -56.624] 0.25" - "vaxis" "[-0.586589 0.650074 0.483029 -12.6387] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25289" - "plane" "(-150.898 -17.4017 -864) (-160 14.9001 -864) (-288 -1.30018 -864)" + "id" "25013" + "plane" "(-92.7059 223.797 160) (-31.1985 239.898 160) (-33 256 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13486,12 +11016,12 @@ entity } solid { - "id" "137612" + "id" "137566" side { - "id" "25300" - "plane" "(-288 -1.29638 -112) (-288 65.3008 -112) (-160 49.0998 -112)" - "material" "MOTEL/ELEVATOR_CARPET001" + "id" "25024" + "plane" "(-92.6973 223.698 288) (-147.13 191.536 288) (-157.204 204.602 288)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -13500,10 +11030,10 @@ entity } side { - "id" "25299" - "plane" "(-288 -1.29638 -112) (-160 14.9039 -112) (-160 14.9017 -864)" + "id" "25023" + "plane" "(-92.6973 223.698 288) (-98.8008 238.906 288) (-98.8011 238.908 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.992086 0.125563 0 0] 0.25" + "uaxis" "[-0.372433 0.928059 0 38.463] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13511,10 +11041,10 @@ entity } side { - "id" "25298" - "plane" "(-160 49.0998 -112) (-288 65.3008 -112) (-288 65.3012 -864)" + "id" "25022" + "plane" "(-157.204 204.602 288) (-147.13 191.536 288) (-147.131 191.537 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.992085 0.125568 0 0] 0.25" + "uaxis" "[0.610598 -0.791941 0 -51.525] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13522,32 +11052,32 @@ entity } side { - "id" "25297" - "plane" "(-288 65.3008 -112) (-288 -1.29638 -112) (-288 -1.29855 -864)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "25021" + "plane" "(-98.8008 238.906 288) (-157.204 204.602 288) (-157.207 204.604 160)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-0.862694 -0.505725 0 -98.776] 0.25" + "vaxis" "[0 0 -1 -383.397] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25296" - "plane" "(-160 14.9039 -112) (-160 49.0998 -112) (-160 49.1002 -864)" + "id" "25020" + "plane" "(-147.13 191.536 288) (-92.6973 223.698 288) (-92.6971 223.699 160)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-0.408594 0.257625 -0.875603 -56.4033] 0.25" - "vaxis" "[-0.740654 0.467024 0.483032 -36.209] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25295" - "plane" "(-160 14.9017 -864) (-160 49.1002 -864) (-288 65.3012 -864)" + "id" "25019" + "plane" "(-147.131 191.537 160) (-92.6971 223.699 160) (-98.8011 238.908 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13562,12 +11092,12 @@ entity } solid { - "id" "137613" + "id" "137567" side { - "id" "25306" - "plane" "(-288 65.3006 -112) (-270.898 130.801 -112) (-150.899 81.4017 -112)" - "material" "MOTEL/ELEVATOR_CARPET001" + "id" "25030" + "plane" "(-147.1 191.502 288) (-191.499 147.204 288) (-204.598 157.202 288)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -13576,10 +11106,10 @@ entity } side { - "id" "25305" - "plane" "(-288 65.3006 -112) (-160 49.1003 -112) (-160 49.1004 -864)" + "id" "25029" + "plane" "(-147.1 191.502 288) (-157.203 204.605 288) (-157.262 204.543 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.992086 -0.125563 0 0] 0.25" + "uaxis" "[-0.610607 0.791934 0 51.5253] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13587,10 +11117,10 @@ entity } side { - "id" "25304" - "plane" "(-150.899 81.4017 -112) (-270.898 130.801 -112) (-270.9 130.796 -864)" + "id" "25028" + "plane" "(-204.598 157.202 288) (-191.499 147.204 288) (-191.499 147.204 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.924713 0.380665 0 0] 0.25" + "uaxis" "[0.794888 -0.606756 0 -51.4104] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13598,32 +11128,32 @@ entity } side { - "id" "25303" - "plane" "(-270.898 130.801 -112) (-288 65.3006 -112) (-288 65.3007 -864)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.252626 -0.967564 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "25027" + "plane" "(-157.203 204.605 288) (-204.598 157.202 288) (-204.599 157.203 160)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-0.707092 -0.707122 0 -348.102] 0.25" + "vaxis" "[0 0 -1 -383.391] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25302" - "plane" "(-160 49.1003 -112) (-150.899 81.4017 -112) (-150.9 81.3976 -864)" + "id" "25026" + "plane" "(-191.499 147.204 288) (-147.1 191.502 288) (-147.161 191.441 160)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-0.46309 0.137362 -0.875602 -3.75684] 0.25" - "vaxis" "[-0.839446 0.249016 0.483033 -16.7578] 0.25" + "uaxis" "[0 -1 0 -18.1953] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25301" - "plane" "(-160 49.1004 -864) (-150.9 81.3976 -864) (-270.9 130.796 -864)" + "id" "25025" + "plane" "(-191.499 147.204 160) (-147.161 191.441 160) (-157.262 204.543 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13638,12 +11168,12 @@ entity } solid { - "id" "137614" + "id" "137568" side { - "id" "25312" - "plane" "(-270.901 130.8 -112) (-236.602 189.199 -112) (-134.8 110.6 -112)" - "material" "MOTEL/ELEVATOR_CARPET001" + "id" "25036" + "plane" "(-191.496 147.105 288) (-223.7 92.6978 288) (-238.904 98.7998 288)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -13652,10 +11182,10 @@ entity } side { - "id" "25311" - "plane" "(-270.901 130.8 -112) (-150.899 81.4001 -112) (-150.898 81.4012 -864)" + "id" "25035" + "plane" "(-191.496 147.105 288) (-204.598 157.207 288) (-204.601 157.201 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.924713 -0.380663 0 0] 0.25" + "uaxis" "[-0.791913 0.610633 0 51.5259] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13663,10 +11193,10 @@ entity } side { - "id" "25310" - "plane" "(-134.8 110.6 -112) (-236.602 189.199 -112) (-236.602 189.199 -864)" + "id" "25034" + "plane" "(-238.904 98.7998 288) (-223.7 92.6978 288) (-223.7 92.6995 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.791529 0.611131 0 0] 0.25" + "uaxis" "[0.928047 -0.372463 0 -38.4653] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13674,10 +11204,10 @@ entity } side { - "id" "25309" - "plane" "(-236.602 189.199 -112) (-270.901 130.8 -112) (-270.9 130.801 -864)" + "id" "25033" + "plane" "(-204.598 157.207 288) (-238.904 98.7998 288) (-238.902 98.8007 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.506435 -0.862278 0 0] 0.25" + "uaxis" "[-0.506437 -0.862277 0 18.4525] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13685,21 +11215,21 @@ entity } side { - "id" "25308" - "plane" "(-150.899 81.4001 -112) (-134.8 110.6 -112) (-134.8 110.599 -864)" + "id" "25032" + "plane" "(-223.7 92.6978 288) (-191.496 147.105 288) (-191.5 147.099 160)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-0.482206 0.0281824 -0.875604 -48.9932] 0.25" - "vaxis" "[-0.874113 0.0510803 0.483029 -58.707] 0.25" + "uaxis" "[0 -1 0 -25.5664] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25307" - "plane" "(-150.898 81.4012 -864) (-134.8 110.599 -864) (-236.602 189.199 -864)" + "id" "25031" + "plane" "(-204.601 157.201 160) (-238.902 98.8007 160) (-223.7 92.6995 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13714,12 +11244,12 @@ entity } solid { - "id" "137615" + "id" "137569" side { - "id" "25318" - "plane" "(-236.602 189.203 -112) (-189.203 236.605 -112) (-110.599 134.8 -112)" - "material" "MOTEL/ELEVATOR_CARPET001" + "id" "25042" + "plane" "(-223.699 92.6936 288) (-239.897 31.2 288) (-256 33.2999 288)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -13728,10 +11258,10 @@ entity } side { - "id" "25317" - "plane" "(-236.602 189.203 -112) (-134.799 110.6 -112) (-134.799 110.6 -864)" + "id" "25041" + "plane" "(-223.699 92.6936 288) (-238.895 98.793 288) (-238.897 98.7951 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.791523 -0.61114 0 0] 0.25" + "uaxis" "[-0.928042 0.372475 0 38.4662] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13739,10 +11269,10 @@ entity } side { - "id" "25316" - "plane" "(-110.599 134.8 -112) (-189.203 236.605 -112) (-189.202 236.603 -864)" + "id" "25040" + "plane" "(-256 33.2999 288) (-239.897 31.2 288) (-239.898 31.1981 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.611132 0.791528 0 0] 0.25" + "uaxis" "[0.991604 -0.129311 0 -15.4771] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13750,32 +11280,32 @@ entity } side { - "id" "25315" - "plane" "(-189.203 236.605 -112) (-236.602 189.203 -112) (-236.602 189.203 -864)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-0.707107 -0.707107 0 0] 0.25" + "id" "25039" + "plane" "(-238.895 98.793 288) (-256 33.2999 288) (-256 33.2984 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.252623 -0.967565 0 -27.5126] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "512" + "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25314" - "plane" "(-134.799 110.6 -112) (-110.599 134.8 -112) (-110.6 134.799 -864)" + "id" "25038" + "plane" "(-239.897 31.2 288) (-223.699 92.6936 288) (-223.7 92.6948 160)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-0.471092 -0.106745 -0.875601 -37.1055] 0.25" - "vaxis" "[-0.853955 -0.193491 0.483034 -49.1572] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25313" - "plane" "(-134.799 110.6 -864) (-110.6 134.799 -864) (-189.202 236.603 -864)" + "id" "25037" + "plane" "(-238.897 98.7951 160) (-256 33.2984 160) (-239.898 31.1981 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13790,12 +11320,12 @@ entity } solid { - "id" "137616" + "id" "137570" side { - "id" "25324" - "plane" "(-189.201 236.604 -112) (-130.801 270.902 -112) (-81.3996 150.9 -112)" - "material" "MOTEL/ELEVATOR_CARPET001" + "id" "25048" + "plane" "(31.1952 -239.9 288) (92.698 -223.801 288) (98.7973 -238.901 288)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -13804,10 +11334,10 @@ entity } side { - "id" "25323" - "plane" "(-189.201 236.604 -112) (-110.599 134.801 -112) (-110.597 134.8 -864)" + "id" "25047" + "plane" "(31.1952 -239.9 288) (33.2949 -256 288) (33.2983 -256 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.611131 -0.791529 0 0] 0.25" + "uaxis" "[0.129319 -0.991603 0 -15.478] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13815,10 +11345,10 @@ entity } side { - "id" "25322" - "plane" "(-81.3996 150.9 -112) (-130.801 270.902 -112) (-130.8 270.903 -864)" + "id" "25046" + "plane" "(98.7973 -238.901 288) (92.698 -223.801 288) (92.699 -223.801 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.380676 0.924708 0 0] 0.25" + "uaxis" "[-0.374532 0.927214 0 38.6235] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13826,32 +11356,32 @@ entity } side { - "id" "25321" - "plane" "(-130.801 270.902 -112) (-189.201 236.604 -112) (-189.199 236.605 -864)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-0.862245 -0.506491 0 0] 0.25" + "id" "25045" + "plane" "(33.2949 -256 288) (98.7973 -238.901 288) (98.7989 -238.902 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.967576 0.252579 0 -27.5196] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "512" + "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25320" - "plane" "(-110.599 134.801 -112) (-81.3996 150.9 -112) (-81.3981 150.899 -864)" + "id" "25044" + "plane" "(92.698 -223.801 288) (31.1952 -239.9 288) (31.1985 -239.899 160)" "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-0.422949 -0.233326 -0.875599 -59.7202] 0.25" - "vaxis" "[-0.766681 -0.422934 0.483039 -38.1494] 0.25" + "uaxis" "[-1 0 0 60.0469] 0.25" + "vaxis" "[0 0 -1 -63.9879] 0.25" "rotation" "0" "lightmapscale" "512" "smoothing_groups" "0" } side { - "id" "25319" - "plane" "(-110.597 134.8 -864) (-81.3981 150.899 -864) (-130.8 270.903 -864)" + "id" "25043" + "plane" "(33.2983 -256 160) (98.7989 -238.902 160) (92.699 -223.801 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13866,13 +11396,13 @@ entity } solid { - "id" "137617" + "id" "137571" side { - "id" "25330" - "plane" "(-130.806 270.899 -112) (-65 288 -112) (-49.1001 160 -112)" - "material" "MOTEL/ELEVATOR_CARPET001" - "uaxis" "[1 0 0 0] 0.25" + "id" "25054" + "plane" "(33.3011 -256 -112) (98.7969 -238.902 -112) (92.696 -223.8 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13880,21 +11410,21 @@ entity } side { - "id" "25329" - "plane" "(-130.806 270.899 -112) (-81.4067 150.897 -112) (-81.4044 150.897 -864)" + "id" "25053" + "plane" "(31.1964 -239.898 -96) (92.6981 -223.798 -96) (98.7983 -238.899 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.380665 -0.924713 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25328" - "plane" "(-49.1001 160 -112) (-65 288 -112) (-65 288 -864)" + "id" "25052" + "plane" "(31.2022 -239.898 -112) (31.1964 -239.898 -96) (33.2954 -256 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.1233 0.992369 0 0] 0.25" + "uaxis" "[0.129294 -0.991606 0 -15.4752] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13902,33 +11432,33 @@ entity } side { - "id" "25327" - "plane" "(-65 288 -112) (-130.806 270.899 -112) (-130.804 270.899 -864)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-0.966932 -0.255033 0 0] 0.25" + "id" "25051" + "plane" "(98.7969 -238.902 -112) (98.7983 -238.899 -96) (92.6981 -223.798 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.374569 0.927199 0 38.6263] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "512" + "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25326" - "plane" "(-81.4067 150.897 -112) (-49.1001 160 -112) (-49.0972 160 -864)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-0.464997 -0.130758 -0.875602 -52.8569] 0.25" - "vaxis" "[-0.84291 -0.237028 0.483032 -1.7207] 0.25" + "id" "25050" + "plane" "(33.3011 -256 -112) (33.2954 -256 -96) (98.7983 -238.899 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.967577 0.252574 0 -27.5204] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "512" + "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25325" - "plane" "(-81.4044 150.897 -864) (-49.0972 160 -864) (-65 288 -864)" + "id" "25049" + "plane" "(92.696 -223.8 -112) (92.6981 -223.798 -96) (31.1964 -239.898 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-0.967403 -0.253242 0 27.4126] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -13942,13 +11472,13 @@ entity } solid { - "id" "137618" + "id" "137572" side { - "id" "25336" - "plane" "(-65 288 -112) (1 288 -112) (-14.8998 160 -112)" - "material" "MOTEL/ELEVATOR_CARPET001" - "uaxis" "[1 0 0 0] 0.25" + "id" "25060" + "plane" "(98.8021 -238.895 -112) (157.199 -204.594 -112) (147.199 -191.494 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13956,21 +11486,21 @@ entity } side { - "id" "25335" - "plane" "(-65 288 -112) (-49.0987 160 -112) (-49.0991 160 -864)" + "id" "25059" + "plane" "(92.707 -223.792 -96) (147.195 -191.498 -96) (157.195 -204.598 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.123276 -0.992372 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25334" - "plane" "(-14.8998 160 -112) (1 288 -112) (1 288 -864)" + "id" "25058" + "plane" "(92.7012 -223.794 -112) (92.707 -223.792 -96) (98.8066 -238.891 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.123259 0.992374 0 0] 0.25" + "uaxis" "[0.374585 -0.927192 0 -38.6275] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -13978,33 +11508,33 @@ entity } side { - "id" "25333" - "plane" "(1 288 -112) (-65 288 -112) (-65 288 -864)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-1 0 0 0] 0.25" + "id" "25057" + "plane" "(157.199 -204.594 -112) (157.195 -204.598 -96) (147.195 -191.498 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.606792 0.79486 0 51.4115] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "512" + "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25332" - "plane" "(-49.0987 160 -112) (-14.8998 160 -112) (-14.8995 160 -864)" - "material" "TOOLS/TOOLSBLACK_NOPORTAL" - "uaxis" "[-0.483031 0 -0.875603 -43.8423] 0.25" - "vaxis" "[-0.875603 0 0.483031 -25.4072] 0.25" + "id" "25056" + "plane" "(98.8021 -238.895 -112) (98.8066 -238.891 -96) (157.195 -204.598 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.862271 0.506448 0 -45.5453] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" - "lightmapscale" "512" + "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25331" - "plane" "(-49.0991 160 -864) (-14.8995 160 -864) (1 288 -864)" + "id" "25055" + "plane" "(147.199 -191.494 -112) (147.195 -191.498 -96) (92.707 -223.792 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-0.86026 -0.509855 0 44.8518] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -14018,13 +11548,13 @@ entity } solid { - "id" "137619" + "id" "137573" side { - "id" "25342" - "plane" "(-0.796585 -207.927 160) (60.6623 -191.711 160) (66.7982 -206.901 160)" + "id" "25066" + "plane" "(191.496 -147.102 -112) (147.145 -191.554 -112) (157.203 -204.602 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -14032,21 +11562,21 @@ entity } side { - "id" "25341" - "plane" "(-0.796585 -207.927 160) (1.29883 -224 160) (1.29786 -224 32)" + "id" "25065" + "plane" "(147.146 -191.56 -96) (191.495 -147.11 -96) (204.593 -157.208 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.129303 -0.991605 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25340" - "plane" "(66.7982 -206.901 160) (60.6623 -191.711 160) (60.6622 -191.711 32)" + "id" "25064" + "plane" "(147.145 -191.554 -112) (147.146 -191.56 -96) (157.199 -204.602 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.37454 0.92721 0 0] 0.25" + "uaxis" "[0.610552 -0.791976 0 -51.5236] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -14054,10 +11584,10 @@ entity } side { - "id" "25339" - "plane" "(1.29883 -224 160) (66.7982 -206.901 160) (66.7969 -206.898 32)" + "id" "25063" + "plane" "(204.598 -157.203 -112) (204.593 -157.208 -96) (191.495 -147.11 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.96758 0.252565 0 0] 0.25" + "uaxis" "[-0.791952 0.610584 0 51.5246] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -14065,22 +11595,22 @@ entity } side { - "id" "25338" - "plane" "(60.6623 -191.711 160) (-0.796585 -207.927 160) (-0.797827 -207.927 32)" - "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[1 0 0 6.30859] 0.120087" - "vaxis" "[0 0 -1 -768] 0.125" + "id" "25062" + "plane" "(157.203 -204.602 -112) (157.199 -204.602 -96) (204.593 -157.208 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707077 0.707137 0 -63.9923] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25337" - "plane" "(1.29786 -224 32) (66.7969 -206.898 32) (60.6622 -191.711 32)" + "id" "25061" + "plane" "(191.496 -147.102 -112) (191.495 -147.11 -96) (147.146 -191.56 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-0.706302 -0.707911 0 63.794] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -14094,13 +11624,13 @@ entity } solid { - "id" "137620" + "id" "137574" side { - "id" "25348" - "plane" "(60.7027 -191.701 160) (115.169 -159.46 160) (125.2 -172.6 160)" + "id" "25072" + "plane" "(223.704 -92.7039 -112) (191.504 -147.106 -112) (204.601 -157.202 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -14108,32 +11638,32 @@ entity } side { - "id" "25347" - "plane" "(60.7027 -191.701 160) (66.8008 -206.898 160) (66.8014 -206.898 32)" + "id" "25071" + "plane" "(191.463 -147.168 -96) (223.704 -92.6981 -96) (238.904 -98.7977 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.372406 -0.92807 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25346" - "plane" "(125.2 -172.6 160) (115.169 -159.46 160) (115.171 -159.46 32)" + "id" "25070" + "plane" "(191.504 -147.106 -112) (191.463 -147.168 -96) (204.566 -157.27 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.606781 0.794869 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0.791986 -0.61054 0 -51.5233] 0.25" + "vaxis" "[0.00301697 0.00391358 -1 0.114766] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25345" - "plane" "(66.8008 -206.898 160) (125.2 -172.6 160) (125.203 -172.602 32)" + "id" "25069" + "plane" "(238.902 -98.8027 -112) (238.904 -98.7977 -96) (223.704 -92.6981 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.862283 0.506427 0 0] 0.25" + "uaxis" "[-0.92807 0.372407 0 38.4611] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -14141,22 +11671,22 @@ entity } side { - "id" "25344" - "plane" "(115.169 -159.46 160) (60.7027 -191.701 160) (60.7034 -191.701 32)" - "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[1 0 0 452.754] 0.106304" - "vaxis" "[0 0 -1 -768] 0.125" + "id" "25068" + "plane" "(204.601 -157.202 -112) (204.566 -157.27 -96) (238.904 -98.7977 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.506425 0.862284 0 -18.4501] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25343" - "plane" "(66.8014 -206.898 32) (125.203 -172.602 32) (115.171 -159.46 32)" + "id" "25067" + "plane" "(223.704 -92.7039 -112) (223.704 -92.6981 -96) (191.463 -147.168 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-0.509371 -0.860547 0 19.0495] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -14170,13 +11700,13 @@ entity } solid { - "id" "137621" + "id" "137575" side { - "id" "25354" - "plane" "(115.096 -159.502 160) (159.496 -115.203 160) (172.599 -125.206 160)" + "id" "25078" + "plane" "(239.902 -31.1969 -112) (223.7 -92.7032 -112) (238.899 -98.8028 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -14184,21 +11714,21 @@ entity } side { - "id" "25353" - "plane" "(115.096 -159.502 160) (125.199 -172.605 160) (125.2 -172.605 32)" + "id" "25077" + "plane" "(223.7 -92.7019 -96) (239.9 -31.2012 -96) (256 -33.301 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.610592 -0.791945 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25352" - "plane" "(172.599 -125.206 160) (159.496 -115.203 160) (159.499 -115.2 32)" + "id" "25076" + "plane" "(223.7 -92.7032 -112) (223.7 -92.7019 -96) (238.902 -98.8027 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.79486 0.606792 0 0] 0.25" + "uaxis" "[0.928061 -0.372427 0 -38.4625] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -14206,10 +11736,10 @@ entity } side { - "id" "25351" - "plane" "(125.199 -172.605 160) (172.599 -125.206 160) (172.602 -125.203 32)" + "id" "25075" + "plane" "(256 -33.2964 -112) (256 -33.301 -96) (239.9 -31.2012 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" + "uaxis" "[-0.991602 0.129328 0 15.479] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -14217,22 +11747,22 @@ entity } side { - "id" "25350" - "plane" "(159.496 -115.203 160) (115.096 -159.502 160) (115.096 -159.502 32)" - "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[1 0 0 206.633] 0.0866193" - "vaxis" "[0 0 -1 -768] 0.125" + "id" "25074" + "plane" "(238.899 -98.8028 -112) (238.902 -98.8027 -96) (256 -33.301 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.252602 0.96757 0 27.5159] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25349" - "plane" "(159.499 -115.2 32) (115.096 -159.502 32) (125.2 -172.605 32)" + "id" "25073" + "plane" "(239.902 -31.1969 -112) (239.9 -31.2012 -96) (223.7 -92.7019 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-0.254722 -0.967014 0 -27.1734] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -14246,13 +11776,13 @@ entity } solid { - "id" "137622" + "id" "137576" side { - "id" "25360" - "plane" "(159.5 -115.097 160) (191.698 -60.7014 160) (206.898 -66.8017 160)" + "id" "25084" + "plane" "(239.9 31.1992 -112) (239.9 -31.2032 -112) (256 -33.3028 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -14260,21 +11790,21 @@ entity } side { - "id" "25359" - "plane" "(159.5 -115.097 160) (172.598 -125.195 160) (172.6 -125.199 32)" + "id" "25083" + "plane" "(239.9 -31.2012 -96) (239.9 31.1993 -96) (256 33.2989 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.791949 -0.610587 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25358" - "plane" "(206.898 -66.8017 160) (191.698 -60.7014 160) (191.697 -60.7021 32)" + "id" "25082" + "plane" "(239.9 -31.2032 -112) (239.9 -31.2012 -96) (256 -33.3008 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.928051 0.372454 0 0] 0.25" + "uaxis" "[0.991603 -0.129315 0 -15.4775] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -14282,10 +11812,10 @@ entity } side { - "id" "25357" - "plane" "(172.598 -125.195 160) (206.898 -66.8017 160) (206.898 -66.8027 32)" + "id" "25081" + "plane" "(256 33.2988 -112) (256 33.2989 -96) (239.9 31.1993 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.506436 0.862278 0 0] 0.25" + "uaxis" "[-0.991604 -0.129315 0 46.373] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -14293,22 +11823,22 @@ entity } side { - "id" "25356" - "plane" "(191.698 -60.7014 160) (159.5 -115.097 160) (159.499 -115.099 32)" - "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[0 -1 0 452.656] 0.106287" - "vaxis" "[0 0 -1 -768] 0.125" + "id" "25080" + "plane" "(256 -33.3028 -112) (256 -33.3008 -96) (256 33.2989 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25355" - "plane" "(191.697 -60.7021 32) (159.499 -115.099 32) (172.6 -125.199 32)" + "id" "25079" + "plane" "(239.9 31.1992 -112) (239.9 31.1993 -96) (239.9 -31.2012 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -14322,13 +11852,13 @@ entity } solid { - "id" "137623" + "id" "137577" side { - "id" "25366" - "plane" "(191.701 -60.7016 160) (207.901 0.801689 160) (224 -1.29842 160)" + "id" "25090" + "plane" "(223.703 92.6989 -112) (239.902 31.203 -112) (256 33.3022 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -14336,21 +11866,21 @@ entity } side { - "id" "25365" - "plane" "(191.701 -60.7016 160) (206.902 -66.8008 160) (206.902 -66.8004 32)" + "id" "25089" + "plane" "(239.9 31.2012 -96) (223.701 92.7007 -96) (238.901 98.8012 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.92808 -0.37238 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25364" - "plane" "(224 -1.29842 160) (207.901 0.801689 160) (207.901 0.801278 32)" + "id" "25088" + "plane" "(239.902 31.203 -112) (239.9 31.2012 -96) (256 33.3003 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.991598 0.129355 0 0] 0.25" + "uaxis" "[0.991607 0.129288 0 -46.3768] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -14358,10 +11888,10 @@ entity } side { - "id" "25363" - "plane" "(206.902 -66.8008 160) (224 -1.29842 160) (224 -1.29883 32)" + "id" "25087" + "plane" "(238.902 98.7988 -112) (238.901 98.8012 -96) (223.701 92.7007 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.252568 0.967579 0 0] 0.25" + "uaxis" "[-0.928055 -0.372443 0 7.11833] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -14369,22 +11899,22 @@ entity } side { - "id" "25362" - "plane" "(207.901 0.801689 160) (191.701 -60.7016 160) (191.701 -60.7013 32)" - "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[0 -1 0 6.2832] 0.120071" - "vaxis" "[0 0 -1 -768] 0.125" + "id" "25086" + "plane" "(256 33.3022 -112) (256 33.3003 -96) (238.901 98.8012 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.252574 0.967578 0 28.1795] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25361" - "plane" "(207.901 0.801278 32) (191.701 -60.7013 32) (206.902 -66.8004 32)" + "id" "25085" + "plane" "(223.703 92.6989 -112) (223.701 92.7007 -96) (239.9 31.2012 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.254723 -0.967014 0 -28.3823] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -14398,13 +11928,13 @@ entity } solid { - "id" "137624" + "id" "137578" side { - "id" "25372" - "plane" "(207.9 0.799792 160) (207.9 63.2002 160) (224 65.2998 160)" + "id" "25096" + "plane" "(191.498 147.203 -112) (223.803 92.6958 -112) (238.901 98.7956 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -14412,21 +11942,21 @@ entity } side { - "id" "25371" - "plane" "(207.9 0.799792 160) (224 -1.2998 160) (224 -1.29899 32)" + "id" "25095" + "plane" "(223.798 92.696 -96) (191.499 147.194 -96) (204.605 157.198 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.991603 -0.129315 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25370" - "plane" "(224 65.2998 160) (207.9 63.2002 160) (207.9 63.1992 32)" + "id" "25094" + "plane" "(223.803 92.6958 -112) (223.798 92.696 -96) (238.898 98.7969 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.991604 -0.129315 0 0] 0.25" + "uaxis" "[0.927192 0.374586 0 -6.73357] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -14434,10 +11964,10 @@ entity } side { - "id" "25369" - "plane" "(224 -1.2998 160) (224 65.2998 160) (224 65.2988 32)" + "id" "25093" + "plane" "(204.605 157.207 -112) (204.605 157.198 -96) (191.499 147.194 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-0.794896 -0.606745 0 24.0833] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -14445,22 +11975,22 @@ entity } side { - "id" "25368" - "plane" "(207.9 63.2002 160) (207.9 0.799792 160) (207.9 0.800622 32)" - "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[0 -1 0 6.17773] 0.122047" - "vaxis" "[0 0 -1 -768] 0.125" + "id" "25092" + "plane" "(238.901 98.7956 -112) (238.898 98.7969 -96) (204.605 157.198 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.506426 0.862283 0 47.1947] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25367" - "plane" "(207.9 63.1992 32) (207.9 0.800622 32) (224 -1.29899 32)" + "id" "25091" + "plane" "(191.498 147.203 -112) (191.499 147.194 -96) (223.798 92.696 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.50985 -0.860263 0 -47.3745] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -14474,13 +12004,13 @@ entity } solid { - "id" "137625" + "id" "137579" side { - "id" "25378" - "plane" "(207.898 63.2024 160) (191.698 124.697 160) (206.902 130.799 160)" + "id" "25102" + "plane" "(147.101 191.494 -112) (191.502 147.193 -112) (204.6 157.189 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -14488,21 +12018,21 @@ entity } side { - "id" "25377" - "plane" "(224 65.3022 160) (224 65.2996 32) (208 63.2123 32)" + "id" "25101" + "plane" "(191.563 147.241 -96) (147.144 191.56 -96) (157.197 204.596 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.991603 0.129317 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25376" - "plane" "(206.902 130.799 160) (191.698 124.697 160) (191.788 124.735 32)" + "id" "25100" + "plane" "(191.502 147.193 -112) (191.563 147.241 -96) (204.602 157.191 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.928051 -0.372453 0 0] 0.25" + "uaxis" "[0.794909 0.606729 0 -24.087] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -14510,10 +12040,10 @@ entity } side { - "id" "25375" - "plane" "(224 65.3022 160) (206.902 130.799 160) (206.902 130.801 32)" + "id" "25099" + "plane" "(157.199 204.59 -112) (157.197 204.596 -96) (147.144 191.56 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.252588 0.967574 0 0] 0.25" + "uaxis" "[-0.610628 -0.791918 0 40.7949] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -14521,22 +12051,22 @@ entity } side { - "id" "25374" - "plane" "(191.698 124.697 160) (207.898 63.2024 160) (208 63.2123 32)" - "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[0 -1 0 14.6367] 0.120087" - "vaxis" "[0 0 -1 -768] 0.125" + "id" "25098" + "plane" "(204.6 157.189 -112) (204.602 157.191 -96) (157.197 204.596 -96)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-0.707106 0.707107 0 -163.879] 0.25" + "vaxis" "[0 0 -1 -383.668] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25373" - "plane" "(191.788 124.735 32) (208 63.2123 32) (224 65.2996 32)" + "id" "25097" + "plane" "(147.101 191.494 -112) (147.144 191.56 -96) (191.563 147.241 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.707904 -0.706309 0 -53.0193] 0.25" + "vaxis" "[-0.00315267 -0.00315979 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -14550,13 +12080,13 @@ entity } solid { - "id" "137626" + "id" "137580" side { - "id" "25384" - "plane" "(191.799 124.699 160) (159.5 179.199 160) (172.602 189.201 160)" + "id" "25108" + "plane" "(92.699 223.698 -112) (147.102 191.496 -112) (157.202 204.599 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -14564,32 +12094,32 @@ entity } side { - "id" "25383" - "plane" "(191.799 124.699 160) (206.902 130.801 160) (206.902 130.801 32)" + "id" "25107" + "plane" "(147.17 191.456 -96) (92.7037 223.697 -96) (98.8019 238.893 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.927188 0.374596 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25382" - "plane" "(172.602 189.201 160) (159.5 179.199 160) (159.5 179.199 32)" + "id" "25106" + "plane" "(147.102 191.496 -112) (147.17 191.456 -96) (157.27 204.559 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.794867 -0.606784 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0.610557 0.791972 0 -40.7789] 0.25" + "vaxis" "[-0.00363598 0.00280309 -1 0.824201] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25381" - "plane" "(206.902 130.801 160) (172.602 189.201 160) (172.605 189.203 32)" + "id" "25105" + "plane" "(98.7988 238.898 -112) (98.8019 238.893 -96) (92.7037 223.697 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.506435 0.862278 0 0] 0.25" + "uaxis" "[-0.372427 -0.928061 0 -7.12115] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -14597,22 +12127,22 @@ entity } side { - "id" "25380" - "plane" "(159.5 179.199 160) (191.799 124.699 160) (191.799 124.699 32)" - "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[0 -1 0 149.301] 0.106304" - "vaxis" "[0 0 -1 -768] 0.125" + "id" "25104" + "plane" "(157.202 204.599 -112) (157.27 204.559 -96) (98.8019 238.893 -96)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-0.862671 0.505764 0 98.7359] 0.25" + "vaxis" "[0 0 -1 -384.822] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25379" - "plane" "(159.5 179.199 32) (191.799 124.699 32) (206.902 130.801 32)" + "id" "25103" + "plane" "(92.699 223.698 -112) (92.7037 223.697 -96) (147.17 191.456 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.860544 -0.509375 0 -47.3496] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -14626,13 +12156,13 @@ entity } solid { - "id" "137627" + "id" "137581" side { - "id" "25390" - "plane" "(159.496 179.098 160) (115.197 223.498 160) (125.198 236.599 160)" + "id" "25114" + "plane" "(31.2019 239.897 -112) (92.6949 223.699 -112) (98.7965 238.903 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -14640,21 +12170,21 @@ entity } side { - "id" "25389" - "plane" "(159.496 179.098 160) (172.602 189.203 160) (172.541 189.256 32)" + "id" "25113" + "plane" "(92.6947 223.698 -96) (31.2022 239.895 -96) (33 256 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.791927 0.610616 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25388" - "plane" "(125.198 236.599 160) (115.197 223.498 160) (115.197 223.498 32)" + "id" "25112" + "plane" "(92.6949 223.699 -112) (92.6947 223.698 -96) (98.7949 238.898 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.606765 -0.794881 0 0] 0.25" + "uaxis" "[0.372432 0.928059 0 7.12025] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -14662,33 +12192,33 @@ entity } side { - "id" "25387" - "plane" "(172.602 189.203 160) (125.198 236.599 160) (125.199 236.602 32)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[-0.707121 0.707092 0 -344.873] 0.25" - "vaxis" "[0 0 -1 -383.656] 0.25" + "id" "25111" + "plane" "(33 256 -112) (33 256 -96) (31.2022 239.895 -96)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS" + "uaxis" "[0 -1 0 0.214996] 0.25" + "vaxis" "[0.00646112 0 -1 127.973] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25386" - "plane" "(115.197 223.498 160) (159.496 179.098 160) (159.44 179.155 32)" - "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[1 0 0 206.609] 0.0866193" - "vaxis" "[0 0 -1 -768] 0.125" + "id" "25110" + "plane" "(98.7965 238.903 -112) (98.7949 238.898 -96) (33 256 -96)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-0.967439 0.253103 0 -130.472] 0.25" + "vaxis" "[0 0 -1 -384.123] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25385" - "plane" "(115.197 223.498 32) (159.44 179.155 32) (172.541 189.256 32)" + "id" "25109" + "plane" "(31.2019 239.897 -112) (31.2022 239.895 -96) (92.6947 223.698 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.967012 -0.254729 0 -28.3828] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -14702,13 +12232,13 @@ entity } solid { - "id" "137628" + "id" "137582" side { - "id" "25396" - "plane" "(115.165 223.463 160) (60.6961 255.703 160) (66.7953 270.902 160)" + "id" "25120" + "plane" "(-31.2008 239.9 -112) (31.2017 239.9 -112) (33 256 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -14716,21 +12246,21 @@ entity } side { - "id" "25395" - "plane" "(115.165 223.463 160) (125.195 236.602 160) (125.125 236.644 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.606783 0.794868 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" + "id" "25119" + "plane" "(31.1958 239.9 -97) (-31.1995 239.9 -97) (-33 256 -97)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 128] 0.25" + "rotation" "90" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25394" - "plane" "(66.7953 270.902 160) (60.6961 255.703 160) (60.6954 255.703 32)" + "id" "25118" + "plane" "(31.2017 239.9 -112) (31.1958 239.9 -97) (33 256 -97)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.372427 -0.928061 0 0] 0.25" + "uaxis" "[0.111097 0.99381 0 48.9873] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -14738,33 +12268,33 @@ entity } side { - "id" "25393" - "plane" "(125.195 236.602 160) (66.7953 270.902 160) (66.7948 270.903 32)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[-0.862402 0.506224 0 -76.9961] 0.25" - "vaxis" "[0 0 -1 -383.821] 0.25" + "id" "25117" + "plane" "(-33 256 -112) (-33 256 -97) (-31.1995 239.9 -97)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.111097 -0.99381 0 -13.4281] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25392" - "plane" "(60.6961 255.703 160) (115.165 223.463 160) (115.095 223.504 32)" - "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[1 0 0 452.66] 0.106287" - "vaxis" "[0 0 -1 -768] 0.125" + "id" "25116" + "plane" "(33 256 -112) (33 256 -97) (-33 256 -97)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 128] 0.25" + "vaxis" "[0 0 -1 -129] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25391" - "plane" "(60.6954 255.703 32) (115.095 223.504 32) (125.125 236.644 32)" + "id" "25115" + "plane" "(-31.2008 239.9 -112) (-31.1995 239.9 -97) (31.1958 239.9 -97)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -14778,13 +12308,13 @@ entity } solid { - "id" "137629" + "id" "137583" side { - "id" "25402" - "plane" "(60.6968 255.698 160) (-0.800188 271.896 160) (1 288 160)" + "id" "25126" + "plane" "(-92.7046 223.696 -112) (-31.2001 239.905 -112) (-33 256 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -14792,55 +12322,55 @@ entity } side { - "id" "25401" - "plane" "(60.6968 255.698 160) (66.7969 270.898 160) (66.7971 270.899 32)" + "id" "25125" + "plane" "(-31.2123 240 -96) (-92.7368 223.785 -96) (-98.8019 238.901 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.372433 0.928059 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25400" - "plane" "(1 288 160) (-0.800188 271.896 160) (-0.799803 271.896 32)" + "id" "25124" + "plane" "(-31.2001 239.905 -112) (-31.2123 240 -96) (-33 256 -96)" "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS" - "uaxis" "[-0.122842 -0.992277 0 120.017] 0.25" - "vaxis" "[0 0 -1 -384] 0.25" + "uaxis" "[0.0406877 -1 0.00602039 11.688] 0.25" + "vaxis" "[-0.0573704 -0.00835166 -0.998268 -381.129] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25399" - "plane" "(66.7969 270.898 160) (1 288 160) (1 288 32)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01_NOSPEC" - "uaxis" "[-0.967444 0.253085 0 -286.227] 0.25" - "vaxis" "[0 0 -1 -384] 0.25" + "id" "25123" + "plane" "(-98.8047 238.898 -112) (-98.8019 238.901 -96) (-92.7368 223.785 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.372412 -0.928068 0 -38.4614] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25398" - "plane" "(-0.800188 271.896 160) (60.6968 255.698 160) (60.6968 255.698 32)" - "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[1 0 0 6.28125] 0.120071" - "vaxis" "[0 0 -1 -768] 0.125" + "id" "25122" + "plane" "(-33 256 -112) (-33 256 -96) (-98.8019 238.901 -96)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-0.967399 -0.253257 0 -381.375] 0.25" + "vaxis" "[0 0 -1 -383.341] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25397" - "plane" "(-0.799803 271.896 32) (60.6968 255.698 32) (66.7971 270.899 32)" + "id" "25121" + "plane" "(-92.7046 223.696 -112) (-92.7368 223.785 -96) (-31.2123 240 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.967013 0.254726 0 -27.1727] 0.25" + "vaxis" "[0.00152744 -0.00579859 -1 -0.937732] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -14854,13 +12384,13 @@ entity } solid { - "id" "137630" + "id" "137584" side { - "id" "25408" - "plane" "(-63.2017 -207.9 160) (-0.800222 -207.9 160) (1.29937 -224 160)" + "id" "25132" + "plane" "(-147.206 191.503 -112) (-92.6985 223.807 -112) (-98.7972 238.904 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -14868,32 +12398,32 @@ entity } side { - "id" "25407" - "plane" "(-63.2017 -207.9 160) (-65.3013 -224 160) (-65.2988 -224 32)" + "id" "25131" + "plane" "(-92.7355 223.782 -96) (-147.208 191.499 -96) (-157.207 204.598 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.129315 -0.991604 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25406" - "plane" "(1.29937 -224 160) (-0.800222 -207.9 160) (-0.80077 -207.9 32)" + "id" "25130" + "plane" "(-92.6985 223.807 -112) (-92.7355 223.782 -96) (-98.8359 238.883 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.129315 0.991604 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.374564 0.927201 0 38.6259] 0.25" + "vaxis" "[0.00221881 0 -1 -0.284008] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25405" - "plane" "(-65.3013 -224 160) (1.29937 -224 160) (1.29883 -224 32)" + "id" "25129" + "plane" "(-157.199 204.594 -112) (-157.207 204.598 -96) (-147.208 191.499 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0.606812 -0.794845 0 -51.4121] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -14901,22 +12431,22 @@ entity } side { - "id" "25404" - "plane" "(-0.800222 -207.9 160) (-63.2017 -207.9 160) (-63.1992 -207.9 32)" - "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[1 0 0 6.20703] 0.122047" - "vaxis" "[0 0 -1 -768] 0.125" + "id" "25128" + "plane" "(-98.7972 238.904 -112) (-98.8359 238.883 -96) (-157.207 204.598 -96)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-0.862687 -0.505737 0 -98.7544] 0.25" + "vaxis" "[0 0 -1 -383.293] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25403" - "plane" "(-65.2988 -224 32) (1.29883 -224 32) (-0.80077 -207.9 32)" + "id" "25127" + "plane" "(-147.206 191.503 -112) (-147.208 191.499 -96) (-92.7355 223.782 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.860266 0.509846 0 -44.8538] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -14930,13 +12460,13 @@ entity } solid { - "id" "137631" + "id" "137585" side { - "id" "25414" - "plane" "(-63.199 271.899 160) (-124.737 255.789 160) (-130.802 270.902 160)" + "id" "25138" + "plane" "(-191.5 147.102 -112) (-147.141 191.562 -112) (-157.195 204.601 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -14944,21 +12474,21 @@ entity } side { - "id" "25413" - "plane" "(-63.199 271.899 160) (-65 288 160) (-65 288 32)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS" - "uaxis" "[0 -1 0 128] 0.25" - "vaxis" "[0 0 -1 -384] 0.25" + "id" "25137" + "plane" "(-147.144 191.559 -96) (-191.503 147.099 -96) (-204.602 157.196 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25412" - "plane" "(-130.802 270.902 160) (-124.737 255.789 160) (-124.739 255.789 32)" + "id" "25136" + "plane" "(-147.141 191.562 -112) (-147.144 191.559 -96) (-157.195 204.594 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.372438 -0.928057 0 0] 0.25" + "uaxis" "[-0.610617 0.791926 0 51.5255] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -14966,33 +12496,33 @@ entity } side { - "id" "25411" - "plane" "(-65 288 160) (-130.802 270.902 160) (-130.803 270.898 32)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01_NOSPEC" - "uaxis" "[-0.967462 -0.253018 0 -473.076] 0.25" - "vaxis" "[0 0 -1 -384] 0.25" + "id" "25135" + "plane" "(-204.598 157.199 -112) (-204.602 157.196 -96) (-191.503 147.099 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.791963 -0.61057 0 -51.5242] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25410" - "plane" "(-124.737 255.789 160) (-63.199 271.899 160) (-63.1989 271.899 32)" - "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[1 0 0 14.6367] 0.120087" - "vaxis" "[0 0 -1 -768] 0.125" + "id" "25134" + "plane" "(-157.195 204.601 -112) (-157.195 204.594 -96) (-204.602 157.196 -96)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-0.707107 -0.707107 0 -348.12] 0.25" + "vaxis" "[0 0 -1 -383.402] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25409" - "plane" "(-124.739 255.789 32) (-63.1989 271.899 32) (-65 288 32)" + "id" "25133" + "plane" "(-191.5 147.102 -112) (-191.503 147.099 -96) (-147.144 191.559 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.706294 0.707918 0 -63.7921] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -15006,13 +12536,13 @@ entity } solid { - "id" "137632" + "id" "137586" side { - "id" "25420" - "plane" "(-124.698 255.7 160) (-179.17 223.458 160) (-189.203 236.602 160)" + "id" "25144" + "plane" "(-204.604 157.203 -112) (-238.902 98.8027 -112) (-223.698 92.7008 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -15020,55 +12550,55 @@ entity } side { - "id" "25419" - "plane" "(-124.698 255.7 160) (-130.801 270.906 160) (-130.798 270.905 32)" + "id" "25143" + "plane" "(-191.456 147.164 -96) (-223.695 92.6988 -96) (-238.903 98.8021 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.372464 0.928046 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25418" - "plane" "(-189.203 236.602 160) (-179.17 223.458 160) (-179.17 223.458 32)" + "id" "25142" + "plane" "(-191.499 147.099 -112) (-191.456 147.164 -96) (-204.563 157.27 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.606752 -0.794891 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.791945 0.610593 0 51.5249] 0.25" + "vaxis" "[-0.00279627 -0.00362679 -1 -0.106307] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25417" - "plane" "(-130.801 270.906 160) (-189.203 236.602 160) (-189.203 236.602 32)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[-0.862692 -0.50573 0 -144.464] 0.25" - "vaxis" "[0 0 -1 -383.397] 0.25" + "id" "25141" + "plane" "(-238.902 98.8027 -112) (-238.903 98.8021 -96) (-223.695 92.6988 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.928055 -0.372442 0 -38.4636] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25416" - "plane" "(-179.17 223.458 160) (-124.698 255.7 160) (-124.696 255.701 32)" - "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[1 0 0 149.301] 0.106304" - "vaxis" "[0 0 -1 -768] 0.125" + "id" "25140" + "plane" "(-204.604 157.203 -112) (-204.563 157.27 -96) (-238.903 98.8021 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.506445 -0.862272 0 18.4541] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25415" - "plane" "(-179.17 223.458 32) (-124.696 255.701 32) (-130.798 270.905 32)" + "id" "25139" + "plane" "(-223.698 92.7008 -112) (-223.695 92.6988 -96) (-191.456 147.164 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.509375 0.860544 0 -19.0504] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -15082,13 +12612,13 @@ entity } solid { - "id" "137633" + "id" "137587" side { - "id" "25426" - "plane" "(-179.099 223.503 160) (-223.501 179.202 160) (-236.598 189.198 160)" + "id" "25150" + "plane" "(-238.897 98.7992 -112) (-256 33.2993 -112) (-239.899 31.1997 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -15096,21 +12626,21 @@ entity } side { - "id" "25425" - "plane" "(-179.099 223.503 160) (-189.199 236.605 160) (-189.196 236.6 32)" + "id" "25149" + "plane" "(-223.698 92.6952 -96) (-239.897 31.1985 -96) (-256 33.2985 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.610541 0.791985 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25424" - "plane" "(-236.598 189.198 160) (-223.501 179.202 160) (-223.502 179.201 32)" + "id" "25148" + "plane" "(-223.699 92.6984 -112) (-223.698 92.6952 -96) (-238.898 98.7969 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.794926 -0.606707 0 0] 0.25" + "uaxis" "[-0.928034 0.372495 0 38.4677] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -15118,33 +12648,33 @@ entity } side { - "id" "25423" - "plane" "(-189.199 236.605 160) (-236.598 189.198 160) (-236.602 189.199 32)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[-0.707091 -0.707122 0 -348.095] 0.25" - "vaxis" "[0 0 -1 -383.391] 0.25" + "id" "25147" + "plane" "(-256 33.2993 -112) (-256 33.2985 -96) (-239.897 31.1985 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.991604 -0.129311 0 -15.4771] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25422" - "plane" "(-223.501 179.202 160) (-179.099 223.503 160) (-179.1 223.502 32)" - "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[0.707107 0.707107 0 255.978] 0.122498" - "vaxis" "[0 0 -1 -768] 0.125" + "id" "25146" + "plane" "(-238.897 98.7992 -112) (-238.898 98.7969 -96) (-256 33.2985 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.252629 -0.967563 0 -27.5115] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25421" - "plane" "(-223.502 179.201 32) (-179.1 223.502 32) (-189.196 236.6 32)" + "id" "25145" + "plane" "(-239.899 31.1997 -112) (-239.897 31.1985 -96) (-223.698 92.6952 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.25473 0.967012 0 27.1721] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -15158,13 +12688,13 @@ entity } solid { - "id" "137634" + "id" "137588" side { - "id" "25432" - "plane" "(-223.496 179.104 160) (-255.698 124.701 160) (-270.902 130.803 160)" + "id" "25156" + "plane" "(-256 33.2937 -112) (-256 -33.2983 -112) (-239.9 -31.1987 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -15172,21 +12702,21 @@ entity } side { - "id" "25431" - "plane" "(-223.496 179.104 160) (-236.598 189.207 160) (-236.601 189.203 32)" + "id" "25155" + "plane" "(-239.9 31.1979 -96) (-239.9 -31.1993 -96) (-256 -33.2989 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.791913 0.610633 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25430" - "plane" "(-270.902 130.803 160) (-255.698 124.701 160) (-255.698 124.701 32)" + "id" "25154" + "plane" "(-239.9 31.1942 -112) (-239.9 31.1979 -96) (-256 33.2974 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.928047 -0.372463 0 0] 0.25" + "uaxis" "[-0.991603 0.129315 0 15.4775] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -15194,10 +12724,10 @@ entity } side { - "id" "25429" - "plane" "(-236.598 189.207 160) (-270.902 130.803 160) (-270.902 130.803 32)" + "id" "25153" + "plane" "(-256 -33.2983 -112) (-256 -33.2989 -96) (-239.9 -31.1993 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.506437 -0.862277 0 0] 0.25" + "uaxis" "[0.991603 0.129316 0 -46.3727] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -15205,22 +12735,22 @@ entity } side { - "id" "25428" - "plane" "(-255.698 124.701 160) (-223.496 179.104 160) (-223.499 179.1 32)" - "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[0.510316 0.859987 0 -323.833] 0.123549" - "vaxis" "[0 0 -1 -768] 0.125" + "id" "25152" + "plane" "(-256 33.2937 -112) (-256 33.2974 -96) (-256 -33.2989 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25427" - "plane" "(-236.601 189.203 32) (-270.902 130.803 32) (-255.698 124.701 32)" + "id" "25151" + "plane" "(-239.9 -31.1987 -112) (-239.9 -31.1993 -96) (-239.9 31.1979 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -15234,13 +12764,13 @@ entity } solid { - "id" "137635" + "id" "137589" side { - "id" "25438" - "plane" "(-255.699 124.696 160) (-271.898 63.1999 160) (-288 65.2997 160)" + "id" "25162" + "plane" "(-256 -33.3 -112) (-238.898 -98.7988 -112) (-223.699 -92.6983 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -15248,21 +12778,21 @@ entity } side { - "id" "25437" - "plane" "(-255.699 124.696 160) (-270.898 130.797 160) (-270.899 130.797 32)" + "id" "25161" + "plane" "(-239.898 -31.1976 -96) (-223.7 -92.6967 -96) (-238.897 -98.7963 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.928042 0.372475 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25436" - "plane" "(-288 65.2997 160) (-271.898 63.1999 160) (-271.898 63.199 32)" + "id" "25160" + "plane" "(-239.897 -31.1995 -112) (-239.898 -31.1976 -96) (-256 -33.2979 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.991604 -0.129311 0 0] 0.25" + "uaxis" "[-0.991603 -0.129316 0 46.3727] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -15270,10 +12800,10 @@ entity } side { - "id" "25435" - "plane" "(-270.898 130.797 160) (-288 65.2997 160) (-288 65.2993 32)" + "id" "25159" + "plane" "(-238.898 -98.7988 -112) (-238.897 -98.7963 -96) (-223.7 -92.6967 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.252623 -0.967565 0 0] 0.25" + "uaxis" "[0.928051 0.372454 0 -7.11642] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -15281,22 +12811,22 @@ entity } side { - "id" "25434" - "plane" "(-271.898 63.1999 160) (-255.699 124.696 160) (-255.699 124.697 32)" - "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[0 -1 0 14.7363] 0.120071" - "vaxis" "[0 0 -1 -768] 0.125" + "id" "25158" + "plane" "(-256 -33.3 -112) (-256 -33.2979 -96) (-238.897 -98.7963 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.25263 -0.967563 0 -28.1847] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25433" - "plane" "(-270.899 130.797 32) (-288 65.2993 32) (-271.898 63.199 32)" + "id" "25157" + "plane" "(-223.699 -92.6983 -112) (-223.7 -92.6967 -96) (-239.898 -31.1976 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-0.254718 0.967015 0 28.3818] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -15310,13 +12840,13 @@ entity } solid { - "id" "137636" + "id" "137590" side { - "id" "25444" - "plane" "(-271.9 63.1963 160) (-271.9 0.799921 160) (-288 -1.29971 160)" + "id" "25168" + "plane" "(-238.898 -98.8008 -112) (-204.602 -157.199 -112) (-191.497 -147.197 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -15324,21 +12854,21 @@ entity } side { - "id" "25443" - "plane" "(-271.9 63.1963 160) (-288 65.2959 160) (-288 65.3008 32)" + "id" "25167" + "plane" "(-223.8 -92.7001 -96) (-191.499 -147.2 -96) (-204.602 -157.2 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.991604 0.129315 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25442" - "plane" "(-288 -1.29971 160) (-271.9 0.799921 160) (-271.9 0.799335 32)" + "id" "25166" + "plane" "(-223.796 -92.7006 -112) (-223.8 -92.7001 -96) (-238.898 -98.7988 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.991603 0.129316 0 0] 0.25" + "uaxis" "[-0.927216 -0.374527 0 6.74419] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -15346,10 +12876,10 @@ entity } side { - "id" "25441" - "plane" "(-288 65.2959 160) (-288 -1.29971 160) (-288 -1.30029 32)" + "id" "25165" + "plane" "(-204.602 -157.199 -112) (-204.602 -157.2 -96) (-191.499 -147.2 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.794896 0.606745 0 -24.0833] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -15357,22 +12887,22 @@ entity } side { - "id" "25440" - "plane" "(-271.9 0.799921 160) (-271.9 63.1963 160) (-271.9 63.2012 32)" - "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[0 -1 0 6.20898] 0.122047" - "vaxis" "[0 0 -1 -768] 0.125" + "id" "25164" + "plane" "(-238.898 -98.8008 -112) (-238.898 -98.7988 -96) (-204.602 -157.2 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.5064 -0.862299 0 -47.1935] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25439" - "plane" "(-288 65.3008 32) (-288 -1.30029 32) (-271.9 0.799335 32)" + "id" "25163" + "plane" "(-191.497 -147.197 -112) (-191.499 -147.2 -96) (-223.8 -92.7001 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-0.509847 0.860265 0 47.3743] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -15386,13 +12916,13 @@ entity } solid { - "id" "137637" + "id" "137591" side { - "id" "25450" - "plane" "(-271.926 0.79554 160) (-255.7 -60.6982 160) (-270.902 -66.7981 160)" + "id" "25174" + "plane" "(-204.598 -157.199 -112) (-157.191 -204.594 -112) (-147.1 -191.504 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -15400,21 +12930,21 @@ entity } side { - "id" "25449" - "plane" "(-271.926 0.79554 160) (-288 -1.30029 160) (-288 -1.29851 32)" + "id" "25173" + "plane" "(-191.559 -147.248 -96) (-147.15 -191.558 -96) (-157.203 -204.597 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.991607 -0.129288 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25448" - "plane" "(-270.902 -66.7981 160) (-255.7 -60.6982 160) (-255.7 -60.6986 32)" + "id" "25172" + "plane" "(-191.499 -147.204 -112) (-191.559 -147.248 -96) (-204.605 -157.203 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.928068 0.372411 0 0] 0.25" + "uaxis" "[-0.794933 -0.606697 0 24.0942] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -15422,10 +12952,10 @@ entity } side { - "id" "25447" - "plane" "(-288 -1.30029 160) (-270.902 -66.7981 160) (-270.902 -66.7988 32)" + "id" "25171" + "plane" "(-157.191 -204.594 -112) (-157.203 -204.597 -96) (-147.15 -191.558 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.252575 -0.967577 0 0] 0.25" + "uaxis" "[0.610561 0.791969 0 -40.7798] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -15433,22 +12963,22 @@ entity } side { - "id" "25446" - "plane" "(-255.7 -60.6982 160) (-271.926 0.79554 160) (-271.926 0.797188 32)" - "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[0 -1 0 6.30859] 0.120087" - "vaxis" "[0 0 -1 -768] 0.125" + "id" "25170" + "plane" "(-204.598 -157.199 -112) (-204.605 -157.203 -96) (-157.203 -204.597 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707099 -0.707114 0 -53.0193] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25445" - "plane" "(-288 -1.29851 32) (-270.902 -66.7988 32) (-255.7 -60.6986 32)" + "id" "25169" + "plane" "(-147.1 -191.504 -112) (-147.15 -191.558 -96) (-191.559 -147.248 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-0.707895 0.706317 0 53.0191] 0.25" + "vaxis" "[0.00324687 0.00325413 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -15462,13 +12992,13 @@ entity } solid { - "id" "137638" + "id" "137592" side { - "id" "25456" - "plane" "(-255.701 -60.7024 160) (-223.461 -115.172 160) (-236.599 -125.2 160)" + "id" "25180" + "plane" "(-157.2 -204.601 -112) (-98.7988 -238.902 -112) (-92.6973 -223.702 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -15476,32 +13006,32 @@ entity } side { - "id" "25455" - "plane" "(-270.898 -66.8008 160) (-270.917 -66.7685 32) (-255.768 -60.6896 32)" + "id" "25179" + "plane" "(-147.166 -191.463 -96) (-92.6971 -223.704 -96) (-98.7974 -238.901 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.928068 -0.372412 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25454" - "plane" "(-236.599 -125.2 160) (-223.461 -115.172 160) (-223.503 -115.201 32)" + "id" "25178" + "plane" "(-147.1 -191.5 -112) (-147.166 -191.463 -96) (-157.266 -204.563 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.794911 0.606726 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.610596 -0.791943 0 40.7876] 0.25" + "vaxis" "[0.00401262 -0.00309377 -1 -0.909618] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25453" - "plane" "(-270.898 -66.8008 160) (-236.599 -125.2 160) (-236.598 -125.195 32)" + "id" "25177" + "plane" "(-98.7988 -238.902 -112) (-98.7974 -238.901 -96) (-92.6971 -223.704 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.506434 -0.862279 0 0] 0.25" + "uaxis" "[0.372506 0.92803 0 7.10707] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -15509,22 +13039,22 @@ entity } side { - "id" "25452" - "plane" "(-223.461 -115.172 160) (-255.701 -60.7024 160) (-255.768 -60.6896 32)" - "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[0 -1 0 452.754] 0.106304" - "vaxis" "[0 0 -1 -768] 0.125" + "id" "25176" + "plane" "(-157.2 -204.601 -112) (-157.266 -204.563 -96) (-98.7974 -238.901 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.862281 -0.50643 0 -47.195] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25451" - "plane" "(-270.917 -66.7685 32) (-236.598 -125.195 32) (-223.503 -115.201 32)" + "id" "25175" + "plane" "(-92.6973 -223.702 -112) (-92.6971 -223.704 -96) (-147.166 -191.463 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-0.860547 0.509371 0 47.3495] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -15538,13 +13068,13 @@ entity } solid { - "id" "137639" + "id" "137593" side { - "id" "25462" - "plane" "(-223.5 -115.102 160) (-179.199 -159.504 160) (-189.196 -172.601 160)" + "id" "25186" + "plane" "(-98.8057 -238.903 -112) (-33.3003 -256 -112) (-31.201 -239.902 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -15552,21 +13082,21 @@ entity } side { - "id" "25461" - "plane" "(-223.5 -115.102 160) (-236.602 -125.203 160) (-236.541 -125.256 32)" + "id" "25185" + "plane" "(-92.7083 -223.697 -96) (-31.2006 -239.9 -96) (-33.2998 -256 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.79194 -0.610599 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25460" - "plane" "(-189.196 -172.601 160) (-179.199 -159.504 160) (-179.2 -159.503 32)" + "id" "25184" + "plane" "(-92.7029 -223.701 -112) (-92.7083 -223.697 -96) (-98.8125 -238.902 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.606756 0.794888 0 0] 0.25" + "uaxis" "[-0.372496 -0.928034 0 -7.10886] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -15574,10 +13104,10 @@ entity } side { - "id" "25459" - "plane" "(-236.602 -125.203 160) (-189.196 -172.601 160) (-189.195 -172.598 32)" + "id" "25183" + "plane" "(-33.3003 -256 -112) (-33.2998 -256 -96) (-31.2006 -239.9 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 -0.707107 0 0] 0.25" + "uaxis" "[0.129306 0.991605 0 46.3743] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -15585,22 +13115,22 @@ entity } side { - "id" "25458" - "plane" "(-179.199 -159.504 160) (-223.5 -115.102 160) (-223.444 -115.158 32)" - "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[1 0 0 20.25] 0.0866193" - "vaxis" "[0 0 -1 -768] 0.125" + "id" "25182" + "plane" "(-98.8057 -238.903 -112) (-98.8125 -238.902 -96) (-33.2998 -256 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.967585 -0.252546 0 -28.1768] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25457" - "plane" "(-236.541 -125.256 32) (-189.195 -172.598 32) (-179.2 -159.503 32)" + "id" "25181" + "plane" "(-31.201 -239.902 -112) (-31.2006 -239.9 -96) (-92.7083 -223.697 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-0.967009 0.254743 0 28.3843] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -15614,13 +13144,13 @@ entity } solid { - "id" "137640" + "id" "137594" side { - "id" "25468" - "plane" "(-179.174 -159.46 160) (-124.701 -191.704 160) (-130.8 -206.901 160)" + "id" "25192" + "plane" "(-33.2974 -256 -112) (33.2983 -256 -112) (31.1987 -239.9 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -15628,21 +13158,21 @@ entity } side { - "id" "25467" - "plane" "(-179.174 -159.46 160) (-189.203 -172.598 160) (-189.13 -172.643 32)" + "id" "25191" + "plane" "(-31.2016 -239.9 -96) (31.2003 -239.9 -96) (33.2999 -256 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.606763 -0.794882 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25466" - "plane" "(-130.8 -206.901 160) (-124.701 -191.704 160) (-124.7 -191.705 32)" + "id" "25190" + "plane" "(-31.1978 -239.9 -112) (-31.2016 -239.9 -96) (-33.3013 -256 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.372422 0.928063 0 0] 0.25" + "uaxis" "[-0.129315 -0.991604 0 -46.373] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -15650,10 +13180,10 @@ entity } side { - "id" "25465" - "plane" "(-189.203 -172.598 160) (-130.8 -206.901 160) (-130.799 -206.903 32)" + "id" "25189" + "plane" "(33.2983 -256 -112) (33.2999 -256 -96) (31.2003 -239.9 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.862278 -0.506435 0 0] 0.25" + "uaxis" "[-0.129315 0.991603 0 15.4775] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -15661,22 +13191,22 @@ entity } side { - "id" "25464" - "plane" "(-124.701 -191.704 160) (-179.174 -159.46 160) (-179.1 -159.504 32)" - "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[1 0 0 149.488] 0.106287" - "vaxis" "[0 0 -1 -768] 0.125" + "id" "25188" + "plane" "(-33.2974 -256 -112) (-33.3013 -256 -96) (33.2999 -256 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25463" - "plane" "(-189.13 -172.643 32) (-130.799 -206.903 32) (-124.7 -191.705 32)" + "id" "25187" + "plane" "(31.1987 -239.9 -112) (31.2003 -239.9 -96) (-31.2016 -239.9 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -15690,13 +13220,13 @@ entity } solid { - "id" "137641" + "id" "137664" side { - "id" "25474" - "plane" "(-124.697 -191.703 160) (-63.1999 -207.902 160) (-65.2993 -224 160)" + "id" "25612" + "plane" "(147.2 191.503 -96) (191.504 147.199 -96) (204.601 157.196 -96)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -15704,10 +13234,10 @@ entity } side { - "id" "25473" - "plane" "(-124.697 -191.703 160) (-130.797 -206.902 160) (-130.798 -206.901 32)" + "id" "25611" + "plane" "(204.601 157.196 -96) (191.504 147.199 -96) (191.505 147.198 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.372464 -0.928046 0 0] 0.25" + "uaxis" "[0.794895 0.606747 0 -24.0829] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -15715,10 +13245,10 @@ entity } side { - "id" "25472" - "plane" "(-65.2993 -224 160) (-63.1999 -207.902 160) (-63.2008 -207.902 32)" + "id" "25610" + "plane" "(147.2 191.503 -96) (157.199 204.602 -96) (157.2 204.601 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.129318 0.991603 0 0] 0.25" + "uaxis" "[-0.606815 -0.794843 0 39.9324] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -15726,21 +13256,21 @@ entity } side { - "id" "25471" - "plane" "(-130.797 -206.902 160) (-65.2993 -224 160) (-65.3003 -224 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.967571 -0.252598 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "25609" + "plane" "(157.199 204.602 -96) (204.601 157.196 -96) (204.602 157.195 32)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-0.707098 0.707115 0 -163.889] 0.25" + "vaxis" "[0 0 -1 -383.668] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25470" - "plane" "(-63.1999 -207.902 160) (-124.697 -191.703 160) (-124.698 -191.702 32)" + "id" "25608" + "plane" "(191.504 147.199 -96) (147.2 191.503 -96) (147.201 191.502 32)" "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[1 0 0 14.7344] 0.120071" + "uaxis" "[1 0 0 -163.055] 0.086608" "vaxis" "[0 0 -1 -768] 0.125" "rotation" "0" "lightmapscale" "16" @@ -15748,10 +13278,10 @@ entity } side { - "id" "25469" - "plane" "(-130.798 -206.901 32) (-65.3003 -224 32) (-63.2008 -207.902 32)" + "id" "25607" + "plane" "(191.505 147.198 32) (147.201 191.502 32) (157.2 204.601 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -15766,11 +13296,11 @@ entity } solid { - "id" "137642" + "id" "137663" side { - "id" "25480" - "plane" "(159.497 179.199 -96) (191.695 124.702 -96) (206.897 130.803 -96)" + "id" "25606" + "plane" "(92.6966 223.703 -96) (147.197 191.503 -96) (157.199 204.606 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -15780,10 +13310,10 @@ entity } side { - "id" "25479" - "plane" "(206.897 130.803 -96) (191.695 124.702 -96) (191.697 124.699 32)" + "id" "25605" + "plane" "(157.199 204.606 -96) (147.197 191.503 -96) (147.201 191.501 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.928046 0.372464 0 0] 0.25" + "uaxis" "[0.606763 0.794883 0 -39.9206] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -15791,10 +13321,10 @@ entity } side { - "id" "25478" - "plane" "(159.497 179.199 -96) (172.598 189.199 -96) (172.599 189.198 32)" + "id" "25604" + "plane" "(92.6966 223.703 -96) (98.7949 238.898 -96) (98.7965 238.9 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.794881 -0.606765 0 0] 0.25" + "uaxis" "[-0.372448 -0.928053 0 -7.11744] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -15802,21 +13332,21 @@ entity } side { - "id" "25477" - "plane" "(172.598 189.199 -96) (206.897 130.803 -96) (206.895 130.799 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.506448 0.86227 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "25603" + "plane" "(98.7949 238.898 -96) (157.199 204.606 -96) (157.2 204.601 32)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-0.862716 0.505689 0 98.8257] 0.25" + "vaxis" "[0 0 -1 -384.122] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25476" - "plane" "(191.695 124.702 -96) (159.497 179.199 -96) (159.498 179.197 32)" + "id" "25602" + "plane" "(147.197 191.503 -96) (92.6966 223.703 -96) (92.6974 223.703 32)" "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[0 -1 0 149.266] 0.106306" + "uaxis" "[1 0 0 151.709] 0.106302" "vaxis" "[0 0 -1 -768] 0.125" "rotation" "0" "lightmapscale" "16" @@ -15824,8 +13354,8 @@ entity } side { - "id" "25475" - "plane" "(191.697 124.699 32) (159.498 179.197 32) (172.599 189.198 32)" + "id" "25601" + "plane" "(147.201 191.501 32) (92.6974 223.703 32) (98.7965 238.9 32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -15842,11 +13372,11 @@ entity } solid { - "id" "137643" + "id" "137662" side { - "id" "25486" - "plane" "(191.799 124.704 -96) (207.901 63.1967 -96) (224 65.2966 -96)" + "id" "25600" + "plane" "(31.1987 239.899 -96) (92.6965 223.7 -96) (98.797 238.901 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -15856,10 +13386,10 @@ entity } side { - "id" "25485" - "plane" "(224 65.2966 -96) (207.901 63.1967 -96) (207.9 63.2005 32)" + "id" "25599" + "plane" "(98.797 238.901 -96) (92.6965 223.7 -96) (92.6961 223.7 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.991602 0.129327 0 0] 0.25" + "uaxis" "[0.372427 0.928061 0 7.12115] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -15867,32 +13397,32 @@ entity } side { - "id" "25484" - "plane" "(191.799 124.704 -96) (206.898 130.803 -96) (206.901 130.803 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.927218 -0.374521 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "25598" + "plane" "(31.1987 239.899 -96) (33 256 -96) (33 256 32)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25483" - "plane" "(206.898 130.803 -96) (224 65.2966 -96) (224 65.3003 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.252574 0.967578 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "25597" + "plane" "(33 256 -96) (98.797 238.901 -96) (98.7971 238.902 32)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01_NOSPEC" + "uaxis" "[-0.967188 0.254062 0 -131.037] 0.25" + "vaxis" "[0 0 -1 -383.613] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25482" - "plane" "(207.901 63.1967 -96) (191.799 124.704 -96) (191.8 124.704 32)" + "id" "25596" + "plane" "(92.6965 223.7 -96) (31.1987 239.899 -96) (31.1993 239.899 32)" "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[0 -1 0 14.7168] 0.120077" + "uaxis" "[1 0 0 -260.187] 0.120084" "vaxis" "[0 0 -1 -768] 0.125" "rotation" "0" "lightmapscale" "16" @@ -15900,8 +13430,8 @@ entity } side { - "id" "25481" - "plane" "(207.9 63.2005 32) (191.8 124.704 32) (206.901 130.803 32)" + "id" "25595" + "plane" "(92.6961 223.7 32) (31.1993 239.899 32) (33 256 32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -15918,11 +13448,11 @@ entity } solid { - "id" "137644" + "id" "137661" side { - "id" "25492" - "plane" "(207.9 63.1992 -96) (207.9 0.801752 -96) (224 -1.29785 -96)" + "id" "25594" + "plane" "(-92.6994 223.698 -96) (-31.2001 239.897 -96) (-33 256 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -15932,21 +13462,21 @@ entity } side { - "id" "25491" - "plane" "(224 -1.29785 -96) (207.9 0.801752 -96) (207.9 0.800772 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.991603 -0.129315 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "25593" + "plane" "(-33 256 -96) (-31.2001 239.897 -96) (-31.1983 239.898 32)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25490" - "plane" "(207.9 63.1992 -96) (224 65.2988 -96) (224 65.2988 32)" + "id" "25592" + "plane" "(-92.6994 223.698 -96) (-98.8027 238.902 -96) (-98.8022 238.903 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.991604 -0.129315 0 0] 0.25" + "uaxis" "[0.372485 -0.928038 0 -38.4669] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -15954,21 +13484,21 @@ entity } side { - "id" "25489" - "plane" "(224 65.2988 -96) (224 -1.29785 -96) (224 -1.29883 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "25591" + "plane" "(-98.8027 238.902 -96) (-33 256 -96) (-33 256 32)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01_NOSPEC" + "uaxis" "[-0.967375 -0.253351 0 -381.273] 0.25" + "vaxis" "[0 0 -1 -384.005] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25488" - "plane" "(207.9 0.801752 -96) (207.9 63.1992 -96) (207.9 63.1992 32)" + "id" "25590" + "plane" "(-31.2001 239.897 -96) (-92.6994 223.698 -96) (-92.699 223.698 32)" "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[0 -1 0 6.18164] 0.122051" + "uaxis" "[1 0 0 -251.781] 0.120077" "vaxis" "[0 0 -1 -768] 0.125" "rotation" "0" "lightmapscale" "16" @@ -15976,8 +13506,8 @@ entity } side { - "id" "25487" - "plane" "(207.9 0.800772 32) (207.9 63.1992 32) (224 65.2988 32)" + "id" "25589" + "plane" "(-31.1983 239.898 32) (-92.699 223.698 32) (-98.8022 238.903 32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -15994,11 +13524,11 @@ entity } solid { - "id" "137645" + "id" "137660" side { - "id" "25498" - "plane" "(207.902 0.801718 -96) (191.701 -60.7021 -96) (206.901 -66.8016 -96)" + "id" "25588" + "plane" "(-147.171 191.457 -96) (-92.7025 223.697 -96) (-98.8033 238.901 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -16008,10 +13538,10 @@ entity } side { - "id" "25497" - "plane" "(206.901 -66.8016 -96) (191.701 -60.7021 -96) (191.701 -60.7026 32)" + "id" "25587" + "plane" "(-98.8033 238.901 -96) (-92.7025 223.697 -96) (-92.6988 223.7 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.928063 -0.372422 0 0] 0.25" + "uaxis" "[-0.372432 0.928059 0 38.4628] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16019,10 +13549,10 @@ entity } side { - "id" "25496" - "plane" "(207.902 0.801718 -96) (224 -1.29785 -96) (224 -1.29757 32)" + "id" "25586" + "plane" "(-147.171 191.457 -96) (-157.207 204.605 -96) (-157.201 204.606 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.991602 0.129328 0 0] 0.25" + "uaxis" "[0.606723 -0.794913 0 -51.4094] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16030,21 +13560,21 @@ entity } side { - "id" "25495" - "plane" "(224 -1.29785 -96) (206.901 -66.8016 -96) (206.902 -66.8027 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.252588 0.967574 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "25585" + "plane" "(-157.207 204.605 -96) (-98.8033 238.901 -96) (-98.7999 238.904 32)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-0.862689 -0.505735 0 -98.7669] 0.25" + "vaxis" "[0 0 -1 -383.396] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25494" - "plane" "(191.701 -60.7021 -96) (207.902 0.801718 -96) (207.902 0.802069 32)" + "id" "25584" + "plane" "(-92.7025 223.697 -96) (-147.171 191.457 -96) (-147.167 191.46 32)" "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[0 -1 0 6.29102] 0.120084" + "uaxis" "[1 0 0 -151.752] 0.106306" "vaxis" "[0 0 -1 -768] 0.125" "rotation" "0" "lightmapscale" "16" @@ -16052,8 +13582,8 @@ entity } side { - "id" "25493" - "plane" "(191.701 -60.7026 32) (207.902 0.802069 32) (224 -1.29757 32)" + "id" "25583" + "plane" "(-92.6988 223.7 32) (-147.167 191.46 32) (-157.201 204.606 32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -16070,11 +13600,11 @@ entity } solid { - "id" "137646" + "id" "137659" side { - "id" "25504" - "plane" "(191.801 -60.702 -96) (159.5 -115.204 -96) (172.597 -125.201 -96)" + "id" "25582" + "plane" "(-191.503 147.2 -96) (-147.197 191.506 -96) (-157.194 204.604 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -16084,10 +13614,10 @@ entity } side { - "id" "25503" - "plane" "(172.597 -125.201 -96) (159.5 -115.204 -96) (159.499 -115.204 32)" + "id" "25581" + "plane" "(-157.194 204.604 -96) (-147.197 191.506 -96) (-147.206 191.498 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.794874 -0.606774 0 0] 0.25" + "uaxis" "[-0.606729 0.794909 0 51.4097] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16095,10 +13625,10 @@ entity } side { - "id" "25502" - "plane" "(191.801 -60.702 -96) (206.895 -66.7988 -96) (206.897 -66.799 32)" + "id" "25580" + "plane" "(-191.503 147.2 -96) (-204.594 157.191 -96) (-204.595 157.202 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.927218 0.374523 0 0] 0.25" + "uaxis" "[0.794895 -0.606747 0 -51.4102] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16106,21 +13636,21 @@ entity } side { - "id" "25501" - "plane" "(206.895 -66.7988 -96) (172.597 -125.201 -96) (172.598 -125.203 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.506422 0.862286 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "25579" + "plane" "(-204.594 157.191 -96) (-157.194 204.604 -96) (-157.205 204.6 32)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-0.707114 -0.7071 0 -348.131] 0.25" + "vaxis" "[0 0 -1 -383.402] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25500" - "plane" "(159.5 -115.204 -96) (191.801 -60.702 -96) (191.801 -60.7014 32)" + "id" "25578" + "plane" "(-147.197 191.506 -96) (-191.503 147.2 -96) (-191.498 147.205 32)" "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[0 -1 0 452.734] 0.106302" + "uaxis" "[0.707107 0.707107 0 256.032] 0.122487" "vaxis" "[0 0 -1 -768] 0.125" "rotation" "0" "lightmapscale" "16" @@ -16128,8 +13658,8 @@ entity } side { - "id" "25499" - "plane" "(159.499 -115.204 32) (191.801 -60.7014 32) (206.897 -66.799 32)" + "id" "25577" + "plane" "(-147.206 191.498 32) (-191.498 147.205 32) (-204.595 157.202 32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -16146,11 +13676,11 @@ entity } solid { - "id" "137647" + "id" "137658" side { - "id" "25510" - "plane" "(159.503 -115.2 -96) (115.2 -159.503 -96) (125.201 -172.604 -96)" + "id" "25576" + "plane" "(-238.896 98.8045 -96) (-256 33.3013 -96) (-239.896 31.2018 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -16160,10 +13690,10 @@ entity } side { - "id" "25509" - "plane" "(125.201 -172.604 -96) (115.2 -159.503 -96) (115.198 -159.505 32)" + "id" "25575" + "plane" "(-238.896 98.8045 -96) (-223.696 92.7036 -96) (-223.696 92.7041 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.606783 -0.794867 0 0] 0.25" + "uaxis" "[-0.928043 0.372474 0 38.4662] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16171,10 +13701,10 @@ entity } side { - "id" "25508" - "plane" "(159.503 -115.2 -96) (172.602 -125.199 -96) (172.602 -125.203 32)" + "id" "25574" + "plane" "(-239.896 31.2018 -96) (-256 33.3013 -96) (-256 33.2999 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.794867 0.606783 0 0] 0.25" + "uaxis" "[0.991604 -0.129311 0 -15.4771] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16182,10 +13712,10 @@ entity } side { - "id" "25507" - "plane" "(172.602 -125.199 -96) (125.201 -172.604 -96) (125.199 -172.605 32)" + "id" "25573" + "plane" "(-256 33.3013 -96) (-238.896 98.8045 -96) (-238.895 98.8045 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 0] 0.25" + "uaxis" "[-0.252643 -0.96756 0 -27.5094] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16193,10 +13723,10 @@ entity } side { - "id" "25506" - "plane" "(115.2 -159.503 -96) (159.503 -115.2 -96) (159.501 -115.202 32)" + "id" "25572" + "plane" "(-223.696 92.7036 -96) (-239.896 31.2018 -96) (-239.897 31.2 32)" "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[1 0 0 206.441] 0.086613" + "uaxis" "[0 -1 0 -251.814] 0.120084" "vaxis" "[0 0 -1 -768] 0.125" "rotation" "0" "lightmapscale" "16" @@ -16204,8 +13734,8 @@ entity } side { - "id" "25505" - "plane" "(115.198 -159.505 32) (159.501 -115.202 32) (172.602 -125.203 32)" + "id" "25571" + "plane" "(-223.696 92.7041 32) (-239.897 31.2 32) (-256 33.2999 32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -16222,11 +13752,11 @@ entity } solid { - "id" "137648" + "id" "137657" side { - "id" "25516" - "plane" "(66.8006 -206.898 -96) (125.207 -172.602 -96) (115.172 -159.456 -96)" + "id" "25570" + "plane" "(-204.606 157.191 -96) (-238.902 98.7969 -96) (-223.7 92.6962 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -16236,10 +13766,10 @@ entity } side { - "id" "25515" - "plane" "(66.8006 -206.898 -96) (60.733 -191.778 -96) (60.7022 -191.697 32)" + "id" "25569" + "plane" "(-204.606 157.191 -96) (-191.503 147.191 -96) (-191.501 147.194 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.372412 -0.928067 0 0] 0.25" + "uaxis" "[-0.794919 0.606716 0 51.4093] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16247,10 +13777,10 @@ entity } side { - "id" "25514" - "plane" "(115.172 -159.456 -96) (125.207 -172.602 -96) (125.198 -172.6 32)" + "id" "25568" + "plane" "(-223.7 92.6962 -96) (-238.902 98.7969 -96) (-238.904 98.7987 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.606772 0.794876 0 0] 0.25" + "uaxis" "[0.928059 -0.372432 0 -38.4628] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16258,10 +13788,10 @@ entity } side { - "id" "25513" - "plane" "(125.207 -172.602 -96) (66.8006 -206.898 -96) (66.8006 -206.894 32)" + "id" "25567" + "plane" "(-238.902 98.7969 -96) (-204.606 157.191 -96) (-204.604 157.194 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.86228 0.506432 0 0] 0.25" + "uaxis" "[-0.506452 -0.862268 0 18.4556] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16269,10 +13799,10 @@ entity } side { - "id" "25512" - "plane" "(60.733 -191.778 -96) (115.172 -159.456 -96) (115.115 -159.39 32)" + "id" "25566" + "plane" "(-191.503 147.191 -96) (-223.7 92.6962 -96) (-223.7 92.6973 32)" "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[1 0 0 452.766] 0.106306" + "uaxis" "[0.509805 0.86029 0 -234.432] 0.123566" "vaxis" "[0 0 -1 -768] 0.125" "rotation" "0" "lightmapscale" "16" @@ -16280,8 +13810,8 @@ entity } side { - "id" "25511" - "plane" "(60.7022 -191.697 32) (115.115 -159.39 32) (125.198 -172.6 32)" + "id" "25565" + "plane" "(-191.501 147.194 32) (-223.7 92.6973 32) (-238.904 98.7987 32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -16298,11 +13828,11 @@ entity } solid { - "id" "137649" + "id" "137656" side { - "id" "25522" - "plane" "(1.30162 -224 -96) (66.8027 -206.902 -96) (60.7011 -191.798 -96)" + "id" "25564" + "plane" "(-256 33.2974 -96) (-256 -33.2998 -96) (-239.9 -31.2001 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -16312,10 +13842,10 @@ entity } side { - "id" "25521" - "plane" "(1.30162 -224 -96) (-0.798412 -207.897 -96) (-0.800674 -207.898 32)" + "id" "25563" + "plane" "(-256 33.2974 -96) (-239.9 31.1978 -96) (-239.9 31.1973 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.129322 -0.991603 0 0] 0.25" + "uaxis" "[-0.991604 0.129315 0 15.4776] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16323,10 +13853,10 @@ entity } side { - "id" "25520" - "plane" "(60.7011 -191.798 -96) (66.8027 -206.902 -96) (66.8014 -206.902 32)" + "id" "25562" + "plane" "(-239.9 -31.2001 -96) (-256 -33.2998 -96) (-256 -33.2991 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.374564 0.927201 0 0] 0.25" + "uaxis" "[0.991603 0.129316 0 -46.3727] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16334,10 +13864,10 @@ entity } side { - "id" "25519" - "plane" "(66.8027 -206.902 -96) (1.30162 -224 -96) (1.29932 -224 32)" + "id" "25561" + "plane" "(-256 -33.2998 -96) (-256 33.2974 -96) (-256 33.297 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.967577 0.252574 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16345,10 +13875,10 @@ entity } side { - "id" "25518" - "plane" "(-0.798412 -207.897 -96) (60.7011 -191.798 -96) (60.7001 -191.799 32)" + "id" "25560" + "plane" "(-239.9 31.1978 -96) (-239.9 -31.2001 -96) (-239.9 -31.1994 32)" "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[1 0 0 6.27734] 0.120077" + "uaxis" "[0 -1 0 -255.988] 0.122051" "vaxis" "[0 0 -1 -768] 0.125" "rotation" "0" "lightmapscale" "16" @@ -16356,8 +13886,8 @@ entity } side { - "id" "25517" - "plane" "(-0.800674 -207.898 32) (60.7001 -191.799 32) (66.8014 -206.902 32)" + "id" "25559" + "plane" "(-239.9 31.1973 32) (-239.9 -31.1994 32) (-256 -33.2991 32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -16374,11 +13904,11 @@ entity } solid { - "id" "137650" + "id" "137655" side { - "id" "25528" - "plane" "(-65.2998 -224 -96) (1.29883 -224 -96) (-0.80077 -207.9 -96)" + "id" "25558" + "plane" "(-256 -33.2996 -96) (-238.898 -98.7969 -96) (-223.699 -92.6971 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -16388,10 +13918,10 @@ entity } side { - "id" "25527" - "plane" "(-65.2998 -224 -96) (-63.2002 -207.9 -96) (-63.1992 -207.9 32)" + "id" "25557" + "plane" "(-256 -33.2996 -96) (-239.898 -31.1998 -96) (-239.899 -31.1996 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.129315 -0.991604 0 0] 0.25" + "uaxis" "[-0.991603 -0.129316 0 46.3727] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16399,10 +13929,10 @@ entity } side { - "id" "25526" - "plane" "(-0.80077 -207.9 -96) (1.29883 -224 -96) (1.29895 -224 32)" + "id" "25556" + "plane" "(-223.699 -92.6971 -96) (-238.898 -98.7969 -96) (-238.899 -98.7958 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.129315 0.991603 0 0] 0.25" + "uaxis" "[0.928059 0.372433 0 -7.12012] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16410,10 +13940,10 @@ entity } side { - "id" "25525" - "plane" "(1.29883 -224 -96) (-65.2998 -224 -96) (-65.2988 -224 32)" + "id" "25555" + "plane" "(-238.898 -98.7969 -96) (-256 -33.2996 -96) (-256 -33.2994 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0.25263 -0.967563 0 -28.1847] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16421,10 +13951,10 @@ entity } side { - "id" "25524" - "plane" "(-63.2002 -207.9 -96) (-0.80077 -207.9 -96) (-0.800653 -207.9 32)" + "id" "25554" + "plane" "(-239.898 -31.1998 -96) (-223.699 -92.6971 -96) (-223.7 -92.6962 32)" "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[1 0 0 6.19531] 0.122051" + "uaxis" "[0 -1 0 -260.216] 0.120077" "vaxis" "[0 0 -1 -768] 0.125" "rotation" "0" "lightmapscale" "16" @@ -16432,8 +13962,8 @@ entity } side { - "id" "25523" - "plane" "(-63.1992 -207.9 32) (-0.800653 -207.9 32) (1.29895 -224 32)" + "id" "25553" + "plane" "(-239.899 -31.1996 32) (-223.7 -92.6962 32) (-238.899 -98.7958 32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -16450,11 +13980,11 @@ entity } solid { - "id" "137651" + "id" "137654" side { - "id" "25534" - "plane" "(-130.802 -206.901 -96) (-65.2988 -224 -96) (-63.1996 -207.902 -96)" + "id" "25552" + "plane" "(-238.901 -98.7942 -96) (-204.598 -157.195 -96) (-191.502 -147.199 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -16464,10 +13994,10 @@ entity } side { - "id" "25533" - "plane" "(-130.802 -206.901 -96) (-124.701 -191.7 -96) (-124.701 -191.7 32)" + "id" "25551" + "plane" "(-238.901 -98.7942 -96) (-223.703 -92.6951 -96) (-223.702 -92.6969 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.372496 -0.928034 0 0] 0.25" + "uaxis" "[-0.928063 -0.372422 0 7.12204] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16475,10 +14005,10 @@ entity } side { - "id" "25532" - "plane" "(-63.1996 -207.902 -96) (-65.2988 -224 -96) (-65.2992 -224 32)" + "id" "25550" + "plane" "(-191.502 -147.199 -96) (-204.598 -157.195 -96) (-204.599 -157.197 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.129306 0.991605 0 0] 0.25" + "uaxis" "[0.794845 0.606813 0 -24.0681] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16486,10 +14016,10 @@ entity } side { - "id" "25531" - "plane" "(-65.2988 -224 -96) (-130.802 -206.901 -96) (-130.803 -206.902 32)" + "id" "25549" + "plane" "(-204.598 -157.195 -96) (-238.901 -98.7942 -96) (-238.898 -98.7951 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.967578 -0.252574 0 0] 0.25" + "uaxis" "[0.5064 -0.862299 0 -47.1935] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16497,10 +14027,10 @@ entity } side { - "id" "25530" - "plane" "(-124.701 -191.7 -96) (-63.1996 -207.902 -96) (-63.2 -207.902 32)" + "id" "25548" + "plane" "(-223.703 -92.6951 -96) (-191.502 -147.199 -96) (-191.502 -147.199 32)" "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[1 0 0 14.668] 0.120084" + "uaxis" "[0 -1 0 151.748] 0.106306" "vaxis" "[0 0 -1 -768] 0.125" "rotation" "0" "lightmapscale" "16" @@ -16508,8 +14038,8 @@ entity } side { - "id" "25529" - "plane" "(-124.701 -191.7 32) (-63.2 -207.902 32) (-65.2992 -224 32)" + "id" "25547" + "plane" "(-223.702 -92.6969 32) (-191.502 -147.199 32) (-204.599 -157.197 32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -16526,11 +14056,11 @@ entity } solid { - "id" "137652" + "id" "137653" side { - "id" "25540" - "plane" "(-189.196 -172.601 -96) (-130.799 -206.898 -96) (-124.733 -191.784 -96)" + "id" "25546" + "plane" "(-204.597 -157.199 -96) (-157.195 -204.602 -96) (-147.198 -191.505 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -16540,10 +14070,10 @@ entity } side { - "id" "25539" - "plane" "(-189.196 -172.601 -96) (-179.199 -159.504 -96) (-179.2 -159.503 32)" + "id" "25545" + "plane" "(-204.597 -157.199 -96) (-191.5 -147.203 -96) (-191.499 -147.204 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.606756 -0.794888 0 0] 0.25" + "uaxis" "[-0.794933 -0.606697 0 24.0942] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16551,10 +14081,10 @@ entity } side { - "id" "25538" - "plane" "(-124.733 -191.784 -96) (-130.799 -206.898 -96) (-130.766 -206.919 32)" + "id" "25544" + "plane" "(-147.198 -191.505 -96) (-157.195 -204.602 -96) (-157.196 -204.601 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.372459 0.928049 0 0] 0.25" + "uaxis" "[0.606747 0.794895 0 -39.9171] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16562,10 +14092,10 @@ entity } side { - "id" "25537" - "plane" "(-130.799 -206.898 -96) (-189.196 -172.601 -96) (-189.196 -172.598 32)" + "id" "25543" + "plane" "(-157.195 -204.602 -96) (-204.597 -157.199 -96) (-204.595 -157.198 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.862279 -0.506434 0 0] 0.25" + "uaxis" "[0.707107 -0.707107 0 -53.0194] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16573,10 +14103,10 @@ entity } side { - "id" "25536" - "plane" "(-179.199 -159.504 -96) (-124.733 -191.784 -96) (-124.7 -191.803 32)" + "id" "25542" + "plane" "(-191.5 -147.203 -96) (-147.198 -191.505 -96) (-147.199 -191.504 32)" "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[1 0 0 149.316] 0.106302" + "uaxis" "[1 0 0 -348.946] 0.086608" "vaxis" "[0 0 -1 -768] 0.125" "rotation" "0" "lightmapscale" "16" @@ -16584,8 +14114,8 @@ entity } side { - "id" "25535" - "plane" "(-179.2 -159.503 32) (-124.7 -191.803 32) (-130.766 -206.919 32)" + "id" "25541" + "plane" "(-191.499 -147.204 32) (-147.199 -191.504 32) (-157.196 -204.601 32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -16602,11 +14132,11 @@ entity } solid { - "id" "137653" + "id" "137652" side { - "id" "25546" - "plane" "(-236.601 -125.196 -96) (-189.195 -172.602 -96) (-179.198 -159.505 -96)" + "id" "25540" + "plane" "(-157.196 -204.6 -96) (-98.7988 -238.895 -96) (-92.7332 -223.781 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -16616,10 +14146,10 @@ entity } side { - "id" "25545" - "plane" "(-236.601 -125.196 -96) (-223.503 -115.2 -96) (-223.5 -115.203 32)" + "id" "25539" + "plane" "(-157.196 -204.6 -96) (-147.199 -191.502 -96) (-147.204 -191.499 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.794933 -0.606697 0 0] 0.25" + "uaxis" "[-0.606756 -0.794888 0 39.9191] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16627,10 +14157,10 @@ entity } side { - "id" "25544" - "plane" "(-179.198 -159.505 -96) (-189.195 -172.602 -96) (-189.196 -172.601 32)" + "id" "25538" + "plane" "(-92.7332 -223.781 -96) (-98.7988 -238.895 -96) (-98.7652 -238.912 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.606747 0.794895 0 0] 0.25" + "uaxis" "[0.372459 0.928049 0 7.11552] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16638,10 +14168,10 @@ entity } side { - "id" "25543" - "plane" "(-189.195 -172.602 -96) (-236.601 -125.196 -96) (-236.598 -125.199 32)" + "id" "25537" + "plane" "(-98.7988 -238.895 -96) (-157.196 -204.6 -96) (-157.2 -204.595 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 -0.707107 0 0] 0.25" + "uaxis" "[0.862279 -0.506434 0 -47.1953] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16649,10 +14179,10 @@ entity } side { - "id" "25542" - "plane" "(-223.503 -115.2 -96) (-179.198 -159.505 -96) (-179.199 -159.504 32)" + "id" "25536" + "plane" "(-147.199 -191.502 -96) (-92.7332 -223.781 -96) (-92.7002 -223.801 32)" "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[1 0 0 20.5352] 0.086608" + "uaxis" "[1 0 0 -151.713] 0.106302" "vaxis" "[0 0 -1 -768] 0.125" "rotation" "0" "lightmapscale" "16" @@ -16660,8 +14190,8 @@ entity } side { - "id" "25541" - "plane" "(-223.5 -115.203 32) (-179.199 -159.504 32) (-189.196 -172.601 32)" + "id" "25535" + "plane" "(-147.204 -191.499 32) (-92.7002 -223.801 32) (-98.7652 -238.912 32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -16678,11 +14208,11 @@ entity } solid { - "id" "137654" + "id" "137651" side { - "id" "25552" - "plane" "(-270.902 -66.7965 -96) (-236.602 -125.199 -96) (-223.502 -115.199 -96)" + "id" "25534" + "plane" "(-98.8027 -238.902 -96) (-33.2988 -256 -96) (-31.1996 -239.902 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -16692,10 +14222,10 @@ entity } side { - "id" "25551" - "plane" "(-270.902 -66.7965 -96) (-255.702 -60.6969 -96) (-255.701 -60.6984 32)" + "id" "25533" + "plane" "(-98.8027 -238.902 -96) (-92.7014 -223.699 -96) (-92.6976 -223.7 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.928063 -0.372422 0 0] 0.25" + "uaxis" "[-0.372496 -0.928034 0 -7.10886] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16703,10 +14233,10 @@ entity } side { - "id" "25550" - "plane" "(-223.502 -115.199 -96) (-236.602 -125.199 -96) (-236.604 -125.2 32)" + "id" "25532" + "plane" "(-31.1996 -239.902 -96) (-33.2988 -256 -96) (-33.2989 -256 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.794845 0.606813 0 0] 0.25" + "uaxis" "[0.129306 0.991605 0 46.3743] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16714,10 +14244,10 @@ entity } side { - "id" "25549" - "plane" "(-236.602 -125.199 -96) (-270.902 -66.7965 -96) (-270.898 -66.7969 32)" + "id" "25531" + "plane" "(-33.2988 -256 -96) (-98.8027 -238.902 -96) (-98.7989 -238.902 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.5064 -0.862299 0 0] 0.25" + "uaxis" "[0.967578 -0.252574 0 -28.1795] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16725,10 +14255,10 @@ entity } side { - "id" "25548" - "plane" "(-255.702 -60.6969 -96) (-223.502 -115.199 -96) (-223.502 -115.198 32)" + "id" "25530" + "plane" "(-92.7014 -223.699 -96) (-31.1996 -239.902 -96) (-31.1997 -239.902 32)" "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[0 -1 0 452.766] 0.106306" + "uaxis" "[1 0 0 -251.812] 0.120084" "vaxis" "[0 0 -1 -768] 0.125" "rotation" "0" "lightmapscale" "16" @@ -16736,8 +14266,8 @@ entity } side { - "id" "25547" - "plane" "(-255.701 -60.6984 32) (-223.502 -115.198 32) (-236.604 -125.2 32)" + "id" "25529" + "plane" "(-92.6976 -223.7 32) (-31.1997 -239.902 32) (-33.2989 -256 32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -16754,11 +14284,11 @@ entity } solid { - "id" "137655" + "id" "137650" side { - "id" "25558" - "plane" "(-288 -1.30029 -96) (-270.898 -66.7969 -96) (-255.699 -60.6973 -96)" + "id" "25528" + "plane" "(-33.2989 -256 -96) (33.2998 -256 -96) (31.2002 -239.9 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -16768,10 +14298,10 @@ entity } side { - "id" "25557" - "plane" "(-288 -1.30029 -96) (-271.898 0.799633 -96) (-271.898 0.800583 32)" + "id" "25527" + "plane" "(-33.2989 -256 -96) (-31.1993 -239.9 -96) (-31.1997 -239.9 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.991603 -0.129316 0 0] 0.25" + "uaxis" "[-0.129315 -0.991604 0 -46.373] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16779,10 +14309,10 @@ entity } side { - "id" "25556" - "plane" "(-255.699 -60.6973 -96) (-270.898 -66.7969 -96) (-270.899 -66.7967 32)" + "id" "25526" + "plane" "(31.2002 -239.9 -96) (33.2998 -256 -96) (33.299 -256 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.928059 0.372433 0 0] 0.25" + "uaxis" "[-0.129315 0.991603 0 15.4775] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16790,10 +14320,10 @@ entity } side { - "id" "25555" - "plane" "(-270.898 -66.7969 -96) (-288 -1.30029 -96) (-288 -1.2998 32)" + "id" "25525" + "plane" "(33.2998 -256 -96) (-33.2989 -256 -96) (-33.2993 -256 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.25263 -0.967563 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16801,10 +14331,10 @@ entity } side { - "id" "25554" - "plane" "(-271.898 0.799633 -96) (-255.699 -60.6973 -96) (-255.699 -60.6969 32)" + "id" "25524" + "plane" "(-31.1993 -239.9 -96) (31.2002 -239.9 -96) (31.1994 -239.9 32)" "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[0 -1 0 6.2793] 0.120077" + "uaxis" "[1 0 0 -255.99] 0.122051" "vaxis" "[0 0 -1 -768] 0.125" "rotation" "0" "lightmapscale" "16" @@ -16812,8 +14342,8 @@ entity } side { - "id" "25553" - "plane" "(-271.898 0.800583 32) (-255.699 -60.6969 32) (-270.899 -66.7967 32)" + "id" "25523" + "plane" "(-31.1997 -239.9 32) (31.1994 -239.9 32) (33.299 -256 32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -16830,11 +14360,11 @@ entity } solid { - "id" "137656" + "id" "137649" side { - "id" "25564" - "plane" "(-288 65.2978 -96) (-288 -1.30029 -96) (-271.9 0.799337 -96)" + "id" "25522" + "plane" "(33.2986 -256 -96) (98.7988 -238.898 -96) (92.699 -223.799 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -16844,10 +14374,10 @@ entity } side { - "id" "25563" - "plane" "(-288 65.2978 -96) (-271.9 63.1982 -96) (-271.9 63.1973 32)" + "id" "25521" + "plane" "(33.2986 -256 -96) (31.1985 -239.897 -96) (31.199 -239.898 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.991604 0.129315 0 0] 0.25" + "uaxis" "[0.129322 -0.991603 0 -15.4784] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16855,10 +14385,10 @@ entity } side { - "id" "25562" - "plane" "(-271.9 0.799337 -96) (-288 -1.30029 -96) (-288 -1.3 32)" + "id" "25520" + "plane" "(92.699 -223.799 -96) (98.7988 -238.898 -96) (98.7993 -238.902 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.991603 0.129316 0 0] 0.25" + "uaxis" "[-0.374564 0.927201 0 38.6259] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16866,10 +14396,10 @@ entity } side { - "id" "25561" - "plane" "(-288 -1.30029 -96) (-288 65.2978 -96) (-288 65.2969 32)" + "id" "25519" + "plane" "(98.7988 -238.898 -96) (33.2986 -256 -96) (33.2989 -256 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.967577 0.252574 0 -27.5204] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16877,10 +14407,10 @@ entity } side { - "id" "25560" - "plane" "(-271.9 63.1982 -96) (-271.9 0.799337 -96) (-271.9 0.799611 32)" + "id" "25518" + "plane" "(31.1985 -239.897 -96) (92.699 -223.799 -96) (92.6987 -223.8 32)" "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[0 -1 0 6.19727] 0.122051" + "uaxis" "[1 0 0 -260.218] 0.120077" "vaxis" "[0 0 -1 -768] 0.125" "rotation" "0" "lightmapscale" "16" @@ -16888,8 +14418,8 @@ entity } side { - "id" "25559" - "plane" "(-271.9 63.1973 32) (-271.9 0.799611 32) (-288 -1.3 32)" + "id" "25517" + "plane" "(31.199 -239.898 32) (92.6987 -223.8 32) (98.7993 -238.902 32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -16906,11 +14436,11 @@ entity } solid { - "id" "137657" + "id" "137648" side { - "id" "25570" - "plane" "(-236.604 189.196 -96) (-270.902 130.799 -96) (-255.699 124.698 -96)" + "id" "25516" + "plane" "(157.211 -204.598 -96) (147.176 -191.452 -96) (92.7333 -223.775 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -16920,10 +14450,10 @@ entity } side { - "id" "25569" - "plane" "(-236.604 189.196 -96) (-223.5 179.195 -96) (-223.497 179.201 32)" + "id" "25515" + "plane" "(92.7333 -223.775 -96) (92.7009 -223.695 32) (98.7989 -238.89 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.794919 0.606716 0 0] 0.25" + "uaxis" "[0.372412 -0.928067 0 -38.4613] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16931,10 +14461,10 @@ entity } side { - "id" "25568" - "plane" "(-255.699 124.698 -96) (-270.902 130.799 -96) (-270.903 130.8 32)" + "id" "25514" + "plane" "(157.211 -204.598 -96) (157.199 -204.601 32) (147.114 -191.389 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.928059 -0.372432 0 0] 0.25" + "uaxis" "[-0.606772 0.794876 0 51.4109] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16942,10 +14472,10 @@ entity } side { - "id" "25567" - "plane" "(-270.902 130.799 -96) (-236.604 189.196 -96) (-236.602 189.203 32)" + "id" "25513" + "plane" "(98.8013 -238.896 -96) (98.7989 -238.89 32) (157.199 -204.601 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.506452 -0.862268 0 0] 0.25" + "uaxis" "[0.86228 0.506432 0 -45.5485] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -16953,10 +14483,10 @@ entity } side { - "id" "25566" - "plane" "(-223.5 179.195 -96) (-255.699 124.698 -96) (-255.699 124.699 32)" + "id" "25512" + "plane" "(147.176 -191.452 -96) (147.114 -191.389 32) (92.7009 -223.695 32)" "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[0.509805 0.86029 0 -325.197] 0.123566" + "uaxis" "[1 0 0 151.748] 0.106306" "vaxis" "[0 0 -1 -768] 0.125" "rotation" "0" "lightmapscale" "16" @@ -16964,8 +14494,8 @@ entity } side { - "id" "25565" - "plane" "(-223.497 179.201 32) (-255.699 124.699 32) (-270.903 130.8 32)" + "id" "25511" + "plane" "(147.114 -191.389 32) (157.199 -204.601 32) (98.7989 -238.89 32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -16982,11 +14512,11 @@ entity } solid { - "id" "137658" + "id" "137647" side { - "id" "25576" - "plane" "(-270.896 130.803 -96) (-288 65.2993 -96) (-271.898 63.1995 -96)" + "id" "25510" + "plane" "(191.499 -147.204 -96) (147.198 -191.505 -96) (157.199 -204.606 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -16996,10 +14526,10 @@ entity } side { - "id" "25575" - "plane" "(-270.896 130.803 -96) (-255.697 124.703 -96) (-255.697 124.703 32)" + "id" "25509" + "plane" "(157.199 -204.606 -96) (147.198 -191.505 -96) (147.191 -191.512 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.928043 0.372474 0 0] 0.25" + "uaxis" "[0.606783 -0.794867 0 -51.4112] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -17007,10 +14537,10 @@ entity } side { - "id" "25574" - "plane" "(-271.898 63.1995 -96) (-288 65.2993 -96) (-288 65.2999 32)" + "id" "25508" + "plane" "(191.499 -147.204 -96) (204.598 -157.203 -96) (204.594 -157.206 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.991604 -0.129311 0 0] 0.25" + "uaxis" "[-0.794867 0.606783 0 51.4112] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -17018,10 +14548,10 @@ entity } side { - "id" "25573" - "plane" "(-288 65.2993 -96) (-270.896 130.803 -96) (-270.898 130.805 32)" + "id" "25507" + "plane" "(204.598 -157.203 -96) (157.199 -204.606 -96) (157.193 -204.615 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.252643 -0.96756 0 0] 0.25" + "uaxis" "[0.707107 0.707107 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -17029,10 +14559,10 @@ entity } side { - "id" "25572" - "plane" "(-255.697 124.703 -96) (-271.898 63.1995 -96) (-271.898 63.2 32)" + "id" "25506" + "plane" "(147.198 -191.505 -96) (191.499 -147.204 -96) (191.496 -147.207 32)" "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[0 -1 0 14.666] 0.120084" + "uaxis" "[1 0 0 -163.019] 0.086613" "vaxis" "[0 0 -1 -768] 0.125" "rotation" "0" "lightmapscale" "16" @@ -17040,8 +14570,8 @@ entity } side { - "id" "25571" - "plane" "(-255.697 124.703 32) (-271.898 63.2 32) (-288 65.2999 32)" + "id" "25505" + "plane" "(147.191 -191.512 32) (191.496 -147.207 32) (204.594 -157.206 32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -17058,11 +14588,11 @@ entity } solid { - "id" "137659" + "id" "137646" side { - "id" "25582" - "plane" "(-223.503 179.2 -96) (-179.201 223.502 -96) (-189.198 236.599 -96)" + "id" "25504" + "plane" "(223.802 -92.7026 -96) (191.5 -147.207 -96) (204.596 -157.203 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -17072,10 +14602,10 @@ entity } side { - "id" "25581" - "plane" "(-189.198 236.599 -96) (-179.201 223.502 -96) (-179.205 223.498 32)" + "id" "25503" + "plane" "(204.596 -157.203 -96) (191.5 -147.207 -96) (191.498 -147.209 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.606729 0.794909 0 0] 0.25" + "uaxis" "[0.794874 -0.606774 0 -51.4109] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -17083,10 +14613,10 @@ entity } side { - "id" "25580" - "plane" "(-223.503 179.2 -96) (-236.598 189.195 -96) (-236.598 189.199 32)" + "id" "25502" + "plane" "(223.802 -92.7026 -96) (238.895 -98.7988 -96) (238.896 -98.7992 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.794895 -0.606747 0 0] 0.25" + "uaxis" "[-0.927218 0.374523 0 38.6228] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -17094,21 +14624,21 @@ entity } side { - "id" "25579" - "plane" "(-236.598 189.195 -96) (-189.198 236.599 -96) (-189.203 236.598 32)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[-0.707114 -0.7071 0 -348.133] 0.25" - "vaxis" "[0 0 -1 -383.402] 0.25" + "id" "25501" + "plane" "(238.895 -98.7988 -96) (204.596 -157.203 -96) (204.595 -157.205 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.506422 0.862286 0 -18.4494] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25578" - "plane" "(-179.201 223.502 -96) (-223.503 179.2 -96) (-223.501 179.202 32)" + "id" "25500" + "plane" "(191.5 -147.207 -96) (223.802 -92.7026 -96) (223.801 -92.7022 32)" "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[0.707107 0.707107 0 256.032] 0.122487" + "uaxis" "[0 -1 0 151.705] 0.106302" "vaxis" "[0 0 -1 -768] 0.125" "rotation" "0" "lightmapscale" "16" @@ -17116,8 +14646,8 @@ entity } side { - "id" "25577" - "plane" "(-179.205 223.498 32) (-223.501 179.202 32) (-236.598 189.199 32)" + "id" "25499" + "plane" "(191.498 -147.209 32) (223.801 -92.7022 32) (238.896 -98.7992 32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -17134,11 +14664,11 @@ entity } solid { - "id" "137660" + "id" "137645" side { - "id" "25588" - "plane" "(-179.168 223.458 -96) (-124.702 255.697 -96) (-130.803 270.901 -96)" + "id" "25498" + "plane" "(239.902 -31.1988 -96) (223.701 -92.7042 -96) (238.899 -98.8035 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -17148,10 +14678,10 @@ entity } side { - "id" "25587" - "plane" "(-130.803 270.901 -96) (-124.702 255.697 -96) (-124.699 255.698 32)" + "id" "25497" + "plane" "(238.899 -98.8035 -96) (223.701 -92.7042 -96) (223.7 -92.7061 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.372432 0.928059 0 0] 0.25" + "uaxis" "[0.928063 -0.372422 0 -38.4621] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -17159,10 +14689,10 @@ entity } side { - "id" "25586" - "plane" "(-179.168 223.458 -96) (-189.203 236.605 -96) (-189.199 236.606 32)" + "id" "25496" + "plane" "(239.902 -31.1988 -96) (256 -33.2983 -96) (256 -33.2967 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.606723 -0.794913 0 0] 0.25" + "uaxis" "[-0.991602 0.129328 0 15.479] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -17170,21 +14700,21 @@ entity } side { - "id" "25585" - "plane" "(-189.203 236.605 -96) (-130.803 270.901 -96) (-130.801 270.902 32)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[-0.862689 -0.505735 0 -144.457] 0.25" - "vaxis" "[0 0 -1 -383.396] 0.25" + "id" "25495" + "plane" "(256 -33.2983 -96) (238.899 -98.8035 -96) (238.898 -98.8052 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.252588 0.967574 0 27.5182] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25584" - "plane" "(-124.702 255.697 -96) (-179.168 223.458 -96) (-179.165 223.46 32)" + "id" "25494" + "plane" "(223.701 -92.7042 -96) (239.902 -31.1988 -96) (239.902 -31.1973 32)" "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[1 0 0 149.266] 0.106306" + "uaxis" "[0 -1 0 -260.189] 0.120084" "vaxis" "[0 0 -1 -768] 0.125" "rotation" "0" "lightmapscale" "16" @@ -17192,8 +14722,8 @@ entity } side { - "id" "25583" - "plane" "(-124.699 255.698 32) (-179.165 223.46 32) (-189.199 236.606 32)" + "id" "25493" + "plane" "(223.7 -92.7061 32) (239.902 -31.1973 32) (256 -33.2967 32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -17210,11 +14740,11 @@ entity } solid { - "id" "137661" + "id" "137644" side { - "id" "25594" - "plane" "(-124.698 255.698 -96) (-63.1983 271.898 -96) (-65 288 -96)" + "id" "25492" + "plane" "(239.9 31.1987 -96) (239.9 -31.1978 -96) (256 -33.2974 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -17224,21 +14754,21 @@ entity } side { - "id" "25593" - "plane" "(-65 288 -96) (-63.1983 271.898 -96) (-63.1996 271.898 32)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS" - "uaxis" "[0 -1 0 128] 0.25" - "vaxis" "[0 0 -1 -384] 0.25" + "id" "25491" + "plane" "(256 -33.2974 -96) (239.9 -31.1978 -96) (239.9 -31.1993 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.991603 -0.129315 0 -15.4775] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25592" - "plane" "(-124.698 255.698 -96) (-130.801 270.902 -96) (-130.801 270.901 32)" + "id" "25490" + "plane" "(239.9 31.1987 -96) (256 33.2983 -96) (256 33.2984 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.372485 -0.928038 0 0] 0.25" + "uaxis" "[-0.991604 -0.129315 0 46.373] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -17246,21 +14776,21 @@ entity } side { - "id" "25591" - "plane" "(-130.801 270.902 -96) (-65 288 -96) (-65 288 32)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01_NOSPEC" - "uaxis" "[-0.967375 -0.253351 0 -472.668] 0.25" - "vaxis" "[0 0 -1 -384.005] 0.25" + "id" "25489" + "plane" "(256 33.2983 -96) (256 -33.2974 -96) (256 -33.2989 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25590" - "plane" "(-63.1983 271.898 -96) (-124.698 255.698 -96) (-124.699 255.698 32)" + "id" "25488" + "plane" "(239.9 -31.1978 -96) (239.9 31.1987 -96) (239.9 31.1988 32)" "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[1 0 0 14.7148] 0.120077" + "uaxis" "[0 -1 0 -256.004] 0.122051" "vaxis" "[0 0 -1 -768] 0.125" "rotation" "0" "lightmapscale" "16" @@ -17268,8 +14798,8 @@ entity } side { - "id" "25589" - "plane" "(-63.1996 271.898 32) (-124.699 255.698 32) (-130.801 270.901 32)" + "id" "25487" + "plane" "(239.9 -31.1993 32) (239.9 31.1988 32) (256 33.2984 32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -17286,11 +14816,11 @@ entity } solid { - "id" "137662" + "id" "137643" side { - "id" "25600" - "plane" "(-0.800748 271.899 -96) (60.696 255.7 -96) (66.7966 270.902 -96)" + "id" "25486" + "plane" "(223.799 92.7036 -96) (239.9 31.1983 -96) (256 33.2981 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -17300,10 +14830,10 @@ entity } side { - "id" "25599" - "plane" "(66.7966 270.902 -96) (60.696 255.7 -96) (60.6962 255.7 32)" + "id" "25485" + "plane" "(256 33.2981 -96) (239.9 31.1983 -96) (239.901 31.2004 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.372427 0.928061 0 0] 0.25" + "uaxis" "[0.991602 0.129327 0 -46.3712] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -17311,32 +14841,32 @@ entity } side { - "id" "25598" - "plane" "(-0.800748 271.899 -96) (1 288 -96) (1 288 32)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS" - "uaxis" "[0 -1 0 128] 0.25" - "vaxis" "[0 0 -1 -384] 0.25" + "id" "25484" + "plane" "(223.799 92.7036 -96) (238.898 98.8027 -96) (238.899 98.8022 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.927218 -0.374521 0 6.74522] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25597" - "plane" "(1 288 -96) (66.7966 270.902 -96) (66.7969 270.902 32)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01_NOSPEC" - "uaxis" "[-0.967188 0.254062 0 -287.357] 0.25" - "vaxis" "[0 0 -1 -383.613] 0.25" + "id" "25483" + "plane" "(238.898 98.8027 -96) (256 33.2981 -96) (256 33.3004 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.252574 0.967578 0 28.1795] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25596" - "plane" "(60.696 255.7 -96) (-0.800748 271.899 -96) (-0.799587 271.899 32)" + "id" "25482" + "plane" "(239.9 31.1983 -96) (223.799 92.7036 -96) (223.8 92.7031 32)" "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[1 0 0 6.29297] 0.120084" + "uaxis" "[0 -1 0 -251.779] 0.120077" "vaxis" "[0 0 -1 -768] 0.125" "rotation" "0" "lightmapscale" "16" @@ -17344,8 +14874,8 @@ entity } side { - "id" "25595" - "plane" "(60.6962 255.7 32) (-0.799587 271.899 32) (1 288 32)" + "id" "25481" + "plane" "(239.901 31.2004 32) (223.8 92.7031 32) (238.899 98.8022 32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -17362,11 +14892,11 @@ entity } solid { - "id" "137663" + "id" "137642" side { - "id" "25606" - "plane" "(60.6935 255.704 -96) (115.2 223.5 -96) (125.202 236.603 -96)" + "id" "25480" + "plane" "(191.497 147.196 -96) (223.696 92.6979 -96) (238.899 98.7994 -96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -17376,10 +14906,10 @@ entity } side { - "id" "25605" - "plane" "(125.202 236.603 -96) (115.2 223.5 -96) (115.201 223.499 32)" + "id" "25479" + "plane" "(238.899 98.7994 -96) (223.696 92.6979 -96) (223.695 92.6988 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.606763 0.794883 0 0] 0.25" + "uaxis" "[0.928046 0.372464 0 -7.11449] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -17387,10 +14917,10 @@ entity } side { - "id" "25604" - "plane" "(60.6935 255.704 -96) (66.793 270.902 -96) (66.7949 270.903 32)" + "id" "25478" + "plane" "(191.497 147.196 -96) (204.598 157.195 -96) (204.596 157.194 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.372448 -0.928053 0 0] 0.25" + "uaxis" "[-0.794881 -0.606765 0 24.0788] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -17398,21 +14928,21 @@ entity } side { - "id" "25603" - "plane" "(66.793 270.902 -96) (125.202 236.603 -96) (125.203 236.602 32)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[-0.862716 0.505689 0 -76.3301] 0.25" - "vaxis" "[0 0 -1 -384.122] 0.25" + "id" "25477" + "plane" "(204.598 157.195 -96) (238.899 98.7994 -96) (238.893 98.7979 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.506448 0.86227 0 47.1959] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25602" - "plane" "(115.2 223.5 -96) (60.6935 255.704 -96) (60.6947 255.703 32)" + "id" "25476" + "plane" "(223.696 92.6979 -96) (191.497 147.196 -96) (191.497 147.196 32)" "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[1 0 0 452.738] 0.106302" + "uaxis" "[0 -1 0 -151.752] 0.106306" "vaxis" "[0 0 -1 -768] 0.125" "rotation" "0" "lightmapscale" "16" @@ -17420,8 +14950,8 @@ entity } side { - "id" "25601" - "plane" "(115.201 223.499 32) (60.6947 255.703 32) (66.7949 270.903 32)" + "id" "25475" + "plane" "(223.695 92.6988 32) (191.497 147.196 32) (204.596 157.194 32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -17438,13 +14968,13 @@ entity } solid { - "id" "137664" + "id" "137641" side { - "id" "25612" - "plane" "(115.2 223.503 -96) (159.505 179.198 -96) (172.602 189.195 -96)" + "id" "25474" + "plane" "(-92.6952 -223.704 160) (-31.1995 -239.902 160) (-33.2989 -256 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -17452,10 +14982,10 @@ entity } side { - "id" "25611" - "plane" "(172.602 189.195 -96) (159.505 179.198 -96) (159.505 179.198 32)" + "id" "25473" + "plane" "(-92.6952 -223.704 160) (-98.7949 -238.902 160) (-98.7982 -238.902 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.794895 0.606747 0 0] 0.25" + "uaxis" "[-0.372464 -0.928046 0 -7.11449] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -17463,10 +14993,10 @@ entity } side { - "id" "25610" - "plane" "(115.2 223.503 -96) (125.199 236.602 -96) (125.2 236.597 32)" + "id" "25472" + "plane" "(-33.2989 -256 160) (-31.1995 -239.902 160) (-31.2012 -239.901 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.606815 -0.794843 0 0] 0.25" + "uaxis" "[0.129318 0.991603 0 46.3725] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -17474,21 +15004,21 @@ entity } side { - "id" "25609" - "plane" "(125.199 236.602 -96) (172.602 189.195 -96) (172.602 189.195 32)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" - "uaxis" "[-0.707098 0.707115 0 -344.908] 0.25" - "vaxis" "[0 0 -1 -383.668] 0.25" + "id" "25471" + "plane" "(-98.7949 -238.902 160) (-33.2989 -256 160) (-33.3002 -256 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.967571 -0.252598 0 -28.1816] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "25608" - "plane" "(159.505 179.198 -96) (115.2 223.503 -96) (115.202 223.501 32)" + "id" "25470" + "plane" "(-31.1995 -239.902 160) (-92.6952 -223.704 160) (-92.698 -223.703 32)" "material" "ELEVATOR/ELEVATOR_SCREEN" - "uaxis" "[1 0 0 206.426] 0.086608" + "uaxis" "[1 0 0 -251.775] 0.120071" "vaxis" "[0 0 -1 -768] 0.125" "rotation" "0" "lightmapscale" "16" @@ -17496,10 +15026,10 @@ entity } side { - "id" "25607" - "plane" "(159.505 179.198 32) (115.202 223.501 32) (125.2 236.597 32)" + "id" "25469" + "plane" "(-98.7982 -238.902 32) (-33.3002 -256 32) (-31.2012 -239.901 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -17512,331 +15042,265 @@ entity "visgroupautoshown" "1" } } - editor - { - "color" "246 247 0" - "groupid" "131009" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "126321" - "classname" "light" - "_constant_attn" "3000" - "_distance" "0" - "_fifty_percent_distance" "0" - "_hardfalloff" "0" - "_light" "245 241 226 15" - "_lightHDR" "-1 -1 -1 1" - "_lightscaleHDR" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "0" - "spawnflags" "0" - "style" "0" - "origin" "-160 192 144" - editor - { - "color" "224 229 0" - "groupid" "129905" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 3500]" - } -} -entity -{ - "id" "126326" - "classname" "prop_static" - "angles" "0 0 0" - "disableselfshadowing" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/props_bts/hanging_stair_128.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "-32 416 -28" - editor - { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 8500]" - } -} -entity -{ - "id" "126338" - "classname" "prop_dynamic" - "angles" "0 90 180" - "DefaultAnim" "spin" - "DisableBoneFollowers" "0" - "disablereceiveshadows" "0" - "disableshadows" "0" - "drawinfastreflection" "0" - "ExplodeDamage" "0" - "ExplodeRadius" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "HoldAnimation" "0" - "MaxAnimTime" "10" - "MinAnimTime" "5" - "model" "models/elevator/elevator_blades.mdl" - "PerformanceMode" "0" - "pressuredelay" "0" - "RandomAnimation" "0" - "renderamt" "255" - "rendercolor" "255 255 255" - "renderfx" "0" - "rendermode" "0" - "SetBodyGroup" "0" - "skin" "0" - "solid" "0" - "spawnflags" "0" - "StartDisabled" "0" - "origin" "-32 32 287.589" - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 500]" - } -} -entity -{ - "id" "126342" - "classname" "prop_static" - "angles" "0 90 180" - "disableselfshadowing" "0" - "disableshadows" "1" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/elevator/elevator_turbine_glass.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "-32 32 287.589" - editor - { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 500]" - } -} -entity -{ - "id" "126346" - "classname" "light" - "_constant_attn" "3000" - "_distance" "0" - "_fifty_percent_distance" "0" - "_hardfalloff" "0" - "_light" "245 241 226 30" - "_lightHDR" "-1 -1 -1 1" - "_lightscaleHDR" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "0" - "spawnflags" "0" - "style" "0" - "origin" "48 224 144" - editor - { - "color" "224 229 0" - "groupid" "129905" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 3500]" - } -} -entity -{ - "id" "126351" - "classname" "prop_static" - "angles" "0 90 -180" - "disableselfshadowing" "0" - "disableshadows" "1" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/elevator/elevator_roof_collar.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "-32 32 -112" - editor - { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 500]" - } -} -entity -{ - "id" "126355" - "classname" "prop_static" - "angles" "0 90 180" - "disableselfshadowing" "0" - "disableshadows" "1" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/elevator/elevator_roof_collar_glass.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "-32 32 -112" - editor - { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 500]" - } -} -entity -{ - "id" "126363" - "classname" "light" - "_constant_attn" "1500" - "_distance" "0" - "_fifty_percent_distance" "0" - "_hardfalloff" "0" - "_light" "255 247 217 75" - "_lightHDR" "-1 -1 -1 1" - "_lightscaleHDR" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "0" - "spawnflags" "0" - "style" "0" - "origin" "-32 32 240" - editor + solid { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 3500]" + "id" "137619" + side + { + "id" "25342" + "plane" "(31.201 -239.928 160) (92.6599 -223.711 160) (98.796 -238.902 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25341" + "plane" "(31.201 -239.928 160) (33.2964 -256 160) (33.2975 -256 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.129303 -0.991605 0 -15.4762] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25340" + "plane" "(98.796 -238.902 160) (92.6599 -223.711 160) (92.6617 -223.711 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.37454 0.92721 0 38.624] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25339" + "plane" "(33.2964 -256 160) (98.796 -238.902 160) (98.7967 -238.898 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.96758 0.252565 0 -27.5219] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25338" + "plane" "(92.6599 -223.711 160) (31.201 -239.928 160) (31.2022 -239.927 32)" + "material" "ELEVATOR/ELEVATOR_SCREEN" + "uaxis" "[1 0 0 -260.165] 0.120087" + "vaxis" "[0 0 -1 -768] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25337" + "plane" "(33.2975 -256 32) (98.7967 -238.898 32) (92.6617 -223.711 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "246 247 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } -} -entity -{ - "id" "126368" - "classname" "prop_static" - "angles" "0 270 0" - "disableselfshadowing" "0" - "disableshadows" "1" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/elevator/elevator_coop_main.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "-32 32 -166.551" - editor + solid { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 500]" + "id" "137620" + side + { + "id" "25348" + "plane" "(92.7036 -223.701 160) (147.172 -191.459 160) (157.201 -204.595 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25347" + "plane" "(92.7036 -223.701 160) (98.7988 -238.891 160) (98.8015 -238.897 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.372406 -0.92807 0 -38.4609] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25346" + "plane" "(157.201 -204.595 160) (147.172 -191.459 160) (147.176 -191.456 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.606781 0.794869 0 51.4112] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25345" + "plane" "(98.7988 -238.891 160) (157.201 -204.595 160) (157.207 -204.596 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.862283 0.506427 0 -45.5496] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25344" + "plane" "(147.172 -191.459 160) (92.7036 -223.701 160) (92.7037 -223.701 32)" + "material" "ELEVATOR/ELEVATOR_SCREEN" + "uaxis" "[1 0 0 151.73] 0.106304" + "vaxis" "[0 0 -1 -768] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25343" + "plane" "(98.8015 -238.897 32) (157.207 -204.596 32) (147.176 -191.456 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "246 247 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } -} -entity -{ - "id" "126372" - "classname" "prop_static" - "angles" "0 90 180" - "disableselfshadowing" "0" - "disableshadows" "1" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/elevator/elevator_turbine_static.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "-32 32 287.589" - editor + solid { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 500]" + "id" "137621" + side + { + "id" "25354" + "plane" "(147.1 -191.498 160) (191.497 -147.198 160) (204.602 -157.203 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25353" + "plane" "(147.1 -191.498 160) (157.203 -204.602 160) (157.203 -204.602 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.610592 -0.791945 0 -51.5247] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25352" + "plane" "(204.602 -157.203 160) (191.497 -147.198 160) (191.498 -147.197 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.79486 0.606792 0 51.4115] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25351" + "plane" "(157.203 -204.602 160) (204.602 -157.203 160) (204.601 -157.2 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25350" + "plane" "(191.497 -147.198 160) (147.1 -191.498 160) (147.1 -191.498 32)" + "material" "ELEVATOR/ELEVATOR_SCREEN" + "uaxis" "[1 0 0 -162.8] 0.0866193" + "vaxis" "[0 0 -1 -768] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25349" + "plane" "(191.498 -147.197 32) (147.1 -191.498 32) (157.203 -204.602 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "246 247 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } -} -entity -{ - "id" "126376" - "classname" "func_detail" solid { - "id" "126377" + "id" "137622" + side + { + "id" "25360" + "plane" "(191.496 -147.105 160) (223.697 -92.7028 160) (238.898 -98.8038 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25359" + "plane" "(191.496 -147.105 160) (204.594 -157.203 160) (204.595 -157.202 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.791949 -0.610587 0 -51.5246] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } side { - "id" "24100" - "plane" "(-88 569 231) (24 569 231) (24 569 232)" + "id" "25358" + "plane" "(238.898 -98.8038 160) (223.697 -92.7028 160) (223.697 -92.7028 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[-0.928051 0.372454 0 38.4646] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -17844,10 +15308,10 @@ entity } side { - "id" "24099" - "plane" "(24 551 231) (-88 551 231) (-88 551 232)" + "id" "25357" + "plane" "(204.594 -157.203 160) (238.898 -98.8038 160) (238.898 -98.8037 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0.506436 0.862278 0 -18.4522] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -17855,8 +15319,40 @@ entity } side { - "id" "24098" - "plane" "(-88 569 232) (24 569 232) (24 551 232)" + "id" "25356" + "plane" "(223.697 -92.7028 160) (191.496 -147.105 160) (191.497 -147.104 32)" + "material" "ELEVATOR/ELEVATOR_SCREEN" + "uaxis" "[0 -1 0 151.584] 0.106287" + "vaxis" "[0 0 -1 -768] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25355" + "plane" "(223.697 -92.7028 32) (191.497 -147.104 32) (204.595 -157.202 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "246 247 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "137623" + side + { + "id" "25366" + "plane" "(223.701 -92.6977 160) (239.901 -31.1964 160) (256 -33.2966 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -17866,21 +15362,21 @@ entity } side { - "id" "24097" - "plane" "(24 569 231) (-88 569 231) (-88 551 231)" - "material" "LIGHTS/LIGHT_PANEL_WARM" - "uaxis" "[-1 0 0 -40] 4" - "vaxis" "[0 -1 0 44] 4" + "id" "25365" + "plane" "(223.701 -92.6977 160) (238.902 -98.7969 160) (238.903 -98.8 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.92808 -0.37238 0 -38.4589] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24096" - "plane" "(-88 551 232) (-88 551 231) (-88 569 231)" + "id" "25364" + "plane" "(256 -33.2966 160) (239.901 -31.1964 160) (239.9 -31.1991 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-0.991598 0.129355 0 15.482] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -17888,76 +15384,64 @@ entity } side { - "id" "24095" - "plane" "(24 569 232) (24 569 231) (24 551 231)" + "id" "25363" + "plane" "(238.902 -98.7969 160) (256 -33.2966 160) (256 -33.2994 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0.252568 0.967579 0 27.5214] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } + side + { + "id" "25362" + "plane" "(239.901 -31.1964 160) (223.701 -92.6977 160) (223.701 -92.7003 32)" + "material" "ELEVATOR/ELEVATOR_SCREEN" + "uaxis" "[0 -1 0 -260.226] 0.120071" + "vaxis" "[0 0 -1 -768] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25361" + "plane" "(239.9 -31.1991 32) (223.701 -92.7003 32) (238.903 -98.8 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } editor { - "color" "0 180 0" + "color" "246 247 0" "visgroupshown" "1" "visgroupautoshown" "1" } } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "126378" - "classname" "vgui_movie_display" - "angles" "0 285 0" - "forcedslave" "1" - "groupname" "departure_signs" - "height" "128" - "looping" "0" - "moviefilename" "media/" - "stretch" "1" - "targetname" "@departure_sign_23" - "width" "62" - "origin" "-124 255.2 32" - editor - { - "color" "200 200 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "126380" - "classname" "func_detail" solid { - "id" "126381" + "id" "137624" side { - "id" "24106" - "plane" "(-88 601 231) (24 601 231) (24 601 232)" + "id" "25372" + "plane" "(239.9 -31.2017 160) (239.9 31.2008 160) (256 33.3004 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24105" - "plane" "(24 583 231) (-88 583 231) (-88 583 232)" + "id" "25371" + "plane" "(239.9 -31.2017 160) (256 -33.3013 160) (256 -33.2986 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0.991603 -0.129315 0 -15.4775] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -17965,220 +15449,62 @@ entity } side { - "id" "24104" - "plane" "(-88 601 232) (24 601 232) (24 583 232)" + "id" "25370" + "plane" "(256 33.3004 160) (239.9 31.2008 160) (239.9 31.1997 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-0.991604 -0.129315 0 46.373] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24103" - "plane" "(24 601 231) (-88 601 231) (-88 583 231)" - "material" "LIGHTS/LIGHT_PANEL_WARM" - "uaxis" "[-1 0 0 -40] 4" - "vaxis" "[0 -1 0 52] 4" + "id" "25369" + "plane" "(256 -33.3013 160) (256 33.3004 160) (256 33.2993 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24102" - "plane" "(-88 583 232) (-88 583 231) (-88 601 231)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "25368" + "plane" "(239.9 31.2008 160) (239.9 -31.2017 160) (239.9 -31.199 32)" + "material" "ELEVATOR/ELEVATOR_SCREEN" + "uaxis" "[0 -1 0 -256.016] 0.122047" + "vaxis" "[0 0 -1 -768] 0.125" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24101" - "plane" "(24 601 232) (24 601 231) (24 583 231)" + "id" "25367" + "plane" "(239.9 31.1997 32) (239.9 -31.199 32) (256 -33.2986 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "126382" - "classname" "env_soundscape" - "radius" "184" - "soundscape" "portal_testchmb.explore_space" - "origin" "-32 376 -120" - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "126393" - "classname" "prop_static" - "angles" "0 165 90" - "disableselfshadowing" "0" - "disableshadows" "1" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/anim_wp/framework/squarebeam_off.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "0" - "origin" "34 288 64" - editor - { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 8500]" - } -} -entity -{ - "id" "126397" - "classname" "prop_static" - "angles" "0 0 0" - "disableselfshadowing" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/props_bts/hanging_walkway_32b.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "-32 560 36" - editor - { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 8500]" - } -} -entity -{ - "id" "126401" - "classname" "prop_static" - "angles" "0 180 0" - "disableselfshadowing" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/props_bts/hanging_walkway_32b.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "-32 592 36" - editor - { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 8500]" - } -} -entity -{ - "id" "126405" - "classname" "env_soundscape" - "radius" "128" - "soundscape" "industrial_gen_01" - "origin" "-28.4004 503 60.089" - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "126416" - "classname" "light_spot" - "_cone" "80" - "_constant_attn" "100000" - "_exponent" "1" - "_inner_cone" "1" - "_light" "255 247 217 25" - "_lightHDR" "-1 -1 -1 1" - "_lightscaleHDR" "1" - "_quadratic_attn" "1" - "angles" "-75 270 -90" - "pitch" "-75" - "origin" "-32 600 217.411" - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 500]" + "color" "246 247 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } -} -entity -{ - "id" "126424" - "classname" "func_detail" solid { - "id" "126426" + "id" "137625" side { - "id" "24124" - "plane" "(1.20206e-005 275 160) (1.00001 272 160) (-0.789463 271 160)" + "id" "25378" + "plane" "(239.897 31.2025 160) (223.697 92.6987 160) (238.901 98.8012 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -18188,661 +15514,1210 @@ entity } side { - "id" "24123" - "plane" "(-0.789068 271 -96) (-0.789051 271 160) (1.00001 272 160)" - "material" "ELEVATOR/ELEVATOR_SCREEN_BROKEN" - "uaxis" "[0.869192 0.494474 0 424.236] 0.120084" - "vaxis" "[0 0 -1 -768.008] 0.125" + "id" "25377" + "plane" "(256 33.3032 160) (256 33.2999 32) (240 31.2125 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.991603 0.129317 0 -46.3726] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24122" - "plane" "(1.20206e-005 275 -96) (1.00001 272 -96) (1.00001 272 160)" - "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01_NOSPEC" - "uaxis" "[-1 0 0 -508] 0.25" - "vaxis" "[0 0 -1 -384] 0.25" + "id" "25376" + "plane" "(238.901 98.8012 160) (223.697 92.6987 160) (223.791 92.7377 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.928051 -0.372453 0 7.11655] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24121" - "plane" "(-0.999988 271 160) (-0.789051 271 160) (-0.789068 271 -96)" - "material" "ELEVATOR/ELEVATOR_SCREEN_BROKEN" - "uaxis" "[1 0 0 5.10547] 0.120084" - "vaxis" "[0 0 -1 -768] 0.125" + "id" "25375" + "plane" "(256 33.3032 160) (238.901 98.8012 160) (238.901 98.8023 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.252588 0.967574 0 28.1807] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "24120" - "plane" "(-0.999988 271 -96) (-0.785144 271 -96) (1.00001 272 -96)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0 -1 0 128] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "24119" - "plane" "(1.20206e-005 275 -96) (1.20206e-005 275 160) (-0.999988 271 160)" - "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" - "uaxis" "[0.0991196 -0.995075 0 124.016] 0.25" - "vaxis" "[0 0 -1 -383.997] 0.25" + "id" "25374" + "plane" "(223.697 92.6987 160) (239.897 31.2025 160) (240 31.2125 32)" + "material" "ELEVATOR/ELEVATOR_SCREEN" + "uaxis" "[0 -1 0 -251.837] 0.120087" + "vaxis" "[0 0 -1 -768] 0.125" "rotation" "0" "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4000]" - } -} -entity -{ - "id" "126427" - "classname" "vgui_movie_display" - "angles" "0 255 0" - "forcedslave" "1" - "groupname" "departure_signs" - "height" "128" - "looping" "0" - "moviefilename" "media/" - "stretch" "1" - "targetname" "@departure_sign_1" - "width" "64" - "origin" "-0.0995975 271.3 32" - editor - { - "color" "200 200 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "126429" - "classname" "prop_static" - "angles" "0 180 90" - "disableselfshadowing" "0" - "disableshadows" "1" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/anim_wp/framework/squarebeam_off.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "0" - "origin" "-32 296 256" - editor - { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 8500]" - } -} -entity -{ - "id" "126433" - "classname" "prop_static" - "angles" "0 180 90" - "disableselfshadowing" "0" - "disableshadows" "1" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/anim_wp/framework/squarebeam_off.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "0" - "origin" "-32 296 192" - editor - { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 8500]" - } -} -entity -{ - "id" "126437" - "classname" "prop_static" - "angles" "0 180 90" - "disableselfshadowing" "0" - "disableshadows" "1" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/anim_wp/framework/squarebeam_off.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "0" - "origin" "-32 296 320" - editor - { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 8500]" - } -} -entity -{ - "id" "126441" - "classname" "prop_static" - "angles" "0 180 90" - "disableselfshadowing" "0" - "disableshadows" "1" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/anim_wp/framework/squarebeam_off.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "-32 296 -128" - editor - { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 8500]" - } -} -entity -{ - "id" "126445" - "classname" "prop_static" - "angles" "0 195 90" - "disableselfshadowing" "0" - "disableshadows" "1" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/anim_wp/framework/squarebeam_off.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "0" - "origin" "-98 287 320" - editor - { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 8500]" - } -} -entity -{ - "id" "126449" - "classname" "prop_static" - "angles" "0 195 90" - "disableselfshadowing" "0" - "disableshadows" "1" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/anim_wp/framework/squarebeam_off.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "0" - "origin" "-98 287 256" - editor + "smoothing_groups" "0" + } + side + { + "id" "25373" + "plane" "(223.791 92.7377 32) (240 31.2125 32) (256 33.2999 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "246 247 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 8500]" + "id" "137626" + side + { + "id" "25384" + "plane" "(223.802 92.6945 160) (191.502 147.196 160) (204.604 157.198 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25383" + "plane" "(223.802 92.6945 160) (238.906 98.7969 160) (238.906 98.8016 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.927188 0.374596 0 -6.73177] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25382" + "plane" "(204.604 157.198 160) (191.502 147.196 160) (191.5 147.199 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.794867 -0.606784 0 24.0746] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25381" + "plane" "(238.906 98.7969 160) (204.604 157.198 160) (204.605 157.202 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.506435 0.862278 0 47.1953] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25380" + "plane" "(191.502 147.196 160) (223.802 92.6945 160) (223.8 92.6982 32)" + "material" "ELEVATOR/ELEVATOR_SCREEN" + "uaxis" "[0 -1 0 -151.723] 0.106304" + "vaxis" "[0 0 -1 -768] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25379" + "plane" "(191.5 147.199 32) (223.8 92.6982 32) (238.906 98.8016 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "246 247 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } -} -entity -{ - "id" "126453" - "classname" "prop_static" - "angles" "0 195 90" - "disableselfshadowing" "0" - "disableshadows" "1" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/anim_wp/framework/squarebeam_off.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "0" - "origin" "-98 287 192" - editor + solid { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 8500]" + "id" "137627" + side + { + "id" "25390" + "plane" "(191.498 147.1 160) (147.202 191.497 160) (157.2 204.593 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25389" + "plane" "(191.498 147.1 160) (204.602 157.203 160) (204.544 157.261 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.791927 0.610616 0 -23.2078] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25388" + "plane" "(157.2 204.593 160) (147.202 191.497 160) (147.201 191.499 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.606765 -0.794881 0 39.9212] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25387" + "plane" "(204.602 157.203 160) (157.2 204.593 160) (157.201 204.6 32)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-0.707121 0.707092 0 -163.854] 0.25" + "vaxis" "[0 0 -1 -383.656] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25386" + "plane" "(147.202 191.497 160) (191.498 147.1 160) (191.441 147.158 32)" + "material" "ELEVATOR/ELEVATOR_SCREEN" + "uaxis" "[1 0 0 -162.824] 0.0866193" + "vaxis" "[0 0 -1 -768] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25385" + "plane" "(147.201 191.499 32) (191.441 147.158 32) (204.544 157.261 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "246 247 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } -} -entity -{ - "id" "126457" - "classname" "prop_static" - "angles" "0 195 90" - "disableselfshadowing" "0" - "disableshadows" "1" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/anim_wp/framework/squarebeam_off.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "0" - "origin" "-98 287 128" - editor + solid + { + "id" "137628" + side + { + "id" "25396" + "plane" "(147.168 191.461 160) (92.6975 223.704 160) (98.7966 238.903 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25395" + "plane" "(147.168 191.461 160) (157.199 204.602 160) (157.127 204.644 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.606783 0.794868 0 -39.9251] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25394" + "plane" "(98.7966 238.903 160) (92.6975 223.704 160) (92.6957 223.704 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.372427 -0.928061 0 -7.12115] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25393" + "plane" "(157.199 204.602 160) (98.7966 238.903 160) (98.7963 238.906 32)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-0.862402 0.506224 0 98.188] 0.25" + "vaxis" "[0 0 -1 -383.821] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25392" + "plane" "(92.6975 223.704 160) (147.168 191.461 160) (147.095 191.504 32)" + "material" "ELEVATOR/ELEVATOR_SCREEN" + "uaxis" "[1 0 0 151.588] 0.106287" + "vaxis" "[0 0 -1 -768] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25391" + "plane" "(92.6957 223.704 32) (147.095 191.504 32) (157.127 204.644 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "246 247 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 8500]" + "id" "137629" + side + { + "id" "25402" + "plane" "(92.6961 223.698 160) (31.1997 239.896 160) (33 256 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25401" + "plane" "(92.6961 223.698 160) (98.7949 238.895 160) (98.7943 238.899 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.372433 0.928059 0 7.12012] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25400" + "plane" "(33 256 160) (31.1997 239.896 160) (31.1998 239.896 32)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS" + "uaxis" "[-0.122842 -0.992277 0 8.72931] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25399" + "plane" "(98.7949 238.895 160) (33 256 160) (33 256 32)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01_NOSPEC" + "uaxis" "[-0.967444 0.253085 0 -130] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25398" + "plane" "(31.1997 239.896 160) (92.6961 223.698 160) (92.6941 223.698 32)" + "material" "ELEVATOR/ELEVATOR_SCREEN" + "uaxis" "[1 0 0 -260.228] 0.120071" + "vaxis" "[0 0 -1 -768] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25397" + "plane" "(31.1998 239.896 32) (92.6941 223.698 32) (98.7943 238.899 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "246 247 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } -} -entity -{ - "id" "126461" - "classname" "prop_static" - "angles" "0 195 90" - "disableselfshadowing" "0" - "disableshadows" "1" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/anim_wp/framework/squarebeam_off.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "0" - "origin" "-98 287 64" - editor + solid { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 8500]" + "id" "137630" + side + { + "id" "25408" + "plane" "(-31.2012 -239.9 160) (31.2003 -239.9 160) (33.2999 -256 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25407" + "plane" "(-31.2012 -239.9 160) (-33.3008 -256 160) (-33.2988 -256 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.129315 -0.991604 0 -46.373] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25406" + "plane" "(33.2999 -256 160) (31.2003 -239.9 160) (31.1987 -239.9 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.129315 0.991604 0 15.4776] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25405" + "plane" "(-33.3008 -256 160) (33.2999 -256 160) (33.2983 -256 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25404" + "plane" "(31.2003 -239.9 160) (-31.2012 -239.9 160) (-31.1992 -239.9 32)" + "material" "ELEVATOR/ELEVATOR_SCREEN" + "uaxis" "[1 0 0 -255.987] 0.122047" + "vaxis" "[0 0 -1 -768] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25403" + "plane" "(-33.2988 -256 32) (33.2983 -256 32) (31.1987 -239.9 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "246 247 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } -} -entity -{ - "id" "126465" - "classname" "prop_static" - "angles" "0 195 90" - "disableselfshadowing" "0" - "disableshadows" "1" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/anim_wp/framework/squarebeam_off.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "0" - "origin" "-98 287 0" - editor + solid { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 8500]" + "id" "137631" + side + { + "id" "25414" + "plane" "(-31.1981 239.898 160) (-92.738 223.788 160) (-98.8027 238.901 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25413" + "plane" "(-31.1981 239.898 160) (-33 256 160) (-33 256 32)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25412" + "plane" "(-98.8027 238.901 160) (-92.738 223.788 160) (-92.7409 223.788 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.372438 -0.928057 0 -38.4634] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25411" + "plane" "(-33 256 160) (-98.8027 238.901 160) (-98.8062 238.902 32)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01_NOSPEC" + "uaxis" "[-0.967462 -0.253018 0 -381.627] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25410" + "plane" "(-92.738 223.788 160) (-31.1981 239.898 160) (-31.1997 239.898 32)" + "material" "ELEVATOR/ELEVATOR_SCREEN" + "uaxis" "[1 0 0 -251.837] 0.120087" + "vaxis" "[0 0 -1 -768] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25409" + "plane" "(-92.7409 223.788 32) (-31.1997 239.898 32) (-33 256 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "246 247 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } -} -entity -{ - "id" "126469" - "classname" "prop_static" - "angles" "0 195 90" - "disableselfshadowing" "0" - "disableshadows" "1" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/anim_wp/framework/squarebeam_off.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "0" - "origin" "-98 287 -64" - editor + solid { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 8500]" + "id" "137632" + side + { + "id" "25420" + "plane" "(-92.6959 223.701 160) (-147.17 191.458 160) (-157.203 204.602 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25419" + "plane" "(-92.6959 223.701 160) (-98.7988 238.906 160) (-98.795 238.909 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.372464 0.928046 0 38.4653] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25418" + "plane" "(-157.203 204.602 160) (-147.17 191.458 160) (-147.17 191.458 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.606752 -0.794891 0 -51.4103] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25417" + "plane" "(-98.7988 238.906 160) (-157.203 204.602 160) (-157.203 204.601 32)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-0.862692 -0.50573 0 -98.7729] 0.25" + "vaxis" "[0 0 -1 -383.397] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25416" + "plane" "(-147.17 191.458 160) (-92.6959 223.701 160) (-92.6919 223.703 32)" + "material" "ELEVATOR/ELEVATOR_SCREEN" + "uaxis" "[1 0 0 -151.723] 0.106304" + "vaxis" "[0 0 -1 -768] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25415" + "plane" "(-147.17 191.458 32) (-92.6919 223.703 32) (-98.795 238.909 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "246 247 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } -} -entity -{ - "id" "126473" - "classname" "prop_static" - "angles" "0 195 90" - "disableselfshadowing" "0" - "disableshadows" "1" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/anim_wp/framework/squarebeam_off.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "0" - "origin" "-98 287 -128" - editor + solid { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 8500]" + "id" "137633" + side + { + "id" "25426" + "plane" "(-147.099 191.503 160) (-191.499 147.204 160) (-204.597 157.199 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25425" + "plane" "(-147.099 191.503 160) (-157.199 204.605 160) (-157.203 204.607 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.610541 0.791985 0 51.5233] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25424" + "plane" "(-204.597 157.199 160) (-191.499 147.204 160) (-191.502 147.201 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.794926 -0.606707 0 -51.409] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25423" + "plane" "(-157.199 204.605 160) (-204.597 157.199 160) (-204.606 157.201 32)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-0.707091 -0.707122 0 -348.099] 0.25" + "vaxis" "[0 0 -1 -383.391] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25422" + "plane" "(-191.499 147.204 160) (-147.099 191.503 160) (-147.1 191.502 32)" + "material" "ELEVATOR/ELEVATOR_SCREEN" + "uaxis" "[0.707107 0.707107 0 255.978] 0.122498" + "vaxis" "[0 0 -1 -768] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25421" + "plane" "(-191.502 147.201 32) (-147.1 191.502 32) (-157.203 204.607 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "246 247 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } -} -entity -{ - "id" "126477" - "classname" "prop_static" - "angles" "0 165 90" - "disableselfshadowing" "0" - "disableshadows" "1" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/anim_wp/framework/squarebeam_off.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "0" - "origin" "34 288 -128" - editor + solid { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 8500]" + "id" "137634" + side + { + "id" "25432" + "plane" "(-191.498 147.102 160) (-223.698 92.7005 160) (-238.902 98.8025 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25431" + "plane" "(-191.498 147.102 160) (-204.598 157.203 160) (-204.602 157.201 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.791913 0.610633 0 51.5259] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25430" + "plane" "(-238.902 98.8025 160) (-223.698 92.7005 160) (-223.698 92.7026 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.928047 -0.372463 0 -38.4653] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25429" + "plane" "(-204.598 157.203 160) (-238.902 98.8025 160) (-238.902 98.8046 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.506437 -0.862277 0 18.4525] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25428" + "plane" "(-223.698 92.7005 160) (-191.498 147.102 160) (-191.501 147.099 32)" + "material" "ELEVATOR/ELEVATOR_SCREEN" + "uaxis" "[0.510316 0.859987 0 -233.266] 0.123549" + "vaxis" "[0 0 -1 -768] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25427" + "plane" "(-204.602 157.201 32) (-238.902 98.8046 32) (-223.698 92.7026 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "246 247 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } -} -entity -{ - "id" "126481" - "classname" "prop_static" - "angles" "0 165 90" - "disableselfshadowing" "0" - "disableshadows" "1" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/anim_wp/framework/squarebeam_off.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "0" - "origin" "34 288 256" - editor + solid { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 8500]" + "id" "137635" + side + { + "id" "25438" + "plane" "(-223.699 92.6971 160) (-239.897 31.2001 160) (-256 33.3 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25437" + "plane" "(-223.699 92.6971 160) (-238.895 98.7969 160) (-238.897 98.7955 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.928042 0.372475 0 38.4662] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25436" + "plane" "(-256 33.3 160) (-239.897 31.2001 160) (-239.898 31.1986 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.991604 -0.129311 0 -15.4771] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25435" + "plane" "(-238.895 98.7969 160) (-256 33.3 160) (-256 33.2984 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.252623 -0.967565 0 -27.5126] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25434" + "plane" "(-239.897 31.2001 160) (-223.699 92.6971 160) (-223.7 92.6952 32)" + "material" "ELEVATOR/ELEVATOR_SCREEN" + "uaxis" "[0 -1 0 -251.773] 0.120071" + "vaxis" "[0 0 -1 -768] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25433" + "plane" "(-238.897 98.7955 32) (-256 33.2984 32) (-239.898 31.1986 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "246 247 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } -} -entity -{ - "id" "126536" - "classname" "prop_static" - "angles" "0 180 90" - "disableselfshadowing" "0" - "disablevertexlighting" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "model" "models/props_backstage/triple_wallpipe_straight_a.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "-120 5.24537e-006 1151.79" - editor + solid { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 -10768]" + "id" "137636" + side + { + "id" "25444" + "plane" "(-239.9 31.1939 160) (-239.9 -31.2006 160) (-256 -33.3002 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25443" + "plane" "(-239.9 31.1939 160) (-256 33.2935 160) (-256 33.3013 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.991604 0.129315 0 15.4776] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25442" + "plane" "(-256 -33.3002 160) (-239.9 -31.2006 160) (-239.9 -31.2013 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.991603 0.129316 0 -46.3727] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25441" + "plane" "(-256 33.2935 160) (-256 -33.3002 160) (-256 -33.3009 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25440" + "plane" "(-239.9 -31.2006 160) (-239.9 31.1939 160) (-239.9 31.2017 32)" + "material" "ELEVATOR/ELEVATOR_SCREEN" + "uaxis" "[0 -1 0 -255.985] 0.122047" + "vaxis" "[0 0 -1 -768] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25439" + "plane" "(-256 33.3013 32) (-256 -33.3009 32) (-239.9 -31.2013 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "246 247 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } -} -entity -{ - "id" "126540" - "classname" "vgui_movie_display" - "angles" "0 90 0" - "forcedslave" "1" - "groupname" "departure_signs" - "height" "128" - "looping" "0" - "moviefilename" "media/" - "stretch" "1" - "targetname" "@departure_sign_35" - "width" "64" - "origin" "-0.0996185 -207.3 -96" - editor + solid { - "color" "200 200 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "id" "137637" + side + { + "id" "25450" + "plane" "(-239.926 -31.2083 160) (-223.7 -92.6991 160) (-238.902 -98.7989 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25449" + "plane" "(-239.926 -31.2083 160) (-256 -33.3042 160) (-256 -33.2985 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.991607 -0.129288 0 46.3768] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25448" + "plane" "(-238.902 -98.7989 160) (-223.7 -92.6991 160) (-223.7 -92.701 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.928068 0.372411 0 -7.12409] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25447" + "plane" "(-256 -33.3042 160) (-238.902 -98.7989 160) (-238.902 -98.801 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.252575 -0.967577 0 -28.1795] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25446" + "plane" "(-223.7 -92.6991 160) (-239.926 -31.2083 160) (-239.927 -31.2028 32)" + "material" "ELEVATOR/ELEVATOR_SCREEN" + "uaxis" "[0 -1 0 -260.165] 0.120087" + "vaxis" "[0 0 -1 -768] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25445" + "plane" "(-256 -33.2985 32) (-238.902 -98.801 32) (-223.7 -92.701 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "246 247 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } -} -entity -{ - "id" "126542" - "classname" "vgui_movie_display" - "angles" "0 255 0" - "forcedslave" "1" - "groupname" "departure_signs" - "height" "128" - "looping" "0" - "moviefilename" "media/" - "stretch" "1" - "targetname" "@departure_sign_24" - "width" "64" - "origin" "-0.0995975 271.3 -96" - editor + solid { - "color" "200 200 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "id" "137638" + side + { + "id" "25456" + "plane" "(-223.701 -92.7024 160) (-191.461 -147.172 160) (-204.601 -157.201 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25455" + "plane" "(-238.898 -98.8008 160) (-238.916 -98.767 32) (-223.768 -92.6885 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.928068 -0.372412 0 7.12396] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25454" + "plane" "(-204.601 -157.201 160) (-191.461 -147.172 160) (-191.504 -147.2 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.794911 0.606726 0 -24.0877] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25453" + "plane" "(-238.898 -98.8008 160) (-204.601 -157.201 160) (-204.6 -157.196 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.506434 -0.862279 0 -47.1953] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25452" + "plane" "(-191.461 -147.172 160) (-223.701 -92.7024 160) (-223.768 -92.6885 32)" + "material" "ELEVATOR/ELEVATOR_SCREEN" + "uaxis" "[0 -1 0 151.73] 0.106304" + "vaxis" "[0 0 -1 -768] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25451" + "plane" "(-238.916 -98.767 32) (-204.6 -157.196 32) (-191.504 -147.2 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "246 247 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } -} -entity -{ - "id" "126544" - "classname" "vgui_movie_display" - "angles" "0 75 0" - "forcedslave" "1" - "groupname" "departure_signs" - "height" "128" - "looping" "0" - "moviefilename" "media/" - "stretch" "1" - "targetname" "@departure_sign_36" - "width" "64" - "origin" "-63.9004 -207.3 -96" - editor + solid { - "color" "200 200 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "id" "137639" + side + { + "id" "25462" + "plane" "(-191.497 -147.101 160) (-147.196 -191.503 160) (-157.195 -204.602 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25461" + "plane" "(-191.497 -147.101 160) (-204.605 -157.207 160) (-204.541 -157.26 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.79194 -0.610599 0 23.2116] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25460" + "plane" "(-157.195 -204.602 160) (-147.196 -191.503 160) (-147.198 -191.501 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.606756 0.794888 0 -39.9191] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25459" + "plane" "(-204.605 -157.207 160) (-157.195 -204.602 160) (-157.195 -204.598 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 -53.0194] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25458" + "plane" "(-147.196 -191.503 160) (-191.497 -147.101 160) (-191.439 -147.159 32)" + "material" "ELEVATOR/ELEVATOR_SCREEN" + "uaxis" "[1 0 0 -349.183] 0.0866193" + "vaxis" "[0 0 -1 -768] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25457" + "plane" "(-204.541 -157.26 32) (-157.195 -204.598 32) (-147.198 -191.501 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "246 247 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } -} -entity -{ - "id" "126546" - "classname" "vgui_movie_display" - "angles" "0 285 0" - "forcedslave" "1" - "groupname" "departure_signs" - "height" "128" - "looping" "0" - "moviefilename" "media/" - "stretch" "1" - "targetname" "@departure_sign_46" - "width" "62" - "origin" "-124 255.2 -96" - editor + solid { - "color" "200 200 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "id" "137640" + side + { + "id" "25468" + "plane" "(-147.179 -191.457 160) (-92.7045 -223.702 160) (-98.8037 -238.899 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25467" + "plane" "(-147.179 -191.457 160) (-157.207 -204.594 160) (-157.133 -204.64 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.606763 -0.794882 0 39.9208] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25466" + "plane" "(-98.8037 -238.899 160) (-92.7045 -223.702 160) (-92.7011 -223.704 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.372422 0.928063 0 7.12204] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25465" + "plane" "(-157.207 -204.594 160) (-98.8037 -238.899 160) (-98.7999 -238.9 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.862278 -0.506435 0 -47.1953] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25464" + "plane" "(-92.7045 -223.702 160) (-147.179 -191.457 160) (-147.104 -191.502 32)" + "material" "ELEVATOR/ELEVATOR_SCREEN" + "uaxis" "[1 0 0 -151.584] 0.106287" + "vaxis" "[0 0 -1 -768] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25463" + "plane" "(-157.133 -204.64 32) (-98.7999 -238.9 32) (-92.7011 -223.704 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "246 247 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } -} -entity -{ - "id" "126548" - "classname" "vgui_movie_display" - "angles" "0 240 0" - "forcedslave" "1" - "groupname" "departure_signs" - "height" "128" - "looping" "0" - "moviefilename" "media/" - "stretch" "1" - "targetname" "@departure_sign_25" - "width" "64" - "origin" "60 255.2 -96" editor { - "color" "200 200 0" + "color" "246 247 0" + "groupid" "131009" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 0]" @@ -18850,216 +16725,297 @@ entity } entity { - "id" "126550" - "classname" "vgui_movie_display" - "angles" "0 225 0" - "forcedslave" "1" - "groupname" "departure_signs" - "height" "128" - "looping" "0" - "moviefilename" "media/" - "stretch" "1" - "targetname" "@departure_sign_26" - "width" "64" - "origin" "115 223 -96" + "id" "126321" + "classname" "light" + "_constant_attn" "3000" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "245 241 226 15" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "_zero_percent_distance" "0" + "angles" "0 0 0" + "spawnflags" "0" + "style" "0" + "origin" "-128 160 144" editor { - "color" "200 200 0" + "color" "224 229 0" + "groupid" "129905" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "logicalpos" "[0 3500]" } } entity { - "id" "126552" - "classname" "vgui_movie_display" - "angles" "0 60 0" - "forcedslave" "1" - "groupname" "departure_signs" - "height" "128" - "looping" "0" - "moviefilename" "media/" - "stretch" "1" - "targetname" "@departure_sign_37" - "width" "64" - "origin" "-124 -191.2 -96" + "id" "126338" + "classname" "prop_dynamic" + "angles" "0 90 180" + "DefaultAnim" "spin" + "DisableBoneFollowers" "0" + "disablereceiveshadows" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "MaxAnimTime" "10" + "MinAnimTime" "5" + "model" "models/elevator/elevator_blades.mdl" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "skin" "0" + "solid" "0" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "0 0 287.589" editor { - "color" "200 200 0" + "color" "220 30 220" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "logicalpos" "[0 500]" } } entity { - "id" "126554" - "classname" "vgui_movie_display" - "angles" "0 45 0" - "forcedslave" "1" - "groupname" "departure_signs" - "height" "128" - "looping" "0" - "moviefilename" "media/" - "stretch" "1" - "targetname" "@departure_sign_38" - "width" "64" - "origin" "-179.05 -159.3 -96" + "id" "126342" + "classname" "prop_static" + "angles" "0 0 -180" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/elevator/elevator_turbine_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "0 0 287.589" editor { - "color" "200 200 0" + "color" "213 210 0" + "groupid" "136399" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "logicalpos" "[0 500]" } } entity { - "id" "126556" - "classname" "vgui_movie_display" - "angles" "0 210 0" - "forcedslave" "1" - "groupname" "departure_signs" - "height" "128" - "looping" "0" - "moviefilename" "media/" - "stretch" "1" - "targetname" "@departure_sign_27" - "width" "64" - "origin" "159.3 179.3 -96" + "id" "126346" + "classname" "light" + "_constant_attn" "3000" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "245 241 226 30" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "_zero_percent_distance" "0" + "angles" "0 0 0" + "spawnflags" "0" + "style" "0" + "origin" "80 192 144" editor { - "color" "200 200 0" + "color" "224 229 0" + "groupid" "129905" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "logicalpos" "[0 3500]" } } entity { - "id" "126558" - "classname" "vgui_movie_display" - "angles" "0 195 0" - "forcedslave" "1" - "groupname" "departure_signs" - "height" "128" - "looping" "0" - "moviefilename" "media/" - "stretch" "1" - "targetname" "@departure_sign_28" - "width" "64" - "origin" "191.2 124 -96" + "id" "126351" + "classname" "prop_static" + "angles" "0 90 -180" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/elevator/elevator_roof_collar.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "0 0 -112" editor { - "color" "200 200 0" + "color" "213 210 0" + "groupid" "136399" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "logicalpos" "[0 500]" } } entity { - "id" "126560" - "classname" "vgui_movie_display" - "angles" "0 30 0" - "forcedslave" "1" - "groupname" "departure_signs" - "height" "128" - "looping" "0" - "moviefilename" "media/" - "stretch" "1" - "targetname" "@departure_sign_39" - "width" "64" - "origin" "-223.3 -115.3 -96" + "id" "126355" + "classname" "prop_static" + "angles" "0 90 180" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/elevator/elevator_roof_collar_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "0 0 -112" editor { - "color" "200 200 0" + "color" "213 210 0" + "groupid" "136399" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "logicalpos" "[0 500]" } } entity { - "id" "126562" - "classname" "vgui_movie_display" - "angles" "0 15 0" - "forcedslave" "1" - "groupname" "departure_signs" - "height" "128" - "looping" "0" - "moviefilename" "media/" - "stretch" "1" - "targetname" "@departure_sign_40" - "width" "64" - "origin" "-255.2 -60 -96" + "id" "126363" + "classname" "light" + "_constant_attn" "1500" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 247 217 75" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "_zero_percent_distance" "0" + "angles" "0 0 0" + "spawnflags" "0" + "style" "0" + "origin" "0 0 240" editor { - "color" "200 200 0" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "logicalpos" "[0 3500]" } } entity { - "id" "126564" - "classname" "vgui_movie_display" - "angles" "0 180 0" - "forcedslave" "1" - "groupname" "departure_signs" - "height" "128" - "looping" "0" - "moviefilename" "media/" - "stretch" "1" - "targetname" "@departure_sign_29" - "width" "64" - "origin" "207.3 63.9004 -96" + "id" "126368" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/elevator/elevator_coop_main.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "0 0 -166.551" editor { - "color" "200 200 0" + "color" "213 210 0" + "groupid" "136399" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "logicalpos" "[0 500]" } } entity { - "id" "126566" - "classname" "vgui_movie_display" - "angles" "0 165 0" - "forcedslave" "1" - "groupname" "departure_signs" - "height" "128" - "looping" "0" - "moviefilename" "media/" - "stretch" "1" - "targetname" "@departure_sign_30" - "width" "64" - "origin" "207.3 0.0996003 -96" + "id" "126372" + "classname" "prop_static" + "angles" "0 0 -180" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/elevator/elevator_turbine_static.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "0 0 287.589" editor { - "color" "200 200 0" + "color" "213 210 0" + "groupid" "136399" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "logicalpos" "[0 500]" } } entity { - "id" "126568" + "id" "126378" "classname" "vgui_movie_display" - "angles" "0 0 0" + "angles" "0 285 0" "forcedslave" "1" "groupname" "departure_signs" "height" "128" "looping" "0" "moviefilename" "media/" "stretch" "1" - "targetname" "@departure_sign_41" - "width" "64" - "origin" "-271.3 0.0996213 -96" + "targetname" "@departure_sign_23" + "width" "62" + "origin" "-92 223.2 32" editor { "color" "200 200 0" @@ -19070,62 +17026,137 @@ entity } entity { - "id" "126570" - "classname" "vgui_movie_display" - "angles" "0 345 0" - "forcedslave" "1" - "groupname" "departure_signs" - "height" "128" - "looping" "0" - "moviefilename" "media/" - "stretch" "1" - "targetname" "@departure_sign_42" - "width" "64" - "origin" "-271.3 63.9004 -96" + "id" "126393" + "classname" "prop_static" + "angles" "0 165 90" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/anim_wp/framework/squarebeam_off.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "origin" "66 256 64" editor { - "color" "200 200 0" + "color" "213 210 0" + "groupid" "136399" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "logicalpos" "[0 8500]" } } entity { - "id" "126572" - "classname" "vgui_movie_display" - "angles" "0 150 0" - "forcedslave" "1" - "groupname" "departure_signs" - "height" "128" - "looping" "0" - "moviefilename" "media/" - "stretch" "1" - "targetname" "@departure_sign_31" - "width" "64" - "origin" "191.2 -60 -96" + "id" "126424" + "classname" "func_detail" + solid + { + "id" "126426" + side + { + "id" "24124" + "plane" "(33 240 160) (31.207 239 160) (31 239 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24123" + "plane" "(31.207 239 -96) (31.207 239 160) (33 240 160)" + "material" "ELEVATOR/ELEVATOR_SCREEN_BROKEN" + "uaxis" "[0.869192 0.494474 0 -187.619] 0.120084" + "vaxis" "[0 0 -1 -768.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24122" + "plane" "(32 243 -96) (33 240 -96) (33 240 160)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_COLOR01_NOSPEC" + "uaxis" "[-1 0 0 -380] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24121" + "plane" "(31 239 160) (31.2109 239 160) (31.2109 239 -96)" + "material" "ELEVATOR/ELEVATOR_SCREEN_BROKEN" + "uaxis" "[1 0 0 -261.375] 0.120084" + "vaxis" "[0 0 -1 -768] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24120" + "plane" "(31 239 -96) (31.1992 239 -96) (33 240 -96)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 128] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24119" + "plane" "(32 243 -96) (32 243 160) (31 239 160)" + "material" "ANIM_WP/FRAMEWORK/SQUAREBEAMS_RUSTY_01" + "uaxis" "[0.0991196 -0.995075 0 -16.0409] 0.25" + "vaxis" "[0 0 -1 -383.997] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } editor { - "color" "200 200 0" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "logicalpos" "[0 4000]" } } entity { - "id" "126574" + "id" "126427" "classname" "vgui_movie_display" - "angles" "0 135 0" + "angles" "0 255 0" "forcedslave" "1" "groupname" "departure_signs" "height" "128" "looping" "0" "moviefilename" "media/" "stretch" "1" - "targetname" "@departure_sign_32" + "targetname" "@departure_sign_1" "width" "64" - "origin" "159.2 -115.2 -96" + "origin" "31.9004 239.3 32" editor { "color" "200 200 0" @@ -19136,304 +17167,452 @@ entity } entity { - "id" "126576" - "classname" "vgui_movie_display" - "angles" "0 330 0" - "forcedslave" "1" - "groupname" "departure_signs" - "height" "128" - "looping" "0" - "moviefilename" "media/" - "stretch" "1" - "targetname" "@departure_sign_43" - "width" "64" - "origin" "-255.2 124 -96" + "id" "126429" + "classname" "prop_static" + "angles" "0 180 90" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/anim_wp/framework/squarebeam_off.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "origin" "0 264 256" editor { - "color" "200 200 0" + "color" "213 210 0" + "groupid" "136399" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "logicalpos" "[0 8500]" } } entity { - "id" "126578" - "classname" "vgui_movie_display" - "angles" "0 315 0" - "forcedslave" "1" - "groupname" "departure_signs" - "height" "128" - "looping" "0" - "moviefilename" "media/" - "stretch" "1" - "targetname" "@departure_sign_44" - "width" "64" - "origin" "-223 179 -96" + "id" "126433" + "classname" "prop_static" + "angles" "0 180 90" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/anim_wp/framework/squarebeam_off.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "origin" "0 264 192" editor { - "color" "200 200 0" + "color" "213 210 0" + "groupid" "136399" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "logicalpos" "[0 8500]" } } entity { - "id" "126580" - "classname" "vgui_movie_display" - "angles" "0 120 0" - "forcedslave" "1" - "groupname" "departure_signs" - "height" "128" - "looping" "0" - "moviefilename" "media/" - "stretch" "1" - "targetname" "@departure_sign_33" - "width" "64" - "origin" "115.3 -159.3 -96" + "id" "126437" + "classname" "prop_static" + "angles" "0 180 90" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/anim_wp/framework/squarebeam_off.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "origin" "0 264 320" editor { - "color" "200 200 0" + "color" "213 210 0" + "groupid" "136399" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "logicalpos" "[0 8500]" } } entity { - "id" "126582" - "classname" "vgui_movie_display" - "angles" "0 105 0" - "forcedslave" "1" - "groupname" "departure_signs" - "height" "128" - "looping" "0" - "moviefilename" "media/" - "stretch" "1" - "targetname" "@departure_sign_34" - "width" "64" - "origin" "60 -191.2 -96" + "id" "126441" + "classname" "prop_static" + "angles" "0 180 90" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/anim_wp/framework/squarebeam_off.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "0 264 -128" editor { - "color" "200 200 0" + "color" "213 210 0" + "groupid" "136399" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "logicalpos" "[0 8500]" } } entity { - "id" "126584" - "classname" "vgui_movie_display" - "angles" "0 300 0" - "forcedslave" "1" - "groupname" "departure_signs" - "height" "128" - "looping" "0" - "moviefilename" "media/" - "stretch" "1" - "targetname" "@departure_sign_45" - "width" "64" - "origin" "-179.3 223.3 -96" + "id" "126445" + "classname" "prop_static" + "angles" "0 195 90" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/anim_wp/framework/squarebeam_off.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "origin" "-66 255 320" editor { - "color" "200 200 0" + "color" "213 210 0" + "groupid" "136399" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "logicalpos" "[0 8500]" } } entity { - "id" "126586" - "classname" "vgui_movie_display" - "angles" "0 75 0" - "forcedslave" "1" - "groupname" "departure_signs" - "height" "128" - "looping" "0" - "moviefilename" "media/" - "stretch" "1" - "targetname" "@departure_sign_13" - "width" "64" - "origin" "-63.9004 -207.3 32" + "id" "126449" + "classname" "prop_static" + "angles" "0 195 90" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/anim_wp/framework/squarebeam_off.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "origin" "-66 255 256" editor { - "color" "200 200 0" + "color" "213 210 0" + "groupid" "136399" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "logicalpos" "[0 8500]" } } entity { - "id" "126588" - "classname" "vgui_movie_display" - "angles" "0 240 0" - "forcedslave" "1" - "groupname" "departure_signs" - "height" "128" - "looping" "0" - "moviefilename" "media/" - "stretch" "1" - "targetname" "@departure_sign_2" - "width" "64" - "origin" "60 255.2 32" + "id" "126453" + "classname" "prop_static" + "angles" "0 195 90" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/anim_wp/framework/squarebeam_off.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "origin" "-66 255 192" editor { - "color" "200 200 0" + "color" "213 210 0" + "groupid" "136399" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "logicalpos" "[0 8500]" } } entity { - "id" "126590" - "classname" "vgui_movie_display" - "angles" "0 60 0" - "forcedslave" "1" - "groupname" "departure_signs" - "height" "128" - "looping" "0" - "moviefilename" "media/" - "stretch" "1" - "targetname" "@departure_sign_14" - "width" "64" - "origin" "-124 -191.2 32" + "id" "126457" + "classname" "prop_static" + "angles" "0 195 90" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/anim_wp/framework/squarebeam_off.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "origin" "-66 255 128" + editor + { + "color" "213 210 0" + "groupid" "136399" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +entity +{ + "id" "126461" + "classname" "prop_static" + "angles" "0 195 90" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/anim_wp/framework/squarebeam_off.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "origin" "-66 255 64" editor { - "color" "200 200 0" + "color" "213 210 0" + "groupid" "136399" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "logicalpos" "[0 8500]" } } entity { - "id" "126592" - "classname" "vgui_movie_display" - "angles" "0 210 0" - "forcedslave" "1" - "groupname" "departure_signs" - "height" "128" - "looping" "0" - "moviefilename" "media/" - "stretch" "1" - "targetname" "@departure_sign_4" - "width" "64" - "origin" "159.3 179.3 32" + "id" "126465" + "classname" "prop_static" + "angles" "0 195 90" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/anim_wp/framework/squarebeam_off.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "origin" "-66 255 0" editor { - "color" "200 200 0" + "color" "213 210 0" + "groupid" "136399" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "logicalpos" "[0 8500]" } } entity { - "id" "126594" - "classname" "vgui_movie_display" - "angles" "0 30 0" - "forcedslave" "1" - "groupname" "departure_signs" - "height" "128" - "looping" "0" - "moviefilename" "media/" - "stretch" "1" - "targetname" "@departure_sign_16" - "width" "64" - "origin" "-223.3 -115.3 32" + "id" "126469" + "classname" "prop_static" + "angles" "0 195 90" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/anim_wp/framework/squarebeam_off.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "origin" "-66 255 -64" editor { - "color" "200 200 0" + "color" "213 210 0" + "groupid" "136399" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "logicalpos" "[0 8500]" } } entity { - "id" "126596" - "classname" "vgui_movie_display" - "angles" "0 180 0" - "forcedslave" "1" - "groupname" "departure_signs" - "height" "128" - "looping" "0" - "moviefilename" "media/" - "stretch" "1" - "targetname" "@departure_sign_6" - "width" "64" - "origin" "207.3 63.9004 32" + "id" "126473" + "classname" "prop_static" + "angles" "0 195 90" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/anim_wp/framework/squarebeam_off.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "origin" "-66 255 -128" editor { - "color" "200 200 0" + "color" "213 210 0" + "groupid" "136399" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "logicalpos" "[0 8500]" } } entity { - "id" "126598" - "classname" "vgui_movie_display" - "angles" "0 0 0" - "forcedslave" "1" - "groupname" "departure_signs" - "height" "128" - "looping" "0" - "moviefilename" "media/" - "stretch" "1" - "targetname" "@departure_sign_18" - "width" "64" - "origin" "-271.3 0.0996213 32" + "id" "126477" + "classname" "prop_static" + "angles" "0 165 90" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/anim_wp/framework/squarebeam_off.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "origin" "66 256 -128" editor { - "color" "200 200 0" + "color" "213 210 0" + "groupid" "136399" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "logicalpos" "[0 8500]" } } entity { - "id" "126600" - "classname" "vgui_movie_display" - "angles" "0 150 0" - "forcedslave" "1" - "groupname" "departure_signs" - "height" "128" - "looping" "0" - "moviefilename" "media/" - "stretch" "1" - "targetname" "@departure_sign_8" - "width" "64" - "origin" "191.2 -60 32" + "id" "126481" + "classname" "prop_static" + "angles" "0 165 90" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/anim_wp/framework/squarebeam_off.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "origin" "66 256 256" editor { - "color" "200 200 0" + "color" "213 210 0" + "groupid" "136399" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "logicalpos" "[0 8500]" } } entity { - "id" "126602" + "id" "126540" "classname" "vgui_movie_display" - "angles" "0 330 0" + "angles" "0 90 0" "forcedslave" "1" "groupname" "departure_signs" "height" "128" "looping" "0" "moviefilename" "media/" "stretch" "1" - "targetname" "@departure_sign_20" + "targetname" "@departure_sign_35" "width" "64" - "origin" "-255.2 124 32" + "origin" "31.9004 -239.3 -96" editor { "color" "200 200 0" @@ -19444,18 +17623,18 @@ entity } entity { - "id" "126604" + "id" "126542" "classname" "vgui_movie_display" - "angles" "0 120 0" + "angles" "0 255 0" "forcedslave" "1" "groupname" "departure_signs" "height" "128" "looping" "0" "moviefilename" "media/" "stretch" "1" - "targetname" "@departure_sign_10" + "targetname" "@departure_sign_24" "width" "64" - "origin" "115.3 -159.3 32" + "origin" "31.9004 239.3 -96" editor { "color" "200 200 0" @@ -19466,18 +17645,18 @@ entity } entity { - "id" "126606" + "id" "126544" "classname" "vgui_movie_display" - "angles" "0 300 0" + "angles" "0 75 0" "forcedslave" "1" "groupname" "departure_signs" "height" "128" "looping" "0" "moviefilename" "media/" "stretch" "1" - "targetname" "@departure_sign_22" + "targetname" "@departure_sign_36" "width" "64" - "origin" "-179.3 223.3 32" + "origin" "-31.9004 -239.3 -96" editor { "color" "200 200 0" @@ -19488,18 +17667,18 @@ entity } entity { - "id" "126608" + "id" "126546" "classname" "vgui_movie_display" - "angles" "0 105 0" + "angles" "0 285 0" "forcedslave" "1" "groupname" "departure_signs" "height" "128" "looping" "0" "moviefilename" "media/" "stretch" "1" - "targetname" "@departure_sign_11" - "width" "64" - "origin" "60 -191.2 32" + "targetname" "@departure_sign_46" + "width" "62" + "origin" "-92 223.2 -96" editor { "color" "200 200 0" @@ -19510,18 +17689,18 @@ entity } entity { - "id" "126610" + "id" "126548" "classname" "vgui_movie_display" - "angles" "0 315 0" + "angles" "0 240 0" "forcedslave" "1" "groupname" "departure_signs" "height" "128" "looping" "0" "moviefilename" "media/" "stretch" "1" - "targetname" "@departure_sign_21" + "targetname" "@departure_sign_25" "width" "64" - "origin" "-223 179 32" + "origin" "92 223.2 -96" editor { "color" "200 200 0" @@ -19532,18 +17711,18 @@ entity } entity { - "id" "126612" + "id" "126550" "classname" "vgui_movie_display" - "angles" "0 135 0" + "angles" "0 225 0" "forcedslave" "1" "groupname" "departure_signs" "height" "128" "looping" "0" "moviefilename" "media/" "stretch" "1" - "targetname" "@departure_sign_9" + "targetname" "@departure_sign_26" "width" "64" - "origin" "159.2 -115.2 32" + "origin" "147 191 -96" editor { "color" "200 200 0" @@ -19554,18 +17733,18 @@ entity } entity { - "id" "126614" + "id" "126552" "classname" "vgui_movie_display" - "angles" "0 345 0" + "angles" "0 60 0" "forcedslave" "1" "groupname" "departure_signs" "height" "128" "looping" "0" "moviefilename" "media/" "stretch" "1" - "targetname" "@departure_sign_19" + "targetname" "@departure_sign_37" "width" "64" - "origin" "-271.3 63.9004 32" + "origin" "-92 -223.2 -96" editor { "color" "200 200 0" @@ -19576,18 +17755,18 @@ entity } entity { - "id" "126616" + "id" "126554" "classname" "vgui_movie_display" - "angles" "0 165 0" + "angles" "0 45 0" "forcedslave" "1" "groupname" "departure_signs" "height" "128" "looping" "0" "moviefilename" "media/" "stretch" "1" - "targetname" "@departure_sign_7" + "targetname" "@departure_sign_38" "width" "64" - "origin" "207.3 0.0996003 32" + "origin" "-147.05 -191.3 -96" editor { "color" "200 200 0" @@ -19598,18 +17777,18 @@ entity } entity { - "id" "126618" + "id" "126556" "classname" "vgui_movie_display" - "angles" "0 15 0" + "angles" "0 210 0" "forcedslave" "1" "groupname" "departure_signs" "height" "128" "looping" "0" "moviefilename" "media/" "stretch" "1" - "targetname" "@departure_sign_17" + "targetname" "@departure_sign_27" "width" "64" - "origin" "-255.2 -60 32" + "origin" "191.3 147.3 -96" editor { "color" "200 200 0" @@ -19620,7 +17799,7 @@ entity } entity { - "id" "126620" + "id" "126558" "classname" "vgui_movie_display" "angles" "0 195 0" "forcedslave" "1" @@ -19629,9 +17808,9 @@ entity "looping" "0" "moviefilename" "media/" "stretch" "1" - "targetname" "@departure_sign_5" + "targetname" "@departure_sign_28" "width" "64" - "origin" "191.2 124 32" + "origin" "223.2 92 -96" editor { "color" "200 200 0" @@ -19642,18 +17821,18 @@ entity } entity { - "id" "126622" + "id" "126560" "classname" "vgui_movie_display" - "angles" "0 45 0" + "angles" "0 30 0" "forcedslave" "1" "groupname" "departure_signs" "height" "128" "looping" "0" "moviefilename" "media/" "stretch" "1" - "targetname" "@departure_sign_15" + "targetname" "@departure_sign_39" "width" "64" - "origin" "-179.05 -159.3 32" + "origin" "-191.3 -147.3 -96" editor { "color" "200 200 0" @@ -19664,18 +17843,18 @@ entity } entity { - "id" "126624" + "id" "126562" "classname" "vgui_movie_display" - "angles" "0 225 0" + "angles" "0 15 0" "forcedslave" "1" "groupname" "departure_signs" "height" "128" "looping" "0" "moviefilename" "media/" "stretch" "1" - "targetname" "@departure_sign_3" + "targetname" "@departure_sign_40" "width" "64" - "origin" "115 223 32" + "origin" "-223.2 -92 -96" editor { "color" "200 200 0" @@ -19686,156 +17865,21 @@ entity } entity { - "id" "126626" - "classname" "prop_static" - "angles" "0 180 90" - "disableselfshadowing" "0" - "disablevertexlighting" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "model" "models/props_backstage/triple_wallpipe_straight_a.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "-120 5.24537e-006 1535.79" - editor - { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 -10768]" - } -} -entity -{ - "id" "126642" - "classname" "prop_static" - "angles" "0 180 90" - "disableselfshadowing" "0" - "disablevertexlighting" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "model" "models/props_backstage/triple_wallpipe_straight_a.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "-120 5.24537e-006 1407.79" - editor - { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 -10768]" - } -} -entity -{ - "id" "126650" - "classname" "prop_static" - "angles" "0 180 90" - "disableselfshadowing" "0" - "disablevertexlighting" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "model" "models/props_backstage/triple_wallpipe_straight_a.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "skin" "0" - "solid" "6" - "origin" "-120 5.24537e-006 1279.79" - editor - { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 -10768]" - } -} -entity -{ - "id" "126658" - "classname" "prop_static" - "angles" "0 180 -180" - "disableselfshadowing" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "model" "models/props_underground/truss_64_256.mdl" - "renderamt" "255" - "rendercolor" "192 192 192" - "screenspacefade" "0" - "shadowdepthnocache" "0" - "skin" "0" - "solid" "6" - "origin" "-32 -64 455.788" - editor - { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[4500 -4768]" - } -} -entity -{ - "id" "126667" - "classname" "prop_static" - "angles" "90 270 0" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_bts/light_cage001a.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "2" - "solid" "6" - "origin" "-192 320 217.998" - editor - { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "126671" - "classname" "prop_static" - "angles" "90 270 0" - "disableshadows" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_bts/light_cage001a.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "2" - "solid" "6" - "origin" "128 320 217.998" + "id" "126564" + "classname" "vgui_movie_display" + "angles" "0 180 0" + "forcedslave" "1" + "groupname" "departure_signs" + "height" "128" + "looping" "0" + "moviefilename" "media/" + "stretch" "1" + "targetname" "@departure_sign_29" + "width" "64" + "origin" "239.3 31.9004 -96" editor { - "color" "213 210 0" - "groupid" "136399" + "color" "200 200 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 0]" @@ -19843,1998 +17887,708 @@ entity } entity { - "id" "126682" - "classname" "prop_static" - "angles" "90 0 0" - "disableshadows" "1" - "drawinfastreflection" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_lab/glass_lightcover.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "1" - "solid" "6" - "origin" "-32 560 224" - editor - { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[2500 -12768]" - } -} -entity -{ - "id" "126693" - "classname" "prop_static" - "angles" "90 0 0" - "disableshadows" "1" - "drawinfastreflection" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_lab/glass_lightcover.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "1" - "solid" "6" - "origin" "-32 592 224" - editor - { - "color" "213 210 0" - "groupid" "136399" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[2500 -12768]" - } -} -entity -{ - "id" "88968" - "classname" "trigger_once" - "origin" "-32 576 104" - "spawnflags" "4097" - "StartDisabled" "0" - connections - { - "OnTrigger" "@exit_doorClose0-1" - "OnTrigger" "@music_stopTrigger0-1" - } - solid - { - "id" "88969" - side - { - "id" "17696" - "plane" "(-128 560 176) (-128 592 176) (64 592 176)" - "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[-1 0 0 -48] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17695" - "plane" "(64 592 176) (-128 592 176) (-128 592 32)" - "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17694" - "plane" "(-128 560 32) (-128 592 32) (-128 592 176)" - "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17693" - "plane" "(64 592 32) (-128 592 32) (-128 560 32)" - "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 -1 0 32] 0.25" - "vaxis" "[-1 0 0 -48] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17692" - "plane" "(64 560 32) (-128 560 32) (-128 560 176)" - "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17691" - "plane" "(64 560 176) (64 592 176) (64 592 32)" - "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 -1 0 32] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 2000]" - } -} -entity -{ - "id" "101877" - "classname" "func_instance" - "angles" "-0 180 0" - "file" "instances/bee2/clean/elevator_sp/elevator_departure_logic.vmf" - "targetname" "departure_elevator" - "origin" "-32 32 -112" + "id" "126566" + "classname" "vgui_movie_display" + "angles" "0 165 0" + "forcedslave" "1" + "groupname" "departure_signs" + "height" "128" + "looping" "0" + "moviefilename" "media/" + "stretch" "1" + "targetname" "@departure_sign_30" + "width" "64" + "origin" "239.3 -31.9004 -96" editor { - "color" "220 30 220" + "color" "200 200 0" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 1500]" + "logicalpos" "[0 0]" } } -entity -{ - "id" "94797" - "classname" "func_detail" - solid - { - "id" "94822" - side - { - "id" "19262" - "plane" "(-96 688 65) (-96 688 54) (-89 688 54)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19261" - "plane" "(-96 672 54) (-96 672 65) (-92 672 65)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 0 -1 128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19260" - "plane" "(-96 672 65) (-96 672 54) (-96 688 54)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19259" - "plane" "(-92 688 65) (-89 688 54) (-89 672 54)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0.263117 0 -0.964764 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19258" - "plane" "(-92 672 65) (-96 672 65) (-96 688 65)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19257" - "plane" "(-89 688 54) (-96 688 54) (-96 672 54)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "94799" - side - { - "id" "19124" - "plane" "(32 688 160) (2 688 160) (2 688 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19123" - "plane" "(9 672 122) (2 672 128) (2 672 160)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 0 -1 128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19122" - "plane" "(32 672 160) (2 672 160) (2 688 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19121" - "plane" "(2 672 160) (2 672 128) (2 688 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19120" - "plane" "(9 688 122) (2 688 128) (2 672 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.759256 0 0.650791 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19119" - "plane" "(32 688 160) (9 688 122) (9 672 122)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-0.517802 0 -0.8555 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "94800" - side - { - "id" "19130" - "plane" "(-89 672 100) (-92 672 89) (-96 672 89)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 0 -1 128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19129" - "plane" "(-96 688 100) (-96 688 89) (-92 688 89)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19128" - "plane" "(-96 672 100) (-96 672 89) (-96 688 89)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19127" - "plane" "(-89 688 100) (-92 688 89) (-92 672 89)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-0.263117 0 -0.964764 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19126" - "plane" "(-92 688 89) (-96 688 89) (-96 672 89)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19125" - "plane" "(-89 672 100) (-96 672 100) (-96 688 100)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "94801" - side - { - "id" "19136" - "plane" "(-92 672 89) (-93 672 77) (-96 672 77)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 0 -1 128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19135" - "plane" "(-96 688 89) (-96 688 77) (-93 688 77)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19134" - "plane" "(-96 672 89) (-96 672 77) (-96 688 77)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19133" - "plane" "(-93 688 77) (-96 688 77) (-96 672 77)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19132" - "plane" "(-92 688 89) (-93 688 77) (-93 672 77)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-0.0830455 0 -0.996546 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19131" - "plane" "(-92 672 89) (-96 672 89) (-96 688 89)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } +entity +{ + "id" "126568" + "classname" "vgui_movie_display" + "angles" "0 0 0" + "forcedslave" "1" + "groupname" "departure_signs" + "height" "128" + "looping" "0" + "moviefilename" "media/" + "stretch" "1" + "targetname" "@departure_sign_41" + "width" "64" + "origin" "-239.3 -31.9004 -96" + editor + { + "color" "200 200 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" } - solid +} +entity +{ + "id" "126570" + "classname" "vgui_movie_display" + "angles" "0 345 0" + "forcedslave" "1" + "groupname" "departure_signs" + "height" "128" + "looping" "0" + "moviefilename" "media/" + "stretch" "1" + "targetname" "@departure_sign_42" + "width" "64" + "origin" "-239.3 31.9004 -96" + editor { - "id" "94802" - side - { - "id" "19142" - "plane" "(-20 688 160) (-32 688 160) (-32 688 138)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19141" - "plane" "(-20 672 137) (-32 672 138) (-32 672 160)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 0 -1 128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19140" - "plane" "(-20 672 160) (-32 672 160) (-32 688 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19139" - "plane" "(-20 688 137) (-32 688 138) (-32 672 138)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.996546 0 0.0830455 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19138" - "plane" "(-32 672 160) (-32 672 138) (-32 688 138)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19137" - "plane" "(-20 688 160) (-20 688 137) (-20 672 137)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "200 200 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" } - solid +} +entity +{ + "id" "126572" + "classname" "vgui_movie_display" + "angles" "0 150 0" + "forcedslave" "1" + "groupname" "departure_signs" + "height" "128" + "looping" "0" + "moviefilename" "media/" + "stretch" "1" + "targetname" "@departure_sign_31" + "width" "64" + "origin" "223.2 -92 -96" + editor { - "id" "94803" - side - { - "id" "19148" - "plane" "(-8 688 160) (-20 688 160) (-20 688 137)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19147" - "plane" "(-8 672 133) (-20 672 137) (-20 672 160)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 0 -1 128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19146" - "plane" "(-8 672 160) (-20 672 160) (-20 688 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19145" - "plane" "(-8 688 133) (-20 688 137) (-20 672 137)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.948683 0 0.316227 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19144" - "plane" "(-20 672 160) (-20 672 137) (-20 688 137)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19143" - "plane" "(-8 688 160) (-8 688 133) (-8 672 133)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "200 200 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" } - solid +} +entity +{ + "id" "126574" + "classname" "vgui_movie_display" + "angles" "0 135 0" + "forcedslave" "1" + "groupname" "departure_signs" + "height" "128" + "looping" "0" + "moviefilename" "media/" + "stretch" "1" + "targetname" "@departure_sign_32" + "width" "64" + "origin" "191.2 -147.2 -96" + editor { - "id" "94804" - side - { - "id" "19154" - "plane" "(28 688 89) (29 688 77) (32 688 77)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19153" - "plane" "(32 672 89) (32 672 77) (29 672 77)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 0 -1 128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19152" - "plane" "(32 688 89) (32 688 77) (32 672 77)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19151" - "plane" "(32 688 77) (29 688 77) (29 672 77)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19150" - "plane" "(28 672 89) (29 672 77) (29 688 77)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0.0830455 0 -0.996546 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19149" - "plane" "(32 672 89) (28 672 89) (28 688 89)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "200 200 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "126576" + "classname" "vgui_movie_display" + "angles" "0 330 0" + "forcedslave" "1" + "groupname" "departure_signs" + "height" "128" + "looping" "0" + "moviefilename" "media/" + "stretch" "1" + "targetname" "@departure_sign_43" + "width" "64" + "origin" "-223.2 92 -96" + editor + { + "color" "200 200 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" } - solid +} +entity +{ + "id" "126578" + "classname" "vgui_movie_display" + "angles" "0 315 0" + "forcedslave" "1" + "groupname" "departure_signs" + "height" "128" + "looping" "0" + "moviefilename" "media/" + "stretch" "1" + "targetname" "@departure_sign_44" + "width" "64" + "origin" "-191 147 -96" + editor { - "id" "94805" - side - { - "id" "19160" - "plane" "(25 688 100) (28 688 89) (32 688 89)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19159" - "plane" "(32 672 100) (32 672 89) (28 672 89)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 0 -1 128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19158" - "plane" "(32 688 100) (32 688 89) (32 672 89)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19157" - "plane" "(25 672 100) (28 672 89) (28 688 89)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0.263117 0 -0.964764 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19156" - "plane" "(32 688 89) (28 688 89) (28 672 89)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19155" - "plane" "(32 672 100) (25 672 100) (25 688 100)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "200 200 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" } - solid +} +entity +{ + "id" "126580" + "classname" "vgui_movie_display" + "angles" "0 120 0" + "forcedslave" "1" + "groupname" "departure_signs" + "height" "128" + "looping" "0" + "moviefilename" "media/" + "stretch" "1" + "targetname" "@departure_sign_33" + "width" "64" + "origin" "147.3 -191.3 -96" + editor { - "id" "94806" - side - { - "id" "19166" - "plane" "(2 688 160) (-8 688 160) (-8 688 133)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19165" - "plane" "(2 672 128) (-8 672 133) (-8 672 160)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 0 -1 128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19164" - "plane" "(2 672 160) (-8 672 160) (-8 688 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19163" - "plane" "(-8 672 160) (-8 672 133) (-8 688 133)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19162" - "plane" "(2 688 128) (-8 688 133) (-8 672 133)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.894427 0 0.447214 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19161" - "plane" "(2 688 160) (2 688 128) (2 672 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "200 200 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" } - solid +} +entity +{ + "id" "126582" + "classname" "vgui_movie_display" + "angles" "0 105 0" + "forcedslave" "1" + "groupname" "departure_signs" + "height" "128" + "looping" "0" + "moviefilename" "media/" + "stretch" "1" + "targetname" "@departure_sign_34" + "width" "64" + "origin" "92 -223.2 -96" + editor { - "id" "94807" - side - { - "id" "19172" - "plane" "(19 688 111) (25 688 100) (32 688 100)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19171" - "plane" "(32 672 111) (32 672 100) (25 672 100)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 0 -1 128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19170" - "plane" "(32 688 111) (32 688 100) (32 672 100)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19169" - "plane" "(32 688 100) (25 688 100) (25 672 100)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19168" - "plane" "(19 672 111) (25 672 100) (25 688 100)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0.478852 0 -0.877896 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19167" - "plane" "(32 672 111) (19 672 111) (19 688 111)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "200 200 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "126584" + "classname" "vgui_movie_display" + "angles" "0 300 0" + "forcedslave" "1" + "groupname" "departure_signs" + "height" "128" + "looping" "0" + "moviefilename" "media/" + "stretch" "1" + "targetname" "@departure_sign_45" + "width" "64" + "origin" "-147.3 191.3 -96" + editor + { + "color" "200 200 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" } - solid +} +entity +{ + "id" "126586" + "classname" "vgui_movie_display" + "angles" "0 75 0" + "forcedslave" "1" + "groupname" "departure_signs" + "height" "128" + "looping" "0" + "moviefilename" "media/" + "stretch" "1" + "targetname" "@departure_sign_13" + "width" "64" + "origin" "-31.9004 -239.3 32" + editor { - "id" "94808" - side - { - "id" "19178" - "plane" "(9 688 122) (19 688 111) (32 688 111)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19177" - "plane" "(32 672 160) (32 672 111) (19 672 111)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 0 -1 128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19176" - "plane" "(32 688 160) (32 688 111) (32 672 111)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19175" - "plane" "(32 688 111) (19 688 111) (19 672 111)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19174" - "plane" "(9 672 122) (19 672 111) (19 688 111)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0.672672 0 -0.739941 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19173" - "plane" "(32 672 160) (9 672 122) (9 688 122)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-0.517802 0 -0.8555 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "200 200 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" } - solid +} +entity +{ + "id" "126588" + "classname" "vgui_movie_display" + "angles" "0 240 0" + "forcedslave" "1" + "groupname" "departure_signs" + "height" "128" + "looping" "0" + "moviefilename" "media/" + "stretch" "1" + "targetname" "@departure_sign_2" + "width" "64" + "origin" "92 223.2 32" + editor { - "id" "94809" - side - { - "id" "19184" - "plane" "(-44 672 160) (-32 672 160) (-32 672 138)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 0 -1 128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19183" - "plane" "(-44 688 137) (-32 688 138) (-32 688 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19182" - "plane" "(-32 672 160) (-44 672 160) (-44 688 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19181" - "plane" "(-32 688 138) (-44 688 137) (-44 672 137)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.996546 0 -0.0830455 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19180" - "plane" "(-32 688 160) (-32 688 138) (-32 672 138)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19179" - "plane" "(-44 672 160) (-44 672 137) (-44 688 137)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "200 200 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" } - solid +} +entity +{ + "id" "126590" + "classname" "vgui_movie_display" + "angles" "0 60 0" + "forcedslave" "1" + "groupname" "departure_signs" + "height" "128" + "looping" "0" + "moviefilename" "media/" + "stretch" "1" + "targetname" "@departure_sign_14" + "width" "64" + "origin" "-92 -223.2 32" + editor { - "id" "94810" - side - { - "id" "19190" - "plane" "(-56 672 160) (-44 672 160) (-44 672 137)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 0 -1 128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19189" - "plane" "(-56 688 133) (-44 688 137) (-44 688 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19188" - "plane" "(-44 672 160) (-56 672 160) (-56 688 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19187" - "plane" "(-44 688 137) (-56 688 133) (-56 672 133)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.948683 0 -0.316228 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19186" - "plane" "(-44 688 160) (-44 688 137) (-44 672 137)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19185" - "plane" "(-56 672 160) (-56 672 133) (-56 688 133)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "200 200 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "126592" + "classname" "vgui_movie_display" + "angles" "0 210 0" + "forcedslave" "1" + "groupname" "departure_signs" + "height" "128" + "looping" "0" + "moviefilename" "media/" + "stretch" "1" + "targetname" "@departure_sign_4" + "width" "64" + "origin" "191.3 147.3 32" + editor + { + "color" "200 200 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" } - solid +} +entity +{ + "id" "126594" + "classname" "vgui_movie_display" + "angles" "0 30 0" + "forcedslave" "1" + "groupname" "departure_signs" + "height" "128" + "looping" "0" + "moviefilename" "media/" + "stretch" "1" + "targetname" "@departure_sign_16" + "width" "64" + "origin" "-191.3 -147.3 32" + editor { - "id" "94811" - side - { - "id" "19196" - "plane" "(-96 672 160) (-66 672 160) (-66 672 128)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 0 -1 128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19195" - "plane" "(-73 688 122) (-66 688 128) (-66 688 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19194" - "plane" "(-66 672 160) (-96 672 160) (-96 688 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19193" - "plane" "(-66 688 160) (-66 688 128) (-66 672 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19192" - "plane" "(-66 688 128) (-73 688 122) (-73 672 122)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.759256 0 -0.650791 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19191" - "plane" "(-96 672 160) (-73 672 122) (-73 688 122)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0.517803 0 -0.8555 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "200 200 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" } - solid +} +entity +{ + "id" "126596" + "classname" "vgui_movie_display" + "angles" "0 180 0" + "forcedslave" "1" + "groupname" "departure_signs" + "height" "128" + "looping" "0" + "moviefilename" "media/" + "stretch" "1" + "targetname" "@departure_sign_6" + "width" "64" + "origin" "239.3 31.9004 32" + editor { - "id" "94812" - side - { - "id" "19202" - "plane" "(-66 672 160) (-56 672 160) (-56 672 133)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 0 -1 128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19201" - "plane" "(-66 688 128) (-56 688 133) (-56 688 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19200" - "plane" "(-56 672 160) (-66 672 160) (-66 688 160)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19199" - "plane" "(-56 688 160) (-56 688 133) (-56 672 133)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19198" - "plane" "(-56 688 133) (-66 688 128) (-66 672 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-0.894427 0 -0.447214 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19197" - "plane" "(-66 672 160) (-66 672 128) (-66 688 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "200 200 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" } - solid +} +entity +{ + "id" "126598" + "classname" "vgui_movie_display" + "angles" "0 0 0" + "forcedslave" "1" + "groupname" "departure_signs" + "height" "128" + "looping" "0" + "moviefilename" "media/" + "stretch" "1" + "targetname" "@departure_sign_18" + "width" "64" + "origin" "-239.3 -31.9004 32" + editor { - "id" "94813" - side - { - "id" "19208" - "plane" "(-73 672 122) (-83 672 111) (-96 672 111)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 0 -1 128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19207" - "plane" "(-96 688 160) (-96 688 111) (-83 688 111)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19206" - "plane" "(-96 672 160) (-96 672 111) (-96 688 111)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19205" - "plane" "(-83 688 111) (-96 688 111) (-96 672 111)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19204" - "plane" "(-73 688 122) (-83 688 111) (-83 672 111)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-0.672673 0 -0.73994 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19203" - "plane" "(-96 688 160) (-73 688 122) (-73 672 122)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0.517803 0 -0.8555 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "200 200 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "126600" + "classname" "vgui_movie_display" + "angles" "0 150 0" + "forcedslave" "1" + "groupname" "departure_signs" + "height" "128" + "looping" "0" + "moviefilename" "media/" + "stretch" "1" + "targetname" "@departure_sign_8" + "width" "64" + "origin" "223.2 -92 32" + editor + { + "color" "200 200 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" } - solid +} +entity +{ + "id" "126602" + "classname" "vgui_movie_display" + "angles" "0 330 0" + "forcedslave" "1" + "groupname" "departure_signs" + "height" "128" + "looping" "0" + "moviefilename" "media/" + "stretch" "1" + "targetname" "@departure_sign_20" + "width" "64" + "origin" "-223.2 92 32" + editor { - "id" "94814" - side - { - "id" "19214" - "plane" "(-83 672 111) (-89 672 100) (-96 672 100)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 0 -1 128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19213" - "plane" "(-96 688 111) (-96 688 100) (-89 688 100)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19212" - "plane" "(-96 672 111) (-96 672 100) (-96 688 100)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19211" - "plane" "(-89 688 100) (-96 688 100) (-96 672 100)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19210" - "plane" "(-83 688 111) (-89 688 100) (-89 672 100)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-0.478852 0 -0.877896 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19209" - "plane" "(-83 672 111) (-96 672 111) (-96 688 111)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "200 200 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" } - solid +} +entity +{ + "id" "126604" + "classname" "vgui_movie_display" + "angles" "0 120 0" + "forcedslave" "1" + "groupname" "departure_signs" + "height" "128" + "looping" "0" + "moviefilename" "media/" + "stretch" "1" + "targetname" "@departure_sign_10" + "width" "64" + "origin" "147.3 -191.3 32" + editor { - "id" "94815" - side - { - "id" "19220" - "plane" "(32 672 54) (32 672 43) (19 672 43)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 0 -1 128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19219" - "plane" "(32 688 43) (32 688 54) (25 688 54)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19218" - "plane" "(32 688 54) (32 688 43) (32 672 43)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19217" - "plane" "(32 672 54) (25 672 54) (25 688 54)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19216" - "plane" "(25 672 54) (19 672 43) (19 688 43)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-0.478852 0 -0.877896 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19215" - "plane" "(32 688 43) (19 688 43) (19 672 43)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "200 200 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" } - solid +} +entity +{ + "id" "126606" + "classname" "vgui_movie_display" + "angles" "0 300 0" + "forcedslave" "1" + "groupname" "departure_signs" + "height" "128" + "looping" "0" + "moviefilename" "media/" + "stretch" "1" + "targetname" "@departure_sign_22" + "width" "64" + "origin" "-147.3 191.3 32" + editor { - "id" "94816" - side - { - "id" "19226" - "plane" "(32 672 43) (32 672 32) (9 672 32)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 0 -1 128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19225" - "plane" "(32 688 32) (32 688 43) (19 688 43)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19224" - "plane" "(32 688 43) (32 688 32) (32 672 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19223" - "plane" "(32 672 43) (19 672 43) (19 688 43)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19222" - "plane" "(19 672 43) (9 672 32) (9 688 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-0.672672 0 -0.739941 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19221" - "plane" "(32 688 32) (9 688 32) (9 672 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "200 200 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "126608" + "classname" "vgui_movie_display" + "angles" "0 105 0" + "forcedslave" "1" + "groupname" "departure_signs" + "height" "128" + "looping" "0" + "moviefilename" "media/" + "stretch" "1" + "targetname" "@departure_sign_11" + "width" "64" + "origin" "92 -223.2 32" + editor + { + "color" "200 200 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "126610" + "classname" "vgui_movie_display" + "angles" "0 315 0" + "forcedslave" "1" + "groupname" "departure_signs" + "height" "128" + "looping" "0" + "moviefilename" "media/" + "stretch" "1" + "targetname" "@departure_sign_21" + "width" "64" + "origin" "-191 147 32" + editor + { + "color" "200 200 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" } - solid +} +entity +{ + "id" "126612" + "classname" "vgui_movie_display" + "angles" "0 135 0" + "forcedslave" "1" + "groupname" "departure_signs" + "height" "128" + "looping" "0" + "moviefilename" "media/" + "stretch" "1" + "targetname" "@departure_sign_9" + "width" "64" + "origin" "191.2 -147.2 32" + editor { - "id" "94817" - side - { - "id" "19232" - "plane" "(32 672 65) (32 672 54) (25 672 54)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 0 -1 128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19231" - "plane" "(32 688 54) (32 688 65) (28 688 65)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19230" - "plane" "(32 688 65) (32 688 54) (32 672 54)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19229" - "plane" "(28 672 65) (25 672 54) (25 688 54)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-0.263117 0 -0.964764 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19228" - "plane" "(32 672 65) (28 672 65) (28 688 65)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19227" - "plane" "(32 688 54) (25 688 54) (25 672 54)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "200 200 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" } - solid +} +entity +{ + "id" "126614" + "classname" "vgui_movie_display" + "angles" "0 345 0" + "forcedslave" "1" + "groupname" "departure_signs" + "height" "128" + "looping" "0" + "moviefilename" "media/" + "stretch" "1" + "targetname" "@departure_sign_19" + "width" "64" + "origin" "-239.3 31.9004 32" + editor { - "id" "94818" - side - { - "id" "19238" - "plane" "(32 672 77) (32 672 65) (28 672 65)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 0 -1 128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19237" - "plane" "(32 688 65) (32 688 77) (29 688 77)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19236" - "plane" "(32 688 77) (32 688 65) (32 672 65)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19235" - "plane" "(32 672 77) (29 672 77) (29 688 77)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19234" - "plane" "(29 672 77) (28 672 65) (28 688 65)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-0.0830455 0 -0.996546 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19233" - "plane" "(32 688 65) (28 688 65) (28 672 65)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "200 200 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" } - solid +} +entity +{ + "id" "126616" + "classname" "vgui_movie_display" + "angles" "0 165 0" + "forcedslave" "1" + "groupname" "departure_signs" + "height" "128" + "looping" "0" + "moviefilename" "media/" + "stretch" "1" + "targetname" "@departure_sign_7" + "width" "64" + "origin" "239.3 -31.9004 32" + editor { - "id" "94819" - side - { - "id" "19244" - "plane" "(-96 688 43) (-96 688 32) (-73 688 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19243" - "plane" "(-96 672 32) (-96 672 43) (-83 672 43)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 0 -1 128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19242" - "plane" "(-96 672 43) (-96 672 32) (-96 688 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19241" - "plane" "(-83 672 43) (-96 672 43) (-96 688 43)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19240" - "plane" "(-83 688 43) (-73 688 32) (-73 672 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0.672673 0 -0.73994 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19239" - "plane" "(-73 688 32) (-96 688 32) (-96 672 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "200 200 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "126618" + "classname" "vgui_movie_display" + "angles" "0 15 0" + "forcedslave" "1" + "groupname" "departure_signs" + "height" "128" + "looping" "0" + "moviefilename" "media/" + "stretch" "1" + "targetname" "@departure_sign_17" + "width" "64" + "origin" "-223.2 -92 32" + editor + { + "color" "200 200 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" } - solid +} +entity +{ + "id" "126620" + "classname" "vgui_movie_display" + "angles" "0 195 0" + "forcedslave" "1" + "groupname" "departure_signs" + "height" "128" + "looping" "0" + "moviefilename" "media/" + "stretch" "1" + "targetname" "@departure_sign_5" + "width" "64" + "origin" "223.2 92 32" + editor { - "id" "94820" - side - { - "id" "19250" - "plane" "(-96 688 54) (-96 688 43) (-83 688 43)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19249" - "plane" "(-96 672 43) (-96 672 54) (-89 672 54)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 0 -1 128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19248" - "plane" "(-96 672 54) (-96 672 43) (-96 688 43)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19247" - "plane" "(-89 672 54) (-96 672 54) (-96 688 54)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19246" - "plane" "(-89 688 54) (-83 688 43) (-83 672 43)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0.478852 0 -0.877896 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19245" - "plane" "(-83 688 43) (-96 688 43) (-96 672 43)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "200 200 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" } - solid +} +entity +{ + "id" "126622" + "classname" "vgui_movie_display" + "angles" "0 45 0" + "forcedslave" "1" + "groupname" "departure_signs" + "height" "128" + "looping" "0" + "moviefilename" "media/" + "stretch" "1" + "targetname" "@departure_sign_15" + "width" "64" + "origin" "-147.05 -191.3 32" + editor { - "id" "94821" - side - { - "id" "19256" - "plane" "(-96 688 77) (-96 688 65) (-92 688 65)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19255" - "plane" "(-96 672 65) (-96 672 77) (-93 672 77)" - "material" "METAL/BLACK_WALL_METAL_002B" - "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 0 -1 128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19254" - "plane" "(-96 672 77) (-96 672 65) (-96 688 65)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19253" - "plane" "(-93 672 77) (-96 672 77) (-96 688 77)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19252" - "plane" "(-93 688 77) (-92 688 65) (-92 672 65)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0.0830455 0 -0.996546 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "19251" - "plane" "(-92 688 65) (-96 688 65) (-96 672 65)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "200 200 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" } +} +entity +{ + "id" "126624" + "classname" "vgui_movie_display" + "angles" "0 225 0" + "forcedslave" "1" + "groupname" "departure_signs" + "height" "128" + "looping" "0" + "moviefilename" "media/" + "stretch" "1" + "targetname" "@departure_sign_3" + "width" "64" + "origin" "147 191 32" editor { - "color" "0 180 0" + "color" "200 200 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "126667" + "classname" "prop_static" + "angles" "90 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_bts/light_cage001a.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "2" + "solid" "6" + "origin" "-160 288 217.998" + editor + { + "color" "213 210 0" + "groupid" "136399" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "126671" + "classname" "prop_static" + "angles" "90 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_bts/light_cage001a.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "2" + "solid" "6" + "origin" "160 288 217.998" + editor + { + "color" "213 210 0" + "groupid" "136399" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[500 -7768]" + "logicalpos" "[0 0]" } } cameras @@ -21842,8 +18596,38 @@ cameras "activecamera" "0" camera { - "position" "[55.6441 174.699 78.4816]" - "look" "[76.3796 202.824 25.8893]" + "position" "[282.678 808.251 518.256]" + "look" "[254.938 763.856 482.945]" + } + camera + { + "position" "[10657.1 10548.5 90.0538]" + "look" "[10649 10589.6 42.8456]" + } + camera + { + "position" "[-451.559 -33.8373 118.97]" + "look" "[-513.888 -39.5103 110.619]" + } + camera + { + "position" "[10657.1 10548.5 90.0538]" + "look" "[10649 10589.6 42.8456]" + } + camera + { + "position" "[-451.559 -33.8373 118.97]" + "look" "[-513.888 -39.5103 110.619]" + } + camera + { + "position" "[10657.1 10548.5 90.0538]" + "look" "[10649 10589.6 42.8456]" + } + camera + { + "position" "[69.385 82.9113 124.919]" + "look" "[34.295 30.8874 131.958]" } camera { diff --git a/packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_exit/logic_dn.vmf b/packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_exit/logic_dn.vmf new file mode 100644 index 0000000000..2a9a6dd2bf --- /dev/null +++ b/packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_exit/logic_dn.vmf @@ -0,0 +1,3800 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "307" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ + visgroup + { + "name" "3 objects" + "visgroupid" "21" + "color" "194 91 136" + } + visgroup + { + "name" "tube" + "visgroupid" "25" + "color" "85 90 99" + } +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "16" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "307" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_day01_01" +} +entity +{ + "id" "23955" + "classname" "comp_relay" + "ctrl_type" "0" + "ctrl_value" "1" + "delay" "0.0" + "targetname" "player_arrived_rl" + connections + { + "OnTrigger" "light_elevator_fillTurnOn1.5-1" + "OnTrigger" "signs_onTrigger0-1" + "OnTrigger" "logic_source_elevator_door_openTrigger0-1" + } + "origin" "-16 128 -79" + editor + { + "color" "220 30 220" + "visgroupid" "21" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1500 15500]" + } +} +entity +{ + "id" "24110" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_underground/truss_64_256.mdl" + "renderamt" "255" + "rendercolor" "192 192 192" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "origin" "0 -96 -328" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 -4768]" + } +} +entity +{ + "id" "24114" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_underground/truss_64_256.mdl" + "renderamt" "255" + "rendercolor" "192 192 192" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "origin" "0 -96 -1343.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 -4768]" + } +} +entity +{ + "id" "24118" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/elevator/elevator_central_pipe.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "origin" "0 0 -900.839" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } +} +entity +{ + "id" "24122" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_underground/truss_64_256.mdl" + "renderamt" "255" + "rendercolor" "192 192 192" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "origin" "0 -96 -1088" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 -4768]" + } +} +entity +{ + "id" "24126" + "classname" "prop_dynamic" + "angles" "-90 270 0" + "fademindist" "-1" + "fadescale" "1" + "MaxAnimTime" "10" + "MinAnimTime" "5" + "model" "models/props_backstage/triple_wallpipe_corner_d.mdl" + "physdamagescale" "1.0" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "targetname" "exit_elevator_frame_model" + "origin" "130 -32 -256" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } +} +entity +{ + "id" "24131" + "classname" "prop_static" + "angles" "0 105 -180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/pipe_64_256.mdl" + "renderamt" "255" + "rendercolor" "136 136 136" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "-96 80 -1088" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "24135" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_underground/truss_64_256.mdl" + "renderamt" "255" + "rendercolor" "192 192 192" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "origin" "0 -96 -832" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 -4768]" + } +} +entity +{ + "id" "24139" + "classname" "prop_dynamic" + "angles" "0 0 -90" + "fademindist" "-1" + "fadescale" "1" + "MaxAnimTime" "10" + "MinAnimTime" "5" + "model" "models/props_backstage/triple_wallpipe_straight_c.mdl" + "physdamagescale" "1.0" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "targetname" "exit_elevator_frame_model" + "origin" "88 -32 -384" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } +} +entity +{ + "id" "24144" + "classname" "prop_dynamic" + "angles" "0 0 -90" + "fademindist" "-1" + "fadescale" "1" + "MaxAnimTime" "10" + "MinAnimTime" "5" + "model" "models/props_backstage/triple_wallpipe_straight_c.mdl" + "physdamagescale" "1.0" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "targetname" "exit_elevator_frame_model" + "origin" "88 -32 -512" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } +} +entity +{ + "id" "24149" + "classname" "prop_dynamic" + "angles" "0 0 -90" + "fademindist" "-1" + "fadescale" "1" + "MaxAnimTime" "10" + "MinAnimTime" "5" + "model" "models/props_backstage/triple_wallpipe_straight_b.mdl" + "physdamagescale" "1.0" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "targetname" "exit_elevator_frame_model" + "origin" "88 -32 -640" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } +} +entity +{ + "id" "24154" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_underground/truss_64_256.mdl" + "renderamt" "255" + "rendercolor" "192 192 192" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "origin" "0 -96 -576" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 -4768]" + } +} +entity +{ + "id" "24158" + "classname" "prop_static" + "angles" "0 195 180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/pipe_64_256.mdl" + "renderamt" "255" + "rendercolor" "136 136 136" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "-96 -96 -1344" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "24162" + "classname" "prop_static" + "angles" "0 195 -180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/pipe_64_256.mdl" + "renderamt" "255" + "rendercolor" "136 136 136" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "-96 -96 -1088" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "24166" + "classname" "prop_static" + "angles" "0 195 180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/pipe_64_256.mdl" + "renderamt" "255" + "rendercolor" "136 136 136" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "-96 -96 -832" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "24170" + "classname" "prop_static" + "angles" "0 195 -180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/pipe_64_256.mdl" + "renderamt" "255" + "rendercolor" "136 136 136" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "-96 -96 -576" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "24174" + "classname" "prop_static" + "angles" "0 195 180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/pipe_64_256.mdl" + "renderamt" "255" + "rendercolor" "136 136 136" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "-96 -96 -320" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "24178" + "classname" "prop_dynamic" + "angles" "0 0 -90" + "fademindist" "-1" + "fadescale" "1" + "MaxAnimTime" "10" + "MinAnimTime" "5" + "model" "models/props_backstage/triple_wallpipe_straight_a.mdl" + "physdamagescale" "1.0" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "targetname" "exit_elevator_frame_model" + "origin" "88 -32 -768" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } +} +entity +{ + "id" "24183" + "classname" "prop_static" + "angles" "0 105 -180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/pipe_64_256.mdl" + "renderamt" "255" + "rendercolor" "136 136 136" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "-96 80 -576" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "24187" + "classname" "prop_static" + "angles" "0 90 180" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/pipe_64_corner.mdl" + "renderamt" "255" + "rendercolor" "136 136 136" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "-96 79.75 -1216" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "24191" + "classname" "prop_static" + "angles" "90 0 0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/pipe_64_corner.mdl" + "renderamt" "255" + "rendercolor" "136 136 136" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "-48 80 -1264" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "24195" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/pipe_64_corner.mdl" + "renderamt" "255" + "rendercolor" "136 136 136" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "-96 80 -448" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "24199" + "classname" "prop_static" + "angles" "0 105 180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/pipe_64_256.mdl" + "renderamt" "255" + "rendercolor" "136 136 136" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "-96 80 -832" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "24203" + "classname" "prop_dynamic" + "angles" "0 0 -90" + "fademindist" "-1" + "fadescale" "1" + "MaxAnimTime" "10" + "MinAnimTime" "5" + "model" "models/props_backstage/triple_wallpipe_straight_a.mdl" + "physdamagescale" "1.0" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "targetname" "exit_elevator_frame_model" + "origin" "88 -32 -896" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } +} +entity +{ + "id" "24208" + "classname" "prop_dynamic" + "angles" "0 0 -90" + "fademindist" "-1" + "fadescale" "1" + "MaxAnimTime" "10" + "MinAnimTime" "5" + "model" "models/props_backstage/triple_wallpipe_straight_a.mdl" + "physdamagescale" "1.0" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "targetname" "exit_elevator_frame_model" + "origin" "88 -32 -1024" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } +} +entity +{ + "id" "24213" + "classname" "prop_dynamic" + "angles" "0 0 -90" + "fademindist" "-1" + "fadescale" "1" + "MaxAnimTime" "10" + "MinAnimTime" "5" + "model" "models/props_backstage/triple_wallpipe_straight_a.mdl" + "physdamagescale" "1.0" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "targetname" "exit_elevator_frame_model" + "origin" "88 -32 -1152" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } +} +entity +{ + "id" "24218" + "classname" "prop_dynamic" + "angles" "0 0 -90" + "fademindist" "-1" + "fadescale" "1" + "MaxAnimTime" "10" + "MinAnimTime" "5" + "model" "models/props_backstage/triple_wallpipe_straight_a.mdl" + "physdamagescale" "1.0" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "targetname" "exit_elevator_frame_model" + "origin" "88 -32 -1280" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } +} +entity +{ + "id" "24223" + "classname" "prop_dynamic" + "angles" "0 0 -90" + "fademindist" "-1" + "fadescale" "1" + "MaxAnimTime" "10" + "MinAnimTime" "5" + "model" "models/props_backstage/triple_wallpipe_straight_a.mdl" + "physdamagescale" "1.0" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "targetname" "exit_elevator_frame_model" + "origin" "88 -32 -1408" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } +} +entity +{ + "id" "24228" + "classname" "prop_static" + "angles" "0 0 180" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/elevator/elevator_central_pipe.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "origin" "0 0 -1079.84" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } +} +entity +{ + "id" "23889" + "classname" "func_brush" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "drawinfastreflection" "0" + "InputFilter" "0" + "invert_exclusion" "0" + "origin" "0 0 -264.75" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "10" + "shadowdepthnocache" "0" + "solidbsp" "1" + "Solidity" "0" + "spawnflags" "2" + "StartDisabled" "0" + "targetname" "floor_clip" + "vrad_brush_cast_shadows" "0" + solid + { + "id" "23890" + side + { + "id" "8250" + "plane" "(128 128 -113.499) (128 -128 -113.499) (-128 -128 -113.499)" + "material" "GLASS/GLASSWINDOW_FROSTED_002" + "uaxis" "[-1 0 0 -128] 0.25" + "vaxis" "[0 1 0 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8249" + "plane" "(128 -128 -416) (128 128 -416) (-128 128 -416)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 -63.9982] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8248" + "plane" "(128 128 -416) (128 -128 -416) (128 -128 -113.498)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 63.9982] 0.25" + "vaxis" "[0 0 -1 57.6456] 0.100767" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8247" + "plane" "(-128 -128 -416) (-128 128 -416) (-128 128 -113.498)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 63.9982] 0.25" + "vaxis" "[0 0 -1 57.6456] 0.100767" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8246" + "plane" "(128 -128 -416) (-128 -128 -416) (-128 -128 -113.498)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 57.6456] 0.100767" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8245" + "plane" "(-128 128 -416) (128 128 -416) (128 128 -113.498)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 57.6456] 0.100767" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "23827" + "classname" "func_movelinear" + "angles" "0 0 0" + "blockdamage" "0" + "disablereceiveshadows" "0" + "drawinfastreflection" "0" + "movedir" "90 0 0" + "movedistance" "784" + "origin" "0 0 -128" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "spawnflags" "0" + "speed" "128" + "startposition" "0" + "startsound" "World.ElevatorDepartLp" + "targetname" "elevator_door" + solid + { + "id" "23821" + side + { + "id" "8238" + "plane" "(64 64 -112) (64 -64 -112) (-64 -64 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8237" + "plane" "(64 -64 -144) (64 64 -144) (-64 64 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8236" + "plane" "(64 64 -144) (64 -64 -144) (64 -64 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -8.46082] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8235" + "plane" "(-64 -64 -144) (-64 64 -144) (-64 64 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -8.46082] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8234" + "plane" "(64 -64 -144) (-64 -64 -144) (-64 -64 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8.46082] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8233" + "plane" "(-64 64 -144) (64 64 -144) (64 64 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8.46082] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "23531" + "classname" "logic_coop_manager" + "angles" "0 0 0" + "DefaultPlayerStateA" "0" + "DefaultPlayerStateB" "0" + "targetname" "exit_man" + connections + { + "OnChangeToAllTrue" "elevator_doorclose_playerclipEnable01" + "OnChangeToAllTrue" "@gladosRunScriptCodeExitStarted()01" + "OnChangeToAllTrue" "@relay_pti_level_endTrigger41" + "OnChangeToAllTrue" "elevator_doorOpen11" + "OnChangeToAllTrue" "elevator_tube_openerSetAnimationclose01" + "OnChangeToAllTrue" "elevator_modelSetAnimationdoorclose01" + "OnChangeToAllTrue" "floor_clipKill01" + "OnChangeToAllTrue" "elevator_tube_openerSetDefaultAnimationclose_idle0.11" + "OnChangeToAllTrue" "@clientcommandCommandrestart_level4.51" + "OnChangeToAllTrue" "elevator_modelSetDefaultAnimationdoorclose_idle0.11" + } + "origin" "-16 16 -64" + editor + { + "color" "0 100 250" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "19378" + "classname" "env_soundscape" + "angles" "0 0 0" + "radius" "48" + "soundscape" "EntryExitElevator.Interior" + "origin" "-1.90735e-006 0 -72" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "60" + "classname" "trigger_multiple" + "origin" "0 0 -108" + "spawnflags" "4097" + "StartDisabled" "0" + "wait" "1" + connections + { + "OnStartTouch" "exit_manSetStateATrue0-1" + "OnEndTouch" "exit_manSetStateAFalse0-1" + } + solid + { + "id" "61" + side + { + "id" "338" + "plane" "(24 24 -72) (24 -24 -72) (-24 -24 -72)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337" + "plane" "(24 -24 -144) (24 24 -144) (-24 24 -144)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336" + "plane" "(24 24 -144) (24 -24 -144) (24 -24 -72)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335" + "plane" "(-24 -24 -144) (-24 24 -144) (-24 24 -72)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334" + "plane" "(24 -24 -144) (-24 -24 -144) (-24 -24 -72)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333" + "plane" "(-24 24 -144) (24 24 -144) (24 24 -72)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6500]" + } +} +entity +{ + "id" "16038" + "classname" "prop_dynamic" + "angles" "0 180 0" + "DefaultAnim" "close_idle" + "DisableBoneFollowers" "0" + "disablereceiveshadows" "0" + "disableshadows" "0" + "drawinfastreflection" "1" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "MaxAnimTime" "10" + "MinAnimTime" "5" + "model" "models/elevator/elevator_tube_opener.mdl" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "skin" "0" + "solid" "0" + "spawnflags" "256" + "StartDisabled" "0" + "targetname" "elevator_tube_opener" + "origin" "-1.90735e-006 -0.166702 -235" + editor + { + "color" "220 30 220" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "12512" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 247 217 150" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "_zero_percent_distance" "0" + "angles" "0 0 0" + "spawnflags" "0" + "style" "0" + "origin" "-1.90735e-006 0 -152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "19223" + "classname" "func_brush" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "InputFilter" "0" + "invert_exclusion" "0" + "origin" "0 -0.5 -42.5" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "solidbsp" "0" + "Solidity" "0" + "spawnflags" "2" + "StartDisabled" "1" + "targetname" "elevator_doorclose_playerclip" + "vrad_brush_cast_shadows" "0" + solid + { + "id" "19179" + side + { + "id" "7272" + "plane" "(-39.2188 -18.127 -144) (-36.348 -17.1738 -144) (-40.1738 -0.0234375 -144)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7271" + "plane" "(-44 -0.0234375 59) (-40.174 -0.0234375 59) (-36.3476 -17.1763 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7270" + "plane" "(-44 -0.0234985 -144) (-40.1738 -0.0234985 -144) (-40.174 -0.0234985 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7269" + "plane" "(-36.348 -17.1738 -144) (-39.2192 -18.1271 -144) (-39.2227 -18.1289 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7268" + "plane" "(-39.2188 -18.1289 -144) (-44 -0.0234375 -144) (-44 -0.0234375 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7267" + "plane" "(-40.1738 -0.0273438 -144) (-36.3485 -17.1753 -144) (-36.3477 -17.1758 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 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" "19180" + side + { + "id" "7278" + "plane" "(-27.7383 -33.3711 -144) (-24.872 -29.5641 -144) (-36.3556 -17.1714 -144)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7277" + "plane" "(-39.2188 -18.1289 59) (-36.3517 -17.1771 59) (-24.8704 -29.5672 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7276" + "plane" "(-39.2188 -18.127 -144) (-36.352 -17.1753 -144) (-36.3533 -17.1753 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7275" + "plane" "(-24.8706 -29.5655 -144) (-27.7398 -33.3769 -144) (-27.7383 -33.375 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7274" + "plane" "(-27.7383 -33.3789 -144) (-39.2188 -18.1289 -144) (-39.2227 -18.125 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7273" + "plane" "(-36.3477 -17.1797 -144) (-24.8689 -29.5671 -144) (-24.8711 -29.5664 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 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" "19181" + side + { + "id" "7284" + "plane" "(-9.56446 -41 -144) (-8.60918 -37.19 -144) (-24.866 -29.5688 -144)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7283" + "plane" "(-27.7383 -33.375 59) (-24.8732 -29.569 59) (-8.61209 -37.1921 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7282" + "plane" "(-27.7383 -33.375 -144) (-24.8711 -29.5664 -144) (-24.8752 -29.568 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7281" + "plane" "(-8.60867 -37.1902 -144) (-9.56459 -41 -144) (-9.56544 -41 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7280" + "plane" "(-9.56641 -41 -144) (-27.7383 -33.375 -144) (-27.7383 -33.375 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7279" + "plane" "(-24.8711 -29.5684 -144) (-8.60964 -37.1917 -144) (-8.60938 -37.1914 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 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" "19182" + side + { + "id" "7290" + "plane" "(9.56445 -41 -144) (8.60801 -37.1883 -144) (-8.60855 -37.1883 -144)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7289" + "plane" "(-9.56446 -41 59) (-8.60802 -37.1883 59) (8.60659 -37.1883 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7288" + "plane" "(-9.56544 -41 -144) (-8.6089 -37.1883 -144) (-8.60757 -37.1883 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7287" + "plane" "(8.60855 -37.1883 -144) (9.56505 -41 -144) (9.56445 -41 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7286" + "plane" "(9.56249 -41 -144) (-9.56641 -41 -144) (-9.56641 -41 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7285" + "plane" "(-8.60938 -37.1883 -144) (8.6078 -37.1883 -144) (8.60546 -37.1883 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 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" "19183" + side + { + "id" "7296" + "plane" "(27.7344 -33.375 -144) (24.8678 -29.5677 -144) (8.60706 -37.1906 -144)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7295" + "plane" "(9.56738 -41 59) (8.61088 -37.189 59) (24.8693 -29.5673 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7294" + "plane" "(9.56445 -41 -144) (8.60821 -37.1901 -144) (8.60886 -37.19 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7293" + "plane" "(24.8662 -29.5685 -144) (27.7348 -33.3785 -144) (27.7344 -33.3789 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7292" + "plane" "(27.7383 -33.377 -144) (9.56249 -41 -144) (9.56249 -41 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7291" + "plane" "(8.60937 -37.1895 -144) (24.868 -29.5676 -144) (24.8672 -29.5664 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 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" "19184" + side + { + "id" "7302" + "plane" "(39.2187 -18.1211 -144) (36.3536 -17.1702 -144) (24.868 -29.5659 -144)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7301" + "plane" "(27.7344 -33.3711 59) (24.8698 -29.5673 59) (36.3525 -17.1749 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7300" + "plane" "(27.7383 -33.3789 -144) (24.8671 -29.5668 -144) (24.8732 -29.5638 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7299" + "plane" "(36.3505 -17.1735 -144) (39.2177 -18.1251 -144) (39.2109 -18.1211 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7298" + "plane" "(39.2148 -18.125 -144) (27.7383 -33.3789 -144) (27.7383 -33.3672 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7297" + "plane" "(24.8711 -29.5664 -144) (36.3516 -17.1762 -144) (36.3516 -17.1758 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 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" "19185" + side + { + "id" "7308" + "plane" "(36.3479 -17.1751 -144) (39.2161 -18.1274 -144) (44 -0.97657 -144)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7307" + "plane" "(39.2187 -18.1289 59) (36.3477 -17.1758 59) (40.1748 -0.97657 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7306" + "plane" "(39.2187 -18.125 -144) (36.3486 -17.1721 -144) (36.3479 -17.1751 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7305" + "plane" "(40.1748 -0.976509 -144) (44 -0.976509 -144) (44 -0.976509 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7304" + "plane" "(44 -0.97657 -144) (39.2168 -18.125 -144) (39.2168 -18.125 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7303" + "plane" "(36.3486 -17.1758 -144) (40.1757 -0.976509 -144) (40.1758 -0.97657 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 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" "19186" + side + { + "id" "7314" + "plane" "(40.1738 -0.97657 -144) (44 -0.97657 -144) (39.2188 17.1328 -144)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7313" + "plane" "(44 -0.97657 59) (40.1732 -0.97657 59) (36.3464 16.1815 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7312" + "plane" "(44 -0.976509 -144) (40.1738 -0.976509 -144) (40.1732 -0.976509 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7311" + "plane" "(36.3475 16.1792 -144) (39.2188 17.1328 -144) (39.2188 17.1328 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7310" + "plane" "(39.2207 17.1289 -144) (44 -0.97657 -144) (44 -0.97657 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7309" + "plane" "(40.1738 -0.97657 -144) (36.3477 16.1786 -144) (36.3457 16.1797 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 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" "19187" + side + { + "id" "7320" + "plane" "(36.3438 16.1842 -144) (39.2122 17.1377 -144) (27.7422 32.375 -144)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7319" + "plane" "(39.2266 17.1328 59) (36.3522 16.1773 59) (24.8727 28.5647 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7318" + "plane" "(39.2148 17.1328 -144) (36.3479 16.1798 -144) (36.349 16.1807 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7317" + "plane" "(24.871 28.5644 -144) (27.74 32.3766 -144) (27.7383 32.3867 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7316" + "plane" "(27.7383 32.3789 -144) (39.2148 17.1328 -144) (39.2266 17.1328 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7315" + "plane" "(36.3516 16.1758 -144) (24.871 28.5643 -144) (24.8672 28.5703 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 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" "19188" + side + { + "id" "7326" + "plane" "(24.8717 28.5642 -144) (27.7423 32.3772 -144) (9.56543 40 -144)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7325" + "plane" "(27.7383 32.375 59) (24.8696 28.5645 59) (8.60518 36.1895 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7324" + "plane" "(27.7422 32.3789 -144) (24.8706 28.5647 -144) (24.8713 28.5637 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7323" + "plane" "(8.60968 36.188 -144) (9.56635 40 -144) (9.56445 40 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7322" + "plane" "(9.56641 40 -144) (27.7461 32.377 -144) (27.7344 32.373 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7321" + "plane" "(24.8711 28.5644 -144) (8.60928 36.1882 -144) (8.60938 36.1875 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 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" "19189" + side + { + "id" "7332" + "plane" "(8.60651 36.1883 -144) (9.56311 40 -144) (-9.56348 40 -144)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7331" + "plane" "(9.5625 40 59) (8.60586 36.1883 59) (-8.60553 36.1883 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7330" + "plane" "(9.56348 40 -144) (8.60694 36.1883 -144) (8.60749 36.1883 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7329" + "plane" "(-8.60749 36.1883 -144) (-9.56409 40 -144) (-9.56445 40 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7328" + "plane" "(-9.5625 40 -144) (9.57031 40 -144) (9.56641 40 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7327" + "plane" "(8.60938 36.1883 -144) (-8.6078 36.1883 -144) (-8.60938 36.1883 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 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" "19190" + side + { + "id" "7338" + "plane" "(-8.60922 36.1856 -144) (-9.56602 40 -144) (-27.7422 32.3789 -144)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7337" + "plane" "(-9.56152 40 59) (-8.60566 36.1894 59) (-24.8708 28.5645 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7336" + "plane" "(-9.56445 40 -144) (-8.60782 36.1863 -144) (-8.60882 36.1879 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7335" + "plane" "(-24.8674 28.564 -144) (-27.7381 32.3787 -144) (-27.7383 32.3789 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7334" + "plane" "(-27.7383 32.3789 -144) (-9.56641 40 -144) (-9.5625 40 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7333" + "plane" "(-8.60938 36.1855 -144) (-24.8674 28.564 -144) (-24.8711 28.5645 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 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" "19191" + side + { + "id" "7344" + "plane" "(-39.2188 17.1289 -144) (-36.3478 16.1757 -144) (-24.873 28.5601 -144)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7343" + "plane" "(-27.7422 32.3789 59) (-24.8698 28.5635 59) (-36.3481 16.1754 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7342" + "plane" "(-27.7422 32.375 -144) (-24.8714 28.5619 -144) (-24.8708 28.5625 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7341" + "plane" "(-36.3444 16.1794 -144) (-39.2182 17.1336 -144) (-39.2188 17.1328 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7340" + "plane" "(-39.2148 17.1328 -144) (-27.7383 32.375 -144) (-27.7383 32.375 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7339" + "plane" "(-24.8711 28.5625 -144) (-36.3446 16.1794 -144) (-36.3438 16.1797 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 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" "19192" + side + { + "id" "7350" + "plane" "(-44 -0.0234375 -144) (-40.1749 -0.0234375 -144) (-36.3484 16.1765 -144)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7349" + "plane" "(-39.2148 17.1348 59) (-36.3461 16.1822 59) (-40.1738 -0.0234375 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7348" + "plane" "(-39.2148 17.127 -144) (-36.3487 16.1753 -144) (-36.3466 16.1798 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7347" + "plane" "(-40.1749 -0.0234985 -144) (-44 -0.0234985 -144) (-44 -0.0234985 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7346" + "plane" "(-44 -0.0234375 -144) (-39.2178 17.125 -144) (-39.2158 17.125 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "7345" + "plane" "(-36.3496 16.1758 -144) (-40.1759 -0.0234985 -144) (-40.1748 -0.0234375 59)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 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" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "19131" + "classname" "func_brush" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "InputFilter" "0" + "invert_exclusion" "0" + "origin" "0 0 -15" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "solidbsp" "0" + "Solidity" "0" + "spawnflags" "2" + "StartDisabled" "0" + "targetname" "elevator_playerclip" + "vrad_brush_cast_shadows" "0" + solid + { + "id" "24079" + side + { + "id" "8284" + "plane" "(-32 64 -174) (32 64 -174) (32 64 144)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -50] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8283" + "plane" "(32 -64 -174) (-32 -64 -174) (-32 -64 144)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -50] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8282" + "plane" "(64 32 -174) (64 -32 -174) (64 -32 144)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 0 1 50] 0.25" + "vaxis" "[0 -1 0 50] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8281" + "plane" "(-64 -32 -174) (-64 32 -174) (-64 32 144)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 0 1 50] 0.25" + "vaxis" "[0 -1 0 50] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8280" + "plane" "(32 -64 144) (-32 -64 144) (-64 -32 144)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 50] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8279" + "plane" "(32 64 -174) (-32 64 -174) (-64 32 -174)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 50] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8278" + "plane" "(-32 -64 144) (-32 -64 -174) (-64 -32 -174)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8277" + "plane" "(-64 32 144) (-64 32 -174) (-32 64 -174)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8276" + "plane" "(32 64 144) (32 64 -174) (64 32 -174)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8275" + "plane" "(64 -32 144) (64 -32 -174) (32 -64 -174)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 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" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "comments" "Prevents entry until elevator arrives" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "23487" + "classname" "trigger_multiple" + "origin" "0 -0.5 -42.5" + "spawnflags" "4097" + "StartDisabled" "0" + "wait" "1" + connections + { + "OnStartTouch" "exit_manSetStateBFalse0-1" + "OnEndTouch" "exit_manSetStateBTrue0-1" + } + solid + { + "id" "23298" + side + { + "id" "8124" + "plane" "(-39.2188 -18.127 -144) (-36.348 -17.1738 -144) (-40.1738 -0.0234375 -144)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8123" + "plane" "(-44 -0.0234375 59) (-40.174 -0.0234375 59) (-36.3476 -17.1763 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8122" + "plane" "(-44 -0.0234985 -144) (-40.1738 -0.0234985 -144) (-40.174 -0.0234985 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8121" + "plane" "(-36.348 -17.1738 -144) (-39.2192 -18.1271 -144) (-39.2227 -18.1289 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8120" + "plane" "(-39.2188 -18.1289 -144) (-44 -0.0234375 -144) (-44 -0.0234375 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8119" + "plane" "(-40.1738 -0.0273438 -144) (-36.3485 -17.1753 -144) (-36.3477 -17.1758 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 0] 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" "23299" + side + { + "id" "8130" + "plane" "(-27.7383 -33.3711 -144) (-24.872 -29.5641 -144) (-36.3556 -17.1714 -144)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8129" + "plane" "(-39.2188 -18.1289 59) (-36.3517 -17.1771 59) (-24.8704 -29.5672 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8128" + "plane" "(-39.2188 -18.127 -144) (-36.352 -17.1753 -144) (-36.3533 -17.1753 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8127" + "plane" "(-24.8706 -29.5655 -144) (-27.7398 -33.3769 -144) (-27.7383 -33.375 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8126" + "plane" "(-27.7383 -33.3789 -144) (-39.2188 -18.1289 -144) (-39.2227 -18.125 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8125" + "plane" "(-36.3477 -17.1797 -144) (-24.8689 -29.5671 -144) (-24.8711 -29.5664 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 0] 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" "23300" + side + { + "id" "8136" + "plane" "(-9.56446 -41 -144) (-8.60918 -37.19 -144) (-24.866 -29.5688 -144)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8135" + "plane" "(-27.7383 -33.375 59) (-24.8732 -29.569 59) (-8.61209 -37.1921 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8134" + "plane" "(-27.7383 -33.375 -144) (-24.8711 -29.5664 -144) (-24.8752 -29.568 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8133" + "plane" "(-8.60867 -37.1902 -144) (-9.56459 -41 -144) (-9.56544 -41 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8132" + "plane" "(-9.56641 -41 -144) (-27.7383 -33.375 -144) (-27.7383 -33.375 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8131" + "plane" "(-24.8711 -29.5684 -144) (-8.60964 -37.1917 -144) (-8.60938 -37.1914 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 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" "23301" + side + { + "id" "8142" + "plane" "(9.56445 -41 -144) (8.60801 -37.1883 -144) (-8.60855 -37.1883 -144)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8141" + "plane" "(-9.56446 -41 59) (-8.60802 -37.1883 59) (8.60659 -37.1883 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8140" + "plane" "(-9.56544 -41 -144) (-8.6089 -37.1883 -144) (-8.60757 -37.1883 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8139" + "plane" "(8.60855 -37.1883 -144) (9.56505 -41 -144) (9.56445 -41 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8138" + "plane" "(9.56249 -41 -144) (-9.56641 -41 -144) (-9.56641 -41 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8137" + "plane" "(-8.60938 -37.1883 -144) (8.6078 -37.1883 -144) (8.60546 -37.1883 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 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" "23302" + side + { + "id" "8148" + "plane" "(27.7344 -33.375 -144) (24.8678 -29.5677 -144) (8.60706 -37.1906 -144)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8147" + "plane" "(9.56738 -41 59) (8.61088 -37.189 59) (24.8693 -29.5673 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8146" + "plane" "(9.56445 -41 -144) (8.60821 -37.1901 -144) (8.60886 -37.19 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8145" + "plane" "(24.8662 -29.5685 -144) (27.7348 -33.3785 -144) (27.7344 -33.3789 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8144" + "plane" "(27.7383 -33.377 -144) (9.56249 -41 -144) (9.56249 -41 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8143" + "plane" "(8.60937 -37.1895 -144) (24.868 -29.5676 -144) (24.8672 -29.5664 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 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" "23303" + side + { + "id" "8154" + "plane" "(39.2187 -18.1211 -144) (36.3536 -17.1702 -144) (24.868 -29.5659 -144)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8153" + "plane" "(27.7344 -33.3711 59) (24.8698 -29.5673 59) (36.3525 -17.1749 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8152" + "plane" "(27.7383 -33.3789 -144) (24.8671 -29.5668 -144) (24.8732 -29.5638 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8151" + "plane" "(36.3505 -17.1735 -144) (39.2177 -18.1251 -144) (39.2109 -18.1211 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8150" + "plane" "(39.2148 -18.125 -144) (27.7383 -33.3789 -144) (27.7383 -33.3672 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8149" + "plane" "(24.8711 -29.5664 -144) (36.3516 -17.1762 -144) (36.3516 -17.1758 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 0] 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" "23304" + side + { + "id" "8160" + "plane" "(36.3479 -17.1751 -144) (39.2161 -18.1274 -144) (44 -0.97657 -144)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8159" + "plane" "(39.2187 -18.1289 59) (36.3477 -17.1758 59) (40.1748 -0.97657 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8158" + "plane" "(39.2187 -18.125 -144) (36.3486 -17.1721 -144) (36.3479 -17.1751 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8157" + "plane" "(40.1748 -0.976509 -144) (44 -0.976509 -144) (44 -0.976509 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8156" + "plane" "(44 -0.97657 -144) (39.2168 -18.125 -144) (39.2168 -18.125 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8155" + "plane" "(36.3486 -17.1758 -144) (40.1757 -0.976509 -144) (40.1758 -0.97657 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 0] 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" "23305" + side + { + "id" "8166" + "plane" "(40.1738 -0.97657 -144) (44 -0.97657 -144) (39.2188 17.1328 -144)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8165" + "plane" "(44 -0.97657 59) (40.1732 -0.97657 59) (36.3464 16.1815 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8164" + "plane" "(44 -0.976509 -144) (40.1738 -0.976509 -144) (40.1732 -0.976509 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8163" + "plane" "(36.3475 16.1792 -144) (39.2188 17.1328 -144) (39.2188 17.1328 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8162" + "plane" "(39.2207 17.1289 -144) (44 -0.97657 -144) (44 -0.97657 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8161" + "plane" "(40.1738 -0.97657 -144) (36.3477 16.1786 -144) (36.3457 16.1797 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 0] 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" "23306" + side + { + "id" "8172" + "plane" "(36.3438 16.1842 -144) (39.2122 17.1377 -144) (27.7422 32.375 -144)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8171" + "plane" "(39.2266 17.1328 59) (36.3522 16.1773 59) (24.8727 28.5647 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8170" + "plane" "(39.2148 17.1328 -144) (36.3479 16.1798 -144) (36.349 16.1807 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8169" + "plane" "(24.871 28.5644 -144) (27.74 32.3766 -144) (27.7383 32.3867 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8168" + "plane" "(27.7383 32.3789 -144) (39.2148 17.1328 -144) (39.2266 17.1328 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8167" + "plane" "(36.3516 16.1758 -144) (24.871 28.5643 -144) (24.8672 28.5703 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 0] 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" "23307" + side + { + "id" "8178" + "plane" "(24.8717 28.5642 -144) (27.7423 32.3772 -144) (9.56543 40 -144)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8177" + "plane" "(27.7383 32.375 59) (24.8696 28.5645 59) (8.60518 36.1895 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8176" + "plane" "(27.7422 32.3789 -144) (24.8706 28.5647 -144) (24.8713 28.5637 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8175" + "plane" "(8.60968 36.188 -144) (9.56635 40 -144) (9.56445 40 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8174" + "plane" "(9.56641 40 -144) (27.7461 32.377 -144) (27.7344 32.373 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8173" + "plane" "(24.8711 28.5644 -144) (8.60928 36.1882 -144) (8.60938 36.1875 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 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" "23308" + side + { + "id" "8184" + "plane" "(8.60651 36.1883 -144) (9.56311 40 -144) (-9.56348 40 -144)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8183" + "plane" "(9.5625 40 59) (8.60586 36.1883 59) (-8.60553 36.1883 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8182" + "plane" "(9.56348 40 -144) (8.60694 36.1883 -144) (8.60749 36.1883 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8181" + "plane" "(-8.60749 36.1883 -144) (-9.56409 40 -144) (-9.56445 40 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8180" + "plane" "(-9.5625 40 -144) (9.57031 40 -144) (9.56641 40 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8179" + "plane" "(8.60938 36.1883 -144) (-8.6078 36.1883 -144) (-8.60938 36.1883 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 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" "23309" + side + { + "id" "8190" + "plane" "(-8.60922 36.1856 -144) (-9.56602 40 -144) (-27.7422 32.3789 -144)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8189" + "plane" "(-9.56152 40 59) (-8.60566 36.1894 59) (-24.8708 28.5645 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8188" + "plane" "(-9.56445 40 -144) (-8.60782 36.1863 -144) (-8.60882 36.1879 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8187" + "plane" "(-24.8674 28.564 -144) (-27.7381 32.3787 -144) (-27.7383 32.3789 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8186" + "plane" "(-27.7383 32.3789 -144) (-9.56641 40 -144) (-9.5625 40 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8185" + "plane" "(-8.60938 36.1855 -144) (-24.8674 28.564 -144) (-24.8711 28.5645 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 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" "23310" + side + { + "id" "8196" + "plane" "(-39.2188 17.1289 -144) (-36.3478 16.1757 -144) (-24.873 28.5601 -144)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8195" + "plane" "(-27.7422 32.3789 59) (-24.8698 28.5635 59) (-36.3481 16.1754 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8194" + "plane" "(-27.7422 32.375 -144) (-24.8714 28.5619 -144) (-24.8708 28.5625 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8193" + "plane" "(-36.3444 16.1794 -144) (-39.2182 17.1336 -144) (-39.2188 17.1328 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8192" + "plane" "(-39.2148 17.1328 -144) (-27.7383 32.375 -144) (-27.7383 32.375 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8191" + "plane" "(-24.8711 28.5625 -144) (-36.3446 16.1794 -144) (-36.3438 16.1797 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 0] 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" "23311" + side + { + "id" "8202" + "plane" "(-44 -0.0234375 -144) (-40.1749 -0.0234375 -144) (-36.3484 16.1765 -144)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8201" + "plane" "(-39.2148 17.1348 59) (-36.3461 16.1822 59) (-40.1738 -0.0234375 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8200" + "plane" "(-39.2148 17.127 -144) (-36.3487 16.1753 -144) (-36.3466 16.1798 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8199" + "plane" "(-40.1749 -0.0234985 -144) (-44 -0.0234985 -144) (-44 -0.0234985 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8198" + "plane" "(-44 -0.0234375 -144) (-39.2178 17.125 -144) (-39.2158 17.125 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8197" + "plane" "(-36.3496 16.1758 -144) (-40.1759 -0.0234985 -144) (-40.1748 -0.0234375 59)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 0] 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" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "16046" + "classname" "prop_dynamic" + "angles" "0 180 0" + "DefaultAnim" "arrivefrombelow_idle" + "DisableBoneFollowers" "0" + "disablereceiveshadows" "0" + "disableshadows" "1" + "drawinfastreflection" "1" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "MaxAnimTime" "10" + "MinAnimTime" "5" + "model" "models/elevator/elevator_b.mdl" + "parentname" "elevator_door" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "StartDisabled" "0" + "targetname" "elevator_model" + "origin" "-1.90735e-006 -0.166702 -223" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "16055" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "1" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/elevator/elevator_central_pipe.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "-1.90735e-006 -0.166702 -224" + editor + { + "color" "255 255 0" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "16050" + "classname" "light" + "_constant_attn" "1500" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 247 217 75" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "_zero_percent_distance" "0" + "angles" "0 0 0" + "spawnflags" "0" + "style" "0" + "origin" "-1.90735e-006 -0.166702 240" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +cameras +{ + "activecamera" "3" + camera + { + "position" "[-57.1215 -214.404 126.529]" + "look" "[-7.54618 -221.724 97.1277]" + } + camera + { + "position" "[-49.0494 -180.5 174.874]" + "look" "[-46.5756 -148.338 171.028]" + } + camera + { + "position" "[20.3909 -210.684 106]" + "look" "[-36.6345 -123.19 106]" + } + camera + { + "position" "[-237.463 228.944 126.854]" + "look" "[-113.368 91.1228 3.63704]" + } + camera + { + "position" "[-57.1215 -214.404 126.529]" + "look" "[-7.54618 -221.724 97.1277]" + } + camera + { + "position" "[-49.0494 -180.5 174.874]" + "look" "[-46.5756 -148.338 171.028]" + } + camera + { + "position" "[20.3909 -210.684 106]" + "look" "[-36.6345 -123.19 106]" + } + camera + { + "position" "[860.598 -328.25 159.711]" + "look" "[674.172 -265.843 264.242]" + } + camera + { + "position" "[-57.1215 -214.404 126.529]" + "look" "[-7.54618 -221.724 97.1277]" + } + camera + { + "position" "[-49.0494 -180.5 174.874]" + "look" "[-46.5756 -148.338 171.028]" + } + camera + { + "position" "[20.3909 -210.684 106]" + "look" "[-36.6345 -123.19 106]" + } + camera + { + "position" "[-4.76545 -22.8675 77.1085]" + "look" "[8.65286 63.8141 -127.544]" + } + camera + { + "position" "[-57.1215 -214.404 126.529]" + "look" "[-7.54618 -221.724 97.1277]" + } + camera + { + "position" "[-49.0494 -180.5 174.874]" + "look" "[-46.5756 -148.338 171.028]" + } + camera + { + "position" "[20.3909 -210.684 106]" + "look" "[-36.6345 -123.19 106]" + } + camera + { + "position" "[860.598 -328.25 159.711]" + "look" "[674.172 -265.843 264.242]" + } +} +cordons +{ + "active" "0" +} diff --git a/packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_departure_logic.vmf b/packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_exit/logic_up.vmf similarity index 51% rename from packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_departure_logic.vmf rename to packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_exit/logic_up.vmf index fc4894b125..3ded4192fa 100644 --- a/packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_departure_logic.vmf +++ b/packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_exit/logic_up.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "7378" - "mapversion" "285" + "editorbuild" "9672" + "mapversion" "300" "formatversion" "100" "prefab" "0" } @@ -16,198 +16,957 @@ visgroups } visgroup { - "name" "door" - "visgroupid" "20" - "color" "254 183 164" + "name" "tube" + "visgroupid" "25" + "color" "85 90 99" + } +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "16" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "300" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_day01_01" +} +entity +{ + "id" "23955" + "classname" "comp_relay" + "ctrl_type" "0" + "ctrl_value" "1" + "delay" "0.0" + "targetname" "player_arrived_rl" + connections + { + "OnTrigger" "light_elevator_fillTurnOn1.5-1" + "OnTrigger" "signs_onTrigger0-1" + "OnTrigger" "logic_source_elevator_door_openTrigger0-1" + } + "origin" "-16 128 -79" + editor + { + "color" "220 30 220" + "visgroupid" "21" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1500 15500]" + } +} +entity +{ + "id" "24093" + "classname" "prop_static" + "angles" "0 180 -180" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_underground/truss_64_256.mdl" + "renderamt" "255" + "rendercolor" "192 192 192" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "origin" "0 -96 455.788" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 -4768]" + } +} +entity +{ + "id" "24097" + "classname" "prop_static" + "angles" "0 180 -180" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_underground/truss_64_256.mdl" + "renderamt" "255" + "rendercolor" "192 192 192" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "origin" "0 -96 1471.54" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 -4768]" + } +} +entity +{ + "id" "24101" + "classname" "prop_static" + "angles" "0 0 -180" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/elevator/elevator_central_pipe.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "0 0 952" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } +} +entity +{ + "id" "24105" + "classname" "prop_static" + "angles" "0 180 -180" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_underground/truss_64_256.mdl" + "renderamt" "255" + "rendercolor" "192 192 192" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "origin" "0 -96 1215.79" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 -4768]" + } +} +entity +{ + "id" "24109" + "classname" "prop_static" + "angles" "90 90 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props_backstage/triple_wallpipe_corner_d.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "-130 -32 383.788" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } +} +entity +{ + "id" "24113" + "classname" "prop_static" + "angles" "0 75 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/pipe_64_256.mdl" + "renderamt" "255" + "rendercolor" "136 136 136" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "96 80 1215.79" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "24117" + "classname" "prop_static" + "angles" "0 180 -180" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_underground/truss_64_256.mdl" + "renderamt" "255" + "rendercolor" "192 192 192" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "origin" "0 -96 959.79" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 -4768]" + } +} +entity +{ + "id" "24121" + "classname" "prop_static" + "angles" "0 180 90" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props_backstage/triple_wallpipe_straight_c.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "-88 -32 511.788" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } +} +entity +{ + "id" "24125" + "classname" "prop_static" + "angles" "0 180 90" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props_backstage/triple_wallpipe_straight_c.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "-88 -32 639.788" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } +} +entity +{ + "id" "24129" + "classname" "prop_static" + "angles" "0 180 90" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props_backstage/triple_wallpipe_straight_b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "-88 -32 767.788" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } +} +entity +{ + "id" "24133" + "classname" "prop_static" + "angles" "0 180 -180" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_underground/truss_64_256.mdl" + "renderamt" "255" + "rendercolor" "192 192 192" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "origin" "0 -96 703.788" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 -4768]" + } +} +entity +{ + "id" "24137" + "classname" "prop_static" + "angles" "0 345 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/pipe_64_256.mdl" + "renderamt" "255" + "rendercolor" "136 136 136" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "96 -96 1471.79" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "24141" + "classname" "prop_static" + "angles" "0 345 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/pipe_64_256.mdl" + "renderamt" "255" + "rendercolor" "136 136 136" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "96 -96 1215.79" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "24145" + "classname" "prop_static" + "angles" "0 345 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/pipe_64_256.mdl" + "renderamt" "255" + "rendercolor" "136 136 136" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "96 -96 959.79" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "24149" + "classname" "prop_static" + "angles" "0 345 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/pipe_64_256.mdl" + "renderamt" "255" + "rendercolor" "136 136 136" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "96 -96 703.788" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "24153" + "classname" "prop_static" + "angles" "0 345 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/pipe_64_256.mdl" + "renderamt" "255" + "rendercolor" "136 136 136" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "96 -96 447.788" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "24157" + "classname" "prop_static" + "angles" "0 180 90" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props_backstage/triple_wallpipe_straight_a.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "-88 -32 895.79" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } +} +entity +{ + "id" "24161" + "classname" "prop_static" + "angles" "0 75 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/pipe_64_256.mdl" + "renderamt" "255" + "rendercolor" "136 136 136" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "96 80 703.788" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "24165" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/pipe_64_corner.mdl" + "renderamt" "255" + "rendercolor" "136 136 136" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "96 79.7 1343.79" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "24169" + "classname" "prop_static" + "angles" "-90 0 0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/pipe_64_corner.mdl" + "renderamt" "255" + "rendercolor" "136 136 136" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "48 80 1391.79" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "24173" + "classname" "prop_static" + "angles" "0 90 180" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/pipe_64_corner.mdl" + "renderamt" "255" + "rendercolor" "136 136 136" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "96 80 575.788" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" } - visgroup +} +entity +{ + "id" "24177" + "classname" "prop_static" + "angles" "0 75 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/pipe_64_256.mdl" + "renderamt" "255" + "rendercolor" "136 136 136" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "96 80 959.79" + editor { - "name" "tube" - "visgroupid" "25" - "color" "85 90 99" + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" } } -viewsettings +entity { - "bSnapToGrid" "1" - "bShowGrid" "1" - "bShowLogicalGrid" "0" - "nGridSpacing" "16" - "bShow3DGrid" "0" + "id" "24181" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/elevator/elevator_central_pipe.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "0 0 1131" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } } -world +entity { - "id" "1" - "mapversion" "285" - "classname" "worldspawn" - "detailmaterial" "detail/detailsprites" - "detailvbsp" "detail.vbsp" - "maxblobcount" "250" - "maxpropscreenwidth" "-1" - "skyname" "sky_day01_01" - solid + "id" "24185" + "classname" "prop_static" + "angles" "0 180 90" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props_backstage/triple_wallpipe_straight_a.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "-88 -32 1023.79" + editor { - "id" "19442" - side - { - "id" "7380" - "plane" "(-64 640 768) (-64 768 768) (64 768 768)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7379" - "plane" "(-64 768 640) (-64 640 640) (64 640 640)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7378" - "plane" "(-64 640 640) (-64 768 640) (-64 768 768)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7377" - "plane" "(64 768 640) (64 640 640) (64 640 768)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7376" - "plane" "(-64 768 640) (64 768 640) (64 768 768)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "7375" - "plane" "(64 640 640) (-64 640 640) (-64 640 768)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 152 221" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } +} +entity +{ + "id" "24189" + "classname" "prop_static" + "angles" "0 180 90" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props_backstage/triple_wallpipe_straight_a.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "-88 -32 1279.79" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } +} +entity +{ + "id" "24193" + "classname" "prop_static" + "angles" "0 180 90" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props_backstage/triple_wallpipe_straight_a.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "-88 -32 1151.79" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } +} +entity +{ + "id" "24197" + "classname" "prop_static" + "angles" "0 180 90" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props_backstage/triple_wallpipe_straight_a.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "-88 -32 1535.79" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } +} +entity +{ + "id" "24201" + "classname" "prop_static" + "angles" "0 180 90" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props_backstage/triple_wallpipe_straight_a.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "-88 -32 1407.79" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" } +} +entity +{ + "id" "23889" + "classname" "func_brush" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "drawinfastreflection" "0" + "InputFilter" "0" + "invert_exclusion" "0" + "origin" "0 0 -264.75" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "10" + "shadowdepthnocache" "0" + "solidbsp" "1" + "Solidity" "0" + "spawnflags" "2" + "StartDisabled" "0" + "vrad_brush_cast_shadows" "0" solid { - "id" "19443" + "id" "23890" side { - "id" "7386" - "plane" "(-64 640 1024) (64 640 1024) (64 512 1024)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8250" + "plane" "(-128 -128 -113.499) (-128 128 -113.499) (128 128 -113.499)" + "material" "GLASS/GLASSWINDOW_FROSTED_002" + "uaxis" "[-1 0 0 -128] 0.25" + "vaxis" "[0 1 0 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7385" - "plane" "(-64 512 -1024) (64 512 -1024) (64 640 -1024)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "8249" + "plane" "(-128 128 -416) (-128 -128 -416) (128 -128 -416)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 -63.9982] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7384" - "plane" "(-64 640 1024) (-64 512 1024) (-64 512 -1024)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8248" + "plane" "(128 128 -416) (128 -128 -416) (128 -128 -113.498)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 63.9982] 0.25" + "vaxis" "[0 0 -1 -6.35431] 0.100767" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7383" - "plane" "(64 640 -1024) (64 512 -1024) (64 512 1024)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8247" + "plane" "(-128 -128 -416) (-128 128 -416) (-128 128 -113.498)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 63.9982] 0.25" + "vaxis" "[0 0 -1 -6.35431] 0.100767" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7382" - "plane" "(64 640 1024) (-64 640 1024) (-64 640 -1024)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8246" + "plane" "(128 -128 -416) (-128 -128 -416) (-128 -128 -113.498)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -6.35431] 0.100767" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "7381" - "plane" "(64 512 -1024) (-64 512 -1024) (-64 512 1024)" - "material" "TOOLS/TOOLSSKIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "8245" + "plane" "(-128 128 -416) (128 128 -416) (128 128 -113.498)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -6.35431] 0.100767" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 152 221" + "color" "220 30 220" "visgroupshown" "1" "visgroupautoshown" "1" } } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "comments" "Doesn't need to get removed for the elevator, so leave the name blank." + "logicalpos" "[0 0]" + } } entity { "id" "23827" "classname" "func_movelinear" + "angles" "0 0 0" "blockdamage" "0" "disablereceiveshadows" "0" "drawinfastreflection" "0" "movedir" "-90 0 0" "movedistance" "784" - "origin" "0 0 -16" + "origin" "0 0 -128" "renderamt" "255" "rendercolor" "255 255 255" "renderfx" "0" @@ -223,10 +982,10 @@ entity side { "id" "8238" - "plane" "(-64 64 0) (64 64 0) (64 -64 0)" + "plane" "(-64 -64 -112) (-64 64 -112) (64 64 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -234,10 +993,10 @@ entity side { "id" "8237" - "plane" "(-64 -64 -32) (64 -64 -32) (64 64 -32)" + "plane" "(-64 64 -144) (-64 -64 -144) (64 -64 -144)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -245,10 +1004,10 @@ entity side { "id" "8236" - "plane" "(-64 64 0) (-64 -64 0) (-64 -64 -32)" + "plane" "(64 64 -144) (64 -64 -144) (64 -64 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 55.5392] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -8.46082] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -256,10 +1015,10 @@ entity side { "id" "8235" - "plane" "(64 64 -32) (64 -64 -32) (64 -64 0)" + "plane" "(-64 -64 -144) (-64 64 -144) (-64 64 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 55.5392] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -8.46082] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -267,10 +1026,10 @@ entity side { "id" "8234" - "plane" "(64 64 0) (-64 64 0) (-64 64 -32)" + "plane" "(64 -64 -144) (-64 -64 -144) (-64 -64 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 55.5392] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8.46082] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -278,10 +1037,10 @@ entity side { "id" "8233" - "plane" "(64 -64 -32) (-64 -64 -32) (-64 -64 0)" + "plane" "(-64 64 -144) (64 64 -144) (64 64 -112)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 55.5392] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8.46082] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -305,6 +1064,7 @@ entity { "id" "23531" "classname" "logic_coop_manager" + "angles" "0 0 0" "DefaultPlayerStateA" "0" "DefaultPlayerStateB" "0" "targetname" "exit_man" @@ -316,38 +1076,27 @@ entity "OnChangeToAllTrue" "elevator_doorOpen11" "OnChangeToAllTrue" "elevator_tube_openerSetAnimationclose01" "OnChangeToAllTrue" "elevator_modelSetAnimationdoorclose01" + "OnChangeToAllTrue" "@clientcommandCommandrestart_level4.51" + "OnChangeToAllTrue" "elevator_modelSetDefaultAnimationdoorclose_idle0.11" + "OnChangeToAllTrue" "elevator_tube_openerSetDefaultAnimationclose_idle0.11" } - "origin" "16 -16 48" + "origin" "-16 16 -64" editor { - "color" "220 30 220" + "color" "0 100 250" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 1500]" } } entity -{ - "id" "19323" - "classname" "env_soundscape" - "radius" "128" - "soundscape" "EntryExitElevator.Exterior" - "origin" "0 -176 8" - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity { "id" "19378" "classname" "env_soundscape" + "angles" "0 0 0" "radius" "48" "soundscape" "EntryExitElevator.Interior" - "origin" "0 0 40" + "origin" "0 0 -72" editor { "color" "220 30 220" @@ -360,7 +1109,7 @@ entity { "id" "60" "classname" "trigger_multiple" - "origin" "0 0 4" + "origin" "0 0 -108" "spawnflags" "4097" "StartDisabled" "0" "wait" "1" @@ -375,10 +1124,10 @@ entity side { "id" "338" - "plane" "(-24 -24 40) (-24 24 40) (24 24 40)" + "plane" "(-24 -24 -72) (-24 24 -72) (24 24 -72)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -386,10 +1135,10 @@ entity side { "id" "337" - "plane" "(-24 24 -32) (-24 -24 -32) (24 -24 -32)" + "plane" "(-24 24 -144) (-24 -24 -144) (24 -24 -144)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -397,10 +1146,10 @@ entity side { "id" "336" - "plane" "(-24 -24 -32) (-24 24 -32) (-24 24 40)" + "plane" "(24 24 -144) (24 -24 -144) (24 -24 -72)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 28] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -36] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -408,10 +1157,10 @@ entity side { "id" "335" - "plane" "(24 24 -32) (24 -24 -32) (24 -24 40)" + "plane" "(-24 -24 -144) (-24 24 -144) (-24 24 -72)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 28] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -36] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -419,10 +1168,10 @@ entity side { "id" "334" - "plane" "(-24 24 -32) (24 24 -32) (24 24 40)" + "plane" "(24 -24 -144) (-24 -24 -144) (-24 -24 -72)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 28] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -36] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -430,10 +1179,10 @@ entity side { "id" "333" - "plane" "(24 -24 -32) (-24 -24 -32) (-24 -24 40)" + "plane" "(-24 24 -144) (24 24 -144) (24 24 -72)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 28] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -36] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -457,7 +1206,7 @@ entity { "id" "16038" "classname" "prop_dynamic" - "angles" "0 0 0" + "angles" "0 180 0" "DefaultAnim" "close_idle" "DisableBoneFollowers" "0" "disablereceiveshadows" "0" @@ -468,11 +1217,12 @@ entity "fademaxdist" "0" "fademindist" "-1" "fadescale" "1" - "HoldAnimation" "1" + "HoldAnimation" "0" "MaxAnimTime" "10" "MinAnimTime" "5" "model" "models/elevator/elevator_tube_opener.mdl" "PerformanceMode" "0" + "physdamagescale" "1.0" "pressuredelay" "0" "RandomAnimation" "0" "renderamt" "255" @@ -485,7 +1235,7 @@ entity "spawnflags" "256" "StartDisabled" "0" "targetname" "elevator_tube_opener" - "origin" "1.90735e-005 0.166706 -123" + "origin" "0 -0.166698 -235" editor { "color" "220 30 220" @@ -508,13 +1258,15 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" - "origin" "0 0 -40" + "origin" "0 0 -152" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 3500]" @@ -530,7 +1282,7 @@ entity "drawinfastreflection" "0" "InputFilter" "0" "invert_exclusion" "0" - "origin" "0 0.5 69.5" + "origin" "0 -0.5 -42.5" "renderamt" "255" "rendercolor" "255 255 255" "renderfx" "0" @@ -548,10 +1300,10 @@ entity side { "id" "7272" - "plane" "(39.2174 18.1278 -32) (36.3478 17.175 -32) (40.1739 0.023572 -32)" + "plane" "(-40.1747 -0.0234375 -144) (-44 -0.0234375 -144) (-39.2188 -18.127 -144)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -559,10 +1311,10 @@ entity side { "id" "7271" - "plane" "(44 0.023572 171) (40.1739 0.023572 171) (36.3478 17.1759 171)" + "plane" "(-44 -0.0234375 59) (-40.174 -0.0234375 59) (-36.3483 -17.1731 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -570,9 +1322,9 @@ entity side { "id" "7270" - "plane" "(44 0.0235333 -32) (40.1739 0.0235333 -32) (40.1739 0.0235333 171)" + "plane" "(-44 -0.0234985 -144) (-40.1747 -0.0234985 -144) (-40.1739 -0.0234985 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -581,9 +1333,9 @@ entity side { "id" "7269" - "plane" "(36.3478 17.1749 -32) (39.2174 18.1277 -32) (39.2174 18.1296 171)" + "plane" "(-36.3487 -17.1745 -144) (-39.2191 -18.1276 -144) (-39.2227 -18.1289 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -592,9 +1344,9 @@ entity side { "id" "7268" - "plane" "(39.2174 18.1278 -32) (44 0.023572 -32) (44 0.023572 171)" + "plane" "(-39.2188 -18.1289 -144) (-44 -0.0234375 -144) (-44 -0.0234375 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -603,9 +1355,9 @@ entity side { "id" "7267" - "plane" "(40.1739 0.023572 -32) (36.3478 17.175 -32) (36.3478 17.175 171)" + "plane" "(-40.1748 -0.0273438 -144) (-36.3497 -17.1744 -144) (-36.3477 -17.1758 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -624,10 +1376,10 @@ entity side { "id" "7278" - "plane" "(27.7391 33.3735 -32) (24.8696 29.5658 -32) (36.3478 17.1744 -32)" + "plane" "(-36.3553 -17.1715 -144) (-39.2229 -18.1234 -144) (-27.7383 -33.3711 -144)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -635,10 +1387,10 @@ entity side { "id" "7277" - "plane" "(39.2174 18.1296 171) (36.3478 17.1765 171) (24.8696 29.5651 171)" + "plane" "(-39.2188 -18.1289 59) (-36.3517 -17.1771 59) (-24.8702 -29.5674 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -646,9 +1398,9 @@ entity side { "id" "7276" - "plane" "(39.2174 18.1278 -32) (36.3478 17.1752 -32) (36.3478 17.1758 171)" + "plane" "(-39.2188 -18.127 -144) (-36.3518 -17.1752 -144) (-36.3528 -17.1758 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -657,9 +1409,9 @@ entity side { "id" "7275" - "plane" "(24.8696 29.5659 -32) (27.7391 33.3776 -32) (27.7391 33.3772 171)" + "plane" "(-24.8703 -29.5656 -144) (-27.7396 -33.3772 -144) (-27.7422 -33.375 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -668,9 +1420,9 @@ entity side { "id" "7274" - "plane" "(27.7391 33.3772 -32) (39.2174 18.1315 -32) (39.2174 18.1278 171)" + "plane" "(-27.7422 -33.375 -144) (-39.2188 -18.1289 -144) (-39.2227 -18.125 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -679,9 +1431,9 @@ entity side { "id" "7273" - "plane" "(36.3478 17.1786 -32) (24.8696 29.5654 -32) (24.8696 29.5657 171)" + "plane" "(-36.3516 -17.1758 -144) (-24.8706 -29.5655 -144) (-24.8711 -29.5664 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -700,10 +1452,10 @@ entity side { "id" "7284" - "plane" "(9.56522 41 -32) (8.60869 37.1887 -32) (24.8696 29.5663 -32)" + "plane" "(-24.8721 -29.5679 -144) (-27.7382 -33.375 -144) (-9.56641 -41 -144)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -711,10 +1463,10 @@ entity side { "id" "7283" - "plane" "(27.7391 33.3772 171) (24.8696 29.5664 171) (8.60869 37.1894 171)" + "plane" "(-27.7383 -33.3789 59) (-24.8699 -29.5686 59) (-8.6082 -37.192 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -722,9 +1474,9 @@ entity side { "id" "7282" - "plane" "(27.7391 33.3772 -32) (24.8696 29.5656 -32) (24.8696 29.5672 171)" + "plane" "(-27.7383 -33.375 -144) (-24.8721 -29.5679 -144) (-24.8726 -29.5673 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -733,9 +1485,9 @@ entity side { "id" "7281" - "plane" "(8.60869 37.1892 -32) (9.56522 41 -32) (9.56522 41 171)" + "plane" "(-8.6083 -37.1923 -144) (-9.56393 -41 -144) (-9.56445 -41 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -744,9 +1496,9 @@ entity side { "id" "7280" - "plane" "(9.56522 41 -32) (27.7391 33.3772 -32) (27.7391 33.3772 171)" + "plane" "(-9.5625 -41 -144) (-27.7422 -33.373 -144) (-27.7344 -33.375 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -755,9 +1507,9 @@ entity side { "id" "7279" - "plane" "(24.8696 29.5676 -32) (8.60869 37.1907 -32) (8.60869 37.1922 171)" + "plane" "(-24.875 -29.5664 -144) (-8.60909 -37.1918 -144) (-8.60547 -37.1934 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -776,10 +1528,10 @@ entity side { "id" "7290" - "plane" "(-9.56522 41 -32) (-8.6087 37.1883 -32) (8.60869 37.1883 -32)" + "plane" "(-8.60854 -37.1883 -144) (-9.56504 -41 -144) (9.56445 -41 -144)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -787,10 +1539,10 @@ entity side { "id" "7289" - "plane" "(9.56522 41 171) (8.60869 37.1883 171) (-8.6087 37.1883 171)" + "plane" "(-9.56445 -41 59) (-8.60801 -37.1883 59) (8.6066 -37.1883 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -798,9 +1550,9 @@ entity side { "id" "7288" - "plane" "(9.56522 41 -32) (8.60869 37.1883 -32) (8.60869 37.1883 171)" + "plane" "(-9.56543 -41 -144) (-8.60889 -37.1883 -144) (-8.60756 -37.1883 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -809,9 +1561,9 @@ entity side { "id" "7287" - "plane" "(-8.6087 37.1883 -32) (-9.56522 41 -32) (-9.56522 41 171)" + "plane" "(8.60855 -37.1883 -144) (9.56505 -41 -144) (9.56348 -41 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -820,9 +1572,9 @@ entity side { "id" "7286" - "plane" "(-9.56522 41 -32) (9.56522 41 -32) (9.56522 41 171)" + "plane" "(9.5625 -41 -144) (-9.56641 -41 -144) (-9.56641 -41 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -831,9 +1583,9 @@ entity side { "id" "7285" - "plane" "(8.60869 37.1883 -32) (-8.6087 37.1883 -32) (-8.6087 37.1883 171)" + "plane" "(-8.60938 -37.1883 -144) (8.6086 -37.1883 -144) (8.60547 -37.1883 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -852,10 +1604,10 @@ entity side { "id" "7296" - "plane" "(-27.7391 33.3735 -32) (-24.8696 29.565 -32) (-8.6087 37.1906 -32)" + "plane" "(8.61146 -37.1885 -144) (9.56753 -41 -144) (27.7383 -33.3789 -144)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -863,10 +1615,10 @@ entity side { "id" "7295" - "plane" "(-9.56522 41 171) (-8.6087 37.189 171) (-24.8696 29.5649 171)" + "plane" "(9.56445 -41 59) (8.60786 -37.1886 59) (24.865 -29.5674 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -874,9 +1626,9 @@ entity side { "id" "7294" - "plane" "(-9.56522 41 -32) (-8.6087 37.1886 -32) (-8.6087 37.1883 171)" + "plane" "(9.56445 -41 -144) (8.6091 -37.1896 -144) (8.60936 -37.188 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -885,9 +1637,9 @@ entity side { "id" "7293" - "plane" "(-24.8696 29.5658 -32) (-27.7391 33.377 -32) (-27.7391 33.3772 171)" + "plane" "(24.8659 -29.5686 -144) (27.7345 -33.3786 -144) (27.7344 -33.3789 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -896,9 +1648,9 @@ entity side { "id" "7292" - "plane" "(-27.7391 33.3772 -32) (-9.56522 41 -32) (-9.56522 41 171)" + "plane" "(27.7344 -33.3789 -144) (9.5625 -41 -144) (9.5625 -41 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -907,9 +1659,9 @@ entity side { "id" "7291" - "plane" "(-8.6087 37.1886 -32) (-24.8696 29.5657 -32) (-24.8696 29.5657 171)" + "plane" "(8.60156 -37.1914 -144) (24.8652 -29.5672 -144) (24.8633 -29.5645 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -928,10 +1680,10 @@ entity side { "id" "7302" - "plane" "(-39.2174 18.1278 -32) (-36.3478 17.1764 -32) (-24.8696 29.568 -32)" + "plane" "(39.2148 -18.125 -144) (36.3526 -17.1751 -144) (24.8713 -29.5662 -144)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -939,10 +1691,10 @@ entity side { "id" "7301" - "plane" "(-27.7391 33.3699 171) (-24.8696 29.5592 171) (-36.3478 17.1728 171)" + "plane" "(27.7383 -33.3711 59) (24.872 -29.565 59) (36.3532 -17.1741 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -950,9 +1702,9 @@ entity side { "id" "7300" - "plane" "(-27.7391 33.3735 -32) (-24.8696 29.5638 -32) (-24.8696 29.5641 171)" + "plane" "(27.7383 -33.375 -144) (24.8701 -29.5675 -144) (24.8706 -29.5666 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -961,9 +1713,9 @@ entity side { "id" "7299" - "plane" "(-36.3478 17.1742 -32) (-39.2174 18.1266 -32) (-39.2174 18.126 171)" + "plane" "(36.3521 -17.1757 -144) (39.2143 -18.1256 -144) (39.2109 -18.1211 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -972,9 +1724,9 @@ entity side { "id" "7298" - "plane" "(-39.2174 18.1278 -32) (-27.7391 33.3808 -32) (-27.7391 33.3735 171)" + "plane" "(39.2148 -18.1211 -144) (27.7383 -33.3789 -144) (27.7383 -33.3672 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -983,9 +1735,9 @@ entity side { "id" "7297" - "plane" "(-24.8696 29.5621 -32) (-36.3478 17.1744 -32) (-36.3478 17.175 171)" + "plane" "(24.8711 -29.5664 -144) (36.3533 -17.1744 -144) (36.3555 -17.1719 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1004,10 +1756,10 @@ entity side { "id" "7308" - "plane" "(-36.3478 17.1756 -32) (-39.2174 18.1284 -32) (-44 0.976427 -32)" + "plane" "(44 -0.976563 -144) (40.1757 -0.976563 -144) (36.3487 -17.1754 -144)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1015,10 +1767,10 @@ entity side { "id" "7307" - "plane" "(-39.2174 18.126 171) (-36.3478 17.1733 171) (-40.1739 0.976427 171)" + "plane" "(39.2188 -18.125 59) (36.3495 -17.1724 59) (40.1758 -0.976563 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1026,9 +1778,9 @@ entity side { "id" "7306" - "plane" "(-39.2174 18.126 -32) (-36.3478 17.1733 -32) (-36.3478 17.1744 171)" + "plane" "(39.2188 -18.125 -144) (36.3494 -17.1724 -144) (36.3488 -17.1754 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1037,9 +1789,9 @@ entity side { "id" "7305" - "plane" "(-40.1739 0.976466 -32) (-44 0.976466 -32) (-44 0.976466 171)" + "plane" "(40.1757 -0.976501 -144) (44 -0.976501 -144) (44 -0.976501 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1048,9 +1800,9 @@ entity side { "id" "7304" - "plane" "(-44 0.976427 -32) (-39.2174 18.1278 -32) (-39.2174 18.1278 171)" + "plane" "(44 -0.976563 -144) (39.2188 -18.1211 -144) (39.2168 -18.125 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1059,9 +1811,9 @@ entity side { "id" "7303" - "plane" "(-36.3478 17.1713 -32) (-40.1739 0.976467 -32) (-40.1739 0.976427 171)" + "plane" "(36.3506 -17.1719 -144) (40.1768 -0.976501 -144) (40.1768 -0.976563 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1080,10 +1832,10 @@ entity side { "id" "7314" - "plane" "(-40.1739 0.976427 -32) (-44 0.976427 -32) (-39.2174 -17.1333 -32)" + "plane" "(39.2188 17.1328 -144) (36.3476 16.1792 -144) (40.1738 -0.976563 -144)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1091,10 +1843,10 @@ entity side { "id" "7313" - "plane" "(-44 0.976427 171) (-40.1739 0.976427 171) (-36.3478 -16.1783 171)" + "plane" "(44 -0.976563 59) (40.172 -0.976563 59) (36.3462 16.1774 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1102,9 +1854,9 @@ entity side { "id" "7312" - "plane" "(-44 0.976466 -32) (-40.1739 0.976466 -32) (-40.1739 0.976466 171)" + "plane" "(44 -0.976501 -144) (40.1738 -0.976501 -144) (40.172 -0.976501 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1113,9 +1865,9 @@ entity side { "id" "7311" - "plane" "(-36.3478 -16.1784 -32) (-39.2174 -17.1314 -32) (-39.2174 -17.1315 171)" + "plane" "(36.3476 16.1792 -144) (39.2196 17.133 -144) (39.2188 17.1328 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1124,9 +1876,9 @@ entity side { "id" "7310" - "plane" "(-39.2174 -17.1315 -32) (-44 0.976427 -32) (-44 0.976427 171)" + "plane" "(39.2197 17.1328 -144) (44 -0.972656 -144) (44 -0.976563 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1135,9 +1887,9 @@ entity side { "id" "7309" - "plane" "(-40.1739 0.976427 -32) (-36.3478 -16.1782 -32) (-36.3478 -16.1786 171)" + "plane" "(40.1729 -0.976563 -144) (36.3467 16.1789 -144) (36.3447 16.1797 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1156,10 +1908,10 @@ entity side { "id" "7320" - "plane" "(-36.3478 -16.1773 -32) (-39.2174 -17.131 -32) (-27.7391 -32.3808 -32)" + "plane" "(27.7383 32.3789 -144) (24.8692 28.5663 -144) (36.348 16.1797 -144)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1167,10 +1919,10 @@ entity side { "id" "7319" - "plane" "(-39.2174 -17.1315 171) (-36.3478 -16.1773 171) (-24.8696 -28.5647 171)" + "plane" "(39.2227 17.1387 59) (36.3469 16.1828 59) (24.8643 28.5735 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1178,9 +1930,9 @@ entity side { "id" "7318" - "plane" "(-39.2174 -17.1315 -32) (-36.3478 -16.1777 -32) (-36.3478 -16.1787 171)" + "plane" "(39.2148 17.1328 -144) (36.3478 16.1799 -144) (36.3488 16.1806 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1189,9 +1941,9 @@ entity side { "id" "7317" - "plane" "(-24.8696 -28.5651 -32) (-27.7391 -32.3779 -32) (-27.7391 -32.3772 171)" + "plane" "(24.8708 28.5646 -144) (27.7398 32.3769 -144) (27.7422 32.3906 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1200,9 +1952,9 @@ entity side { "id" "7316" - "plane" "(-27.7391 -32.3735 -32) (-39.2174 -17.1278 -32) (-39.2174 -17.1351 171)" + "plane" "(27.7422 32.375 -144) (39.2188 17.1289 -144) (39.2227 17.1367 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1211,9 +1963,9 @@ entity side { "id" "7315" - "plane" "(-36.3478 -16.1786 -32) (-24.8696 -28.5647 -32) (-24.8696 -28.5657 171)" + "plane" "(36.3477 16.1797 -144) (24.8708 28.5642 -144) (24.8672 28.5664 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1232,10 +1984,10 @@ entity side { "id" "7326" - "plane" "(-24.8696 -28.5655 -32) (-27.7391 -32.3771 -32) (-9.56522 -40 -32)" + "plane" "(9.56543 40 -144) (8.60893 36.1884 -144) (24.8703 28.5648 -144)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1243,10 +1995,10 @@ entity side { "id" "7325" - "plane" "(-27.7391 -32.3735 171) (-24.8696 -28.5643 171) (-8.6087 -36.1891 171)" + "plane" "(27.7383 32.3672 59) (24.8738 28.5625 59) (8.60801 36.1882 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1254,9 +2006,9 @@ entity side { "id" "7324" - "plane" "(-27.7391 -32.3772 -32) (-24.8696 -28.5656 -32) (-24.8696 -28.566 171)" + "plane" "(27.7422 32.3789 -144) (24.8706 28.5647 -144) (24.8707 28.564 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1265,9 +2017,9 @@ entity side { "id" "7323" - "plane" "(-8.6087 -36.1891 -32) (-9.56522 -40 -32) (-9.56522 -40 171)" + "plane" "(8.60989 36.1879 -144) (9.5665 40 -144) (9.5625 40 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1276,9 +2028,9 @@ entity side { "id" "7322" - "plane" "(-9.56522 -40 -32) (-27.7391 -32.379 -32) (-27.7391 -32.3735 171)" + "plane" "(9.56641 40 -144) (27.7422 32.3789 -144) (27.7383 32.3711 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1287,9 +2039,9 @@ entity side { "id" "7321" - "plane" "(-24.8696 -28.5657 -32) (-8.6087 -36.189 -32) (-8.6087 -36.1886 171)" + "plane" "(24.8672 28.5645 -144) (8.60929 36.1864 -144) (8.60938 36.1875 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1308,10 +2060,10 @@ entity side { "id" "7332" - "plane" "(-8.6087 -36.1883 -32) (-9.56522 -40 -32) (9.56522 -40 -32)" + "plane" "(-9.56348 40 -144) (-8.60684 36.1883 -144) (8.60651 36.1883 -144)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1319,10 +2071,10 @@ entity side { "id" "7331" - "plane" "(-9.56522 -40 171) (-8.6087 -36.1883 171) (8.60869 -36.1883 171)" + "plane" "(9.5625 40 59) (8.60586 36.1883 59) (-8.60553 36.1883 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1330,9 +2082,9 @@ entity side { "id" "7330" - "plane" "(-9.56522 -40 -32) (-8.6087 -36.1883 -32) (-8.6087 -36.1883 171)" + "plane" "(9.56348 40 -144) (8.60694 36.1883 -144) (8.60945 36.1883 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1341,9 +2093,9 @@ entity side { "id" "7329" - "plane" "(8.60869 -36.1883 -32) (9.56522 -40 -32) (9.56522 -40 171)" + "plane" "(-8.60749 36.1883 -144) (-9.56409 40 -144) (-9.56445 40 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1352,9 +2104,9 @@ entity side { "id" "7328" - "plane" "(9.56522 -40 -32) (-9.56522 -40 -32) (-9.56522 -40 171)" + "plane" "(-9.5625 40 -144) (9.57031 40 -144) (9.56641 40 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1363,9 +2115,9 @@ entity side { "id" "7327" - "plane" "(-8.6087 -36.1883 -32) (8.60869 -36.1883 -32) (8.60869 -36.1883 171)" + "plane" "(8.60938 36.1883 -144) (-8.6075 36.1883 -144) (-8.60938 36.1883 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1384,10 +2136,10 @@ entity side { "id" "7338" - "plane" "(8.60869 -36.1882 -32) (9.56522 -40 -32) (27.7391 -32.3772 -32)" + "plane" "(-27.7383 32.3789 -144) (-24.8674 28.564 -144) (-8.60505 36.1876 -144)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1395,10 +2147,10 @@ entity side { "id" "7337" - "plane" "(9.56522 -40 171) (8.60869 -36.1872 171) (24.8696 -28.5654 171)" + "plane" "(-9.56543 40 59) (-8.60918 36.1878 59) (-24.8694 28.5652 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1406,9 +2158,9 @@ entity side { "id" "7336" - "plane" "(9.56522 -40 -32) (8.60869 -36.1865 -32) (8.60869 -36.1873 171)" + "plane" "(-9.56543 40 -144) (-8.60775 36.1863 -144) (-8.60903 36.1879 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1417,9 +2169,9 @@ entity side { "id" "7335" - "plane" "(24.8696 -28.5642 -32) (27.7391 -32.3773 -32) (27.7391 -32.3772 171)" + "plane" "(-24.8704 28.5626 -144) (-27.7413 32.3776 -144) (-27.7383 32.3789 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1428,9 +2180,9 @@ entity side { "id" "7334" - "plane" "(27.7391 -32.3772 -32) (9.56522 -40 -32) (9.56522 -40 171)" + "plane" "(-27.7383 32.3789 -144) (-9.56641 40 -144) (-9.56641 40 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1439,9 +2191,9 @@ entity side { "id" "7333" - "plane" "(8.60869 -36.1868 -32) (24.8696 -28.5639 -32) (24.8696 -28.5639 171)" + "plane" "(-8.60938 36.1855 -144) (-24.8674 28.564 -144) (-24.8672 28.5664 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1460,10 +2212,10 @@ entity side { "id" "7344" - "plane" "(39.2174 -17.1278 -32) (36.3478 -16.1751 -32) (24.8696 -28.5654 -32)" + "plane" "(-39.2109 17.1348 -144) (-36.342 16.1822 -144) (-24.8747 28.5586 -144)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1471,10 +2223,10 @@ entity side { "id" "7343" - "plane" "(27.7391 -32.3772 171) (24.8696 -28.5647 171) (36.3478 -16.1751 171)" + "plane" "(-27.7383 32.3711 59) (-24.8704 28.5625 59) (-36.3434 16.1801 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1482,9 +2234,9 @@ entity side { "id" "7342" - "plane" "(27.7391 -32.3772 -32) (24.8696 -28.5656 -32) (24.8696 -28.5669 171)" + "plane" "(-27.7383 32.3711 -144) (-24.871 28.5626 -144) (-24.8691 28.564 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1493,9 +2245,9 @@ entity side { "id" "7341" - "plane" "(36.3478 -16.1786 -32) (39.2174 -17.1315 -32) (39.2174 -17.1296 171)" + "plane" "(-36.3447 16.1793 -144) (-39.2152 17.1324 -144) (-39.2148 17.1328 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1504,9 +2256,9 @@ entity side { "id" "7340" - "plane" "(39.2174 -17.1278 -32) (27.7391 -32.3735 -32) (27.7391 -32.3772 171)" + "plane" "(-39.2109 17.1328 -144) (-27.7383 32.3711 -144) (-27.7383 32.375 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1515,9 +2267,9 @@ entity side { "id" "7339" - "plane" "(24.8696 -28.5657 -32) (36.3478 -16.1776 -32) (36.3478 -16.175 171)" + "plane" "(-24.8672 28.5664 -144) (-36.3444 16.1794 -144) (-36.3438 16.1797 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1536,10 +2288,10 @@ entity side { "id" "7350" - "plane" "(44 0.023572 -32) (40.1739 0.023572 -32) (36.3478 -16.179 -32)" + "plane" "(-36.3489 16.1786 -144) (-39.2162 17.1307 -144) (-44 -0.0234375 -144)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1547,10 +2299,10 @@ entity side { "id" "7349" - "plane" "(39.2174 -17.126 171) (36.3478 -16.1733 171) (40.1739 0.0235754 171)" + "plane" "(-39.2148 17.1328 59) (-36.3474 16.1807 59) (-40.1748 -0.0234375 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1558,9 +2310,9 @@ entity side { "id" "7348" - "plane" "(39.2174 -17.1296 -32) (36.3478 -16.1767 -32) (36.3478 -16.1779 171)" + "plane" "(-39.2188 17.127 -144) (-36.3499 16.1744 -144) (-36.348 16.1783 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1569,9 +2321,9 @@ entity side { "id" "7347" - "plane" "(40.1739 0.0235333 -32) (44 0.0235333 -32) (44 0.0235333 171)" + "plane" "(-40.1759 -0.0234985 -144) (-44 -0.0234985 -144) (-44 -0.0234985 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1580,9 +2332,9 @@ entity side { "id" "7346" - "plane" "(44 0.023572 -32) (39.2174 -17.1351 -32) (39.2174 -17.1278 171)" + "plane" "(-44 -0.0234375 -144) (-39.2158 17.1289 -144) (-39.2129 17.1328 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1591,9 +2343,9 @@ entity side { "id" "7345" - "plane" "(36.3478 -16.175 -32) (40.1739 0.0235329 -32) (40.1739 0.023572 171)" + "plane" "(-36.3506 16.1758 -144) (-40.1769 -0.0234985 -144) (-40.1758 -0.0234375 59)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1624,7 +2376,7 @@ entity "drawinfastreflection" "0" "InputFilter" "0" "invert_exclusion" "0" - "origin" "0 0 97" + "origin" "0 0 -15" "renderamt" "255" "rendercolor" "255 255 255" "renderfx" "0" @@ -1642,10 +2394,10 @@ entity side { "id" "7176" - "plane" "(64 -64 256) (64 -64 -62) (-64 -64 -62)" + "plane" "(-64 64 144) (-64 64 -174) (64 64 -174)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 14] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -50] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1653,10 +2405,10 @@ entity side { "id" "7175" - "plane" "(-64 64 256) (-64 64 -62) (64 64 -62)" + "plane" "(64 -64 144) (64 -64 -174) (-64 -64 -174)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 14] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -50] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1664,10 +2416,10 @@ entity side { "id" "7174" - "plane" "(-64 -64 256) (-64 -64 -62) (-64 64 -62)" + "plane" "(64 64 144) (64 64 -174) (64 -64 -174)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 0 1 -14] 0.25" - "vaxis" "[0 1 0 50] 0.25" + "uaxis" "[0 0 1 50] 0.25" + "vaxis" "[0 -1 0 50] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1675,10 +2427,10 @@ entity side { "id" "7173" - "plane" "(64 64 256) (64 64 -62) (64 -64 -62)" + "plane" "(-64 -64 144) (-64 -64 -174) (-64 64 -174)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[0 0 1 -14] 0.25" - "vaxis" "[0 1 0 50] 0.25" + "uaxis" "[0 0 1 50] 0.25" + "vaxis" "[0 -1 0 50] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1686,10 +2438,10 @@ entity side { "id" "7172" - "plane" "(64 -64 256) (-64 -64 256) (-64 64 256)" + "plane" "(64 -64 144) (-64 -64 144) (-64 64 144)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 50] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 50] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1697,10 +2449,10 @@ entity side { "id" "7171" - "plane" "(64 64 -62) (-64 64 -62) (-64 -64 -62)" + "plane" "(64 64 -174) (-64 64 -174) (-64 -64 -174)" "material" "TOOLS/TOOLSPLAYERCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 50] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 50] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1722,30 +2474,10 @@ entity } } entity -{ - "id" "1489" - "classname" "logic_relay" - "spawnflags" "0" - "targetname" "signs_off" - connections - { - "OnTrigger" "@video_splitterRunScriptCodeStopDepartureVideo(23,2)0-1" - } - "origin" "48 -128 33" - editor - { - "color" "220 30 220" - "visgroupid" "21" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[1500 15500]" - } -} -entity { "id" "23487" "classname" "trigger_multiple" - "origin" "0 0.5 69.5" + "origin" "0 -0.5 -42.5" "spawnflags" "4097" "StartDisabled" "0" "wait" "1" @@ -1760,10 +2492,10 @@ entity side { "id" "8124" - "plane" "(39.2174 18.1278 -32) (36.3478 17.175 -32) (40.1739 0.023572 -32)" + "plane" "(-40.1747 -0.0234375 -144) (-44 -0.0234375 -144) (-39.2188 -18.127 -144)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1771,10 +2503,10 @@ entity side { "id" "8123" - "plane" "(44 0.023572 171) (40.1739 0.023572 171) (36.3478 17.1759 171)" + "plane" "(-44 -0.0234375 59) (-40.174 -0.0234375 59) (-36.3483 -17.1731 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1782,9 +2514,9 @@ entity side { "id" "8122" - "plane" "(44 0.0235333 -32) (40.1739 0.0235333 -32) (40.1739 0.0235333 171)" + "plane" "(-44 -0.0234985 -144) (-40.1747 -0.0234985 -144) (-40.1739 -0.0234985 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1793,9 +2525,9 @@ entity side { "id" "8121" - "plane" "(36.3478 17.1749 -32) (39.2174 18.1277 -32) (39.2174 18.1296 171)" + "plane" "(-36.3487 -17.1745 -144) (-39.2191 -18.1276 -144) (-39.2227 -18.1289 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1804,9 +2536,9 @@ entity side { "id" "8120" - "plane" "(39.2174 18.1278 -32) (44 0.023572 -32) (44 0.023572 171)" + "plane" "(-39.2188 -18.1289 -144) (-44 -0.0234375 -144) (-44 -0.0234375 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1815,9 +2547,9 @@ entity side { "id" "8119" - "plane" "(40.1739 0.023572 -32) (36.3478 17.175 -32) (36.3478 17.175 171)" + "plane" "(-40.1748 -0.0273438 -144) (-36.3497 -17.1744 -144) (-36.3477 -17.1758 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1836,10 +2568,10 @@ entity side { "id" "8130" - "plane" "(27.7391 33.3735 -32) (24.8696 29.5658 -32) (36.3478 17.1744 -32)" + "plane" "(-36.3553 -17.1715 -144) (-39.2229 -18.1234 -144) (-27.7383 -33.3711 -144)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1847,10 +2579,10 @@ entity side { "id" "8129" - "plane" "(39.2174 18.1296 171) (36.3478 17.1765 171) (24.8696 29.5651 171)" + "plane" "(-39.2188 -18.1289 59) (-36.3517 -17.1771 59) (-24.8702 -29.5674 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1858,9 +2590,9 @@ entity side { "id" "8128" - "plane" "(39.2174 18.1278 -32) (36.3478 17.1752 -32) (36.3478 17.1758 171)" + "plane" "(-39.2188 -18.127 -144) (-36.3518 -17.1752 -144) (-36.3528 -17.1758 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1869,9 +2601,9 @@ entity side { "id" "8127" - "plane" "(24.8696 29.5659 -32) (27.7391 33.3776 -32) (27.7391 33.3772 171)" + "plane" "(-24.8703 -29.5656 -144) (-27.7396 -33.3772 -144) (-27.7422 -33.375 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1880,9 +2612,9 @@ entity side { "id" "8126" - "plane" "(27.7391 33.3772 -32) (39.2174 18.1315 -32) (39.2174 18.1278 171)" + "plane" "(-27.7422 -33.375 -144) (-39.2188 -18.1289 -144) (-39.2227 -18.125 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1891,9 +2623,9 @@ entity side { "id" "8125" - "plane" "(36.3478 17.1786 -32) (24.8696 29.5654 -32) (24.8696 29.5657 171)" + "plane" "(-36.3516 -17.1758 -144) (-24.8706 -29.5655 -144) (-24.8711 -29.5664 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1912,10 +2644,10 @@ entity side { "id" "8136" - "plane" "(9.56522 41 -32) (8.60869 37.1887 -32) (24.8696 29.5663 -32)" + "plane" "(-24.8721 -29.5679 -144) (-27.7382 -33.375 -144) (-9.56641 -41 -144)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1923,10 +2655,10 @@ entity side { "id" "8135" - "plane" "(27.7391 33.3772 171) (24.8696 29.5664 171) (8.60869 37.1894 171)" + "plane" "(-27.7383 -33.3789 59) (-24.8699 -29.5686 59) (-8.6082 -37.192 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1934,9 +2666,9 @@ entity side { "id" "8134" - "plane" "(27.7391 33.3772 -32) (24.8696 29.5656 -32) (24.8696 29.5672 171)" + "plane" "(-27.7383 -33.375 -144) (-24.8721 -29.5679 -144) (-24.8726 -29.5673 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1945,9 +2677,9 @@ entity side { "id" "8133" - "plane" "(8.60869 37.1892 -32) (9.56522 41 -32) (9.56522 41 171)" + "plane" "(-8.6083 -37.1923 -144) (-9.56393 -41 -144) (-9.56445 -41 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1956,9 +2688,9 @@ entity side { "id" "8132" - "plane" "(9.56522 41 -32) (27.7391 33.3772 -32) (27.7391 33.3772 171)" + "plane" "(-9.5625 -41 -144) (-27.7422 -33.373 -144) (-27.7344 -33.375 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1967,9 +2699,9 @@ entity side { "id" "8131" - "plane" "(24.8696 29.5676 -32) (8.60869 37.1907 -32) (8.60869 37.1922 171)" + "plane" "(-24.875 -29.5664 -144) (-8.60909 -37.1918 -144) (-8.60547 -37.1934 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1988,10 +2720,10 @@ entity side { "id" "8142" - "plane" "(-9.56522 41 -32) (-8.6087 37.1883 -32) (8.60869 37.1883 -32)" + "plane" "(-8.60854 -37.1883 -144) (-9.56504 -41 -144) (9.56445 -41 -144)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1999,10 +2731,10 @@ entity side { "id" "8141" - "plane" "(9.56522 41 171) (8.60869 37.1883 171) (-8.6087 37.1883 171)" + "plane" "(-9.56445 -41 59) (-8.60801 -37.1883 59) (8.6066 -37.1883 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2010,9 +2742,9 @@ entity side { "id" "8140" - "plane" "(9.56522 41 -32) (8.60869 37.1883 -32) (8.60869 37.1883 171)" + "plane" "(-9.56543 -41 -144) (-8.60889 -37.1883 -144) (-8.60756 -37.1883 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2021,9 +2753,9 @@ entity side { "id" "8139" - "plane" "(-8.6087 37.1883 -32) (-9.56522 41 -32) (-9.56522 41 171)" + "plane" "(8.60855 -37.1883 -144) (9.56505 -41 -144) (9.56348 -41 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2032,9 +2764,9 @@ entity side { "id" "8138" - "plane" "(-9.56522 41 -32) (9.56522 41 -32) (9.56522 41 171)" + "plane" "(9.5625 -41 -144) (-9.56641 -41 -144) (-9.56641 -41 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2043,9 +2775,9 @@ entity side { "id" "8137" - "plane" "(8.60869 37.1883 -32) (-8.6087 37.1883 -32) (-8.6087 37.1883 171)" + "plane" "(-8.60938 -37.1883 -144) (8.6086 -37.1883 -144) (8.60547 -37.1883 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2064,10 +2796,10 @@ entity side { "id" "8148" - "plane" "(-27.7391 33.3735 -32) (-24.8696 29.565 -32) (-8.6087 37.1906 -32)" + "plane" "(8.61146 -37.1885 -144) (9.56753 -41 -144) (27.7383 -33.3789 -144)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2075,10 +2807,10 @@ entity side { "id" "8147" - "plane" "(-9.56522 41 171) (-8.6087 37.189 171) (-24.8696 29.5649 171)" + "plane" "(9.56445 -41 59) (8.60786 -37.1886 59) (24.865 -29.5674 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2086,9 +2818,9 @@ entity side { "id" "8146" - "plane" "(-9.56522 41 -32) (-8.6087 37.1886 -32) (-8.6087 37.1883 171)" + "plane" "(9.56445 -41 -144) (8.6091 -37.1896 -144) (8.60936 -37.188 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2097,9 +2829,9 @@ entity side { "id" "8145" - "plane" "(-24.8696 29.5658 -32) (-27.7391 33.377 -32) (-27.7391 33.3772 171)" + "plane" "(24.8659 -29.5686 -144) (27.7345 -33.3786 -144) (27.7344 -33.3789 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2108,9 +2840,9 @@ entity side { "id" "8144" - "plane" "(-27.7391 33.3772 -32) (-9.56522 41 -32) (-9.56522 41 171)" + "plane" "(27.7344 -33.3789 -144) (9.5625 -41 -144) (9.5625 -41 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2119,9 +2851,9 @@ entity side { "id" "8143" - "plane" "(-8.6087 37.1886 -32) (-24.8696 29.5657 -32) (-24.8696 29.5657 171)" + "plane" "(8.60156 -37.1914 -144) (24.8652 -29.5672 -144) (24.8633 -29.5645 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2140,10 +2872,10 @@ entity side { "id" "8154" - "plane" "(-39.2174 18.1278 -32) (-36.3478 17.1764 -32) (-24.8696 29.568 -32)" + "plane" "(39.2148 -18.125 -144) (36.3526 -17.1751 -144) (24.8713 -29.5662 -144)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2151,10 +2883,10 @@ entity side { "id" "8153" - "plane" "(-27.7391 33.3699 171) (-24.8696 29.5592 171) (-36.3478 17.1728 171)" + "plane" "(27.7383 -33.3711 59) (24.872 -29.565 59) (36.3532 -17.1741 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2162,9 +2894,9 @@ entity side { "id" "8152" - "plane" "(-27.7391 33.3735 -32) (-24.8696 29.5638 -32) (-24.8696 29.5641 171)" + "plane" "(27.7383 -33.375 -144) (24.8701 -29.5675 -144) (24.8706 -29.5666 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2173,9 +2905,9 @@ entity side { "id" "8151" - "plane" "(-36.3478 17.1742 -32) (-39.2174 18.1266 -32) (-39.2174 18.126 171)" + "plane" "(36.3521 -17.1757 -144) (39.2143 -18.1256 -144) (39.2109 -18.1211 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2184,9 +2916,9 @@ entity side { "id" "8150" - "plane" "(-39.2174 18.1278 -32) (-27.7391 33.3808 -32) (-27.7391 33.3735 171)" + "plane" "(39.2148 -18.1211 -144) (27.7383 -33.3789 -144) (27.7383 -33.3672 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2195,9 +2927,9 @@ entity side { "id" "8149" - "plane" "(-24.8696 29.5621 -32) (-36.3478 17.1744 -32) (-36.3478 17.175 171)" + "plane" "(24.8711 -29.5664 -144) (36.3533 -17.1744 -144) (36.3555 -17.1719 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2216,10 +2948,10 @@ entity side { "id" "8160" - "plane" "(-36.3478 17.1756 -32) (-39.2174 18.1284 -32) (-44 0.976428 -32)" + "plane" "(44 -0.976563 -144) (40.1757 -0.976563 -144) (36.3487 -17.1754 -144)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2227,10 +2959,10 @@ entity side { "id" "8159" - "plane" "(-39.2174 18.126 171) (-36.3478 17.1733 171) (-40.1739 0.976428 171)" + "plane" "(39.2188 -18.125 59) (36.3495 -17.1724 59) (40.1758 -0.976563 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2238,9 +2970,9 @@ entity side { "id" "8158" - "plane" "(-39.2174 18.126 -32) (-36.3478 17.1733 -32) (-36.3478 17.1744 171)" + "plane" "(39.2188 -18.125 -144) (36.3494 -17.1724 -144) (36.3488 -17.1754 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2249,9 +2981,9 @@ entity side { "id" "8157" - "plane" "(-40.1739 0.976466 -32) (-44 0.976466 -32) (-44 0.976466 171)" + "plane" "(40.1757 -0.976501 -144) (44 -0.976501 -144) (44 -0.976501 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2260,9 +2992,9 @@ entity side { "id" "8156" - "plane" "(-44 0.976428 -32) (-39.2174 18.1278 -32) (-39.2174 18.1278 171)" + "plane" "(44 -0.976563 -144) (39.2188 -18.1211 -144) (39.2168 -18.125 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2271,9 +3003,9 @@ entity side { "id" "8155" - "plane" "(-36.3478 17.1713 -32) (-40.1739 0.976467 -32) (-40.1739 0.976428 171)" + "plane" "(36.3506 -17.1719 -144) (40.1768 -0.976501 -144) (40.1768 -0.976563 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2292,10 +3024,10 @@ entity side { "id" "8166" - "plane" "(-40.1739 0.976428 -32) (-44 0.976428 -32) (-39.2174 -17.1333 -32)" + "plane" "(39.2188 17.1328 -144) (36.3476 16.1792 -144) (40.1738 -0.976563 -144)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2303,10 +3035,10 @@ entity side { "id" "8165" - "plane" "(-44 0.976428 171) (-40.1739 0.976428 171) (-36.3478 -16.1783 171)" + "plane" "(44 -0.976563 59) (40.172 -0.976563 59) (36.3462 16.1774 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2314,9 +3046,9 @@ entity side { "id" "8164" - "plane" "(-44 0.976466 -32) (-40.1739 0.976466 -32) (-40.1739 0.976466 171)" + "plane" "(44 -0.976501 -144) (40.1738 -0.976501 -144) (40.172 -0.976501 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2325,9 +3057,9 @@ entity side { "id" "8163" - "plane" "(-36.3478 -16.1784 -32) (-39.2174 -17.1314 -32) (-39.2174 -17.1315 171)" + "plane" "(36.3476 16.1792 -144) (39.2196 17.133 -144) (39.2188 17.1328 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2336,9 +3068,9 @@ entity side { "id" "8162" - "plane" "(-39.2174 -17.1315 -32) (-44 0.976428 -32) (-44 0.976428 171)" + "plane" "(39.2197 17.1328 -144) (44 -0.972656 -144) (44 -0.976563 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2347,9 +3079,9 @@ entity side { "id" "8161" - "plane" "(-40.1739 0.976428 -32) (-36.3478 -16.1782 -32) (-36.3478 -16.1786 171)" + "plane" "(40.1729 -0.976563 -144) (36.3467 16.1789 -144) (36.3447 16.1797 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2368,10 +3100,10 @@ entity side { "id" "8172" - "plane" "(-36.3478 -16.1773 -32) (-39.2174 -17.131 -32) (-27.7391 -32.3808 -32)" + "plane" "(27.7383 32.3789 -144) (24.8692 28.5663 -144) (36.348 16.1797 -144)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2379,10 +3111,10 @@ entity side { "id" "8171" - "plane" "(-39.2174 -17.1315 171) (-36.3478 -16.1773 171) (-24.8696 -28.5647 171)" + "plane" "(39.2227 17.1387 59) (36.3469 16.1828 59) (24.8643 28.5735 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2390,9 +3122,9 @@ entity side { "id" "8170" - "plane" "(-39.2174 -17.1315 -32) (-36.3478 -16.1777 -32) (-36.3478 -16.1787 171)" + "plane" "(39.2148 17.1328 -144) (36.3478 16.1799 -144) (36.3488 16.1806 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2401,9 +3133,9 @@ entity side { "id" "8169" - "plane" "(-24.8696 -28.5651 -32) (-27.7391 -32.3779 -32) (-27.7391 -32.3772 171)" + "plane" "(24.8708 28.5646 -144) (27.7398 32.3769 -144) (27.7422 32.3906 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2412,9 +3144,9 @@ entity side { "id" "8168" - "plane" "(-27.7391 -32.3735 -32) (-39.2174 -17.1278 -32) (-39.2174 -17.1351 171)" + "plane" "(27.7422 32.375 -144) (39.2188 17.1289 -144) (39.2227 17.1367 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2423,9 +3155,9 @@ entity side { "id" "8167" - "plane" "(-36.3478 -16.1786 -32) (-24.8696 -28.5647 -32) (-24.8696 -28.5657 171)" + "plane" "(36.3477 16.1797 -144) (24.8708 28.5642 -144) (24.8672 28.5664 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2444,10 +3176,10 @@ entity side { "id" "8178" - "plane" "(-24.8696 -28.5655 -32) (-27.7391 -32.3771 -32) (-9.56522 -40 -32)" + "plane" "(9.56543 40 -144) (8.60893 36.1884 -144) (24.8703 28.5648 -144)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2455,10 +3187,10 @@ entity side { "id" "8177" - "plane" "(-27.7391 -32.3735 171) (-24.8696 -28.5643 171) (-8.6087 -36.1891 171)" + "plane" "(27.7383 32.3672 59) (24.8738 28.5625 59) (8.60801 36.1882 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2466,9 +3198,9 @@ entity side { "id" "8176" - "plane" "(-27.7391 -32.3772 -32) (-24.8696 -28.5656 -32) (-24.8696 -28.566 171)" + "plane" "(27.7422 32.3789 -144) (24.8706 28.5647 -144) (24.8707 28.564 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2477,9 +3209,9 @@ entity side { "id" "8175" - "plane" "(-8.6087 -36.1891 -32) (-9.56522 -40 -32) (-9.56522 -40 171)" + "plane" "(8.60989 36.1879 -144) (9.5665 40 -144) (9.5625 40 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2488,9 +3220,9 @@ entity side { "id" "8174" - "plane" "(-9.56522 -40 -32) (-27.7391 -32.379 -32) (-27.7391 -32.3735 171)" + "plane" "(9.56641 40 -144) (27.7422 32.3789 -144) (27.7383 32.3711 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2499,9 +3231,9 @@ entity side { "id" "8173" - "plane" "(-24.8696 -28.5657 -32) (-8.6087 -36.189 -32) (-8.6087 -36.1886 171)" + "plane" "(24.8672 28.5645 -144) (8.60929 36.1864 -144) (8.60938 36.1875 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2520,10 +3252,10 @@ entity side { "id" "8184" - "plane" "(-8.6087 -36.1883 -32) (-9.56522 -40 -32) (9.56522 -40 -32)" + "plane" "(-9.56348 40 -144) (-8.60684 36.1883 -144) (8.60651 36.1883 -144)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2531,10 +3263,10 @@ entity side { "id" "8183" - "plane" "(-9.56522 -40 171) (-8.6087 -36.1883 171) (8.60869 -36.1883 171)" + "plane" "(9.5625 40 59) (8.60586 36.1883 59) (-8.60553 36.1883 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2542,9 +3274,9 @@ entity side { "id" "8182" - "plane" "(-9.56522 -40 -32) (-8.6087 -36.1883 -32) (-8.6087 -36.1883 171)" + "plane" "(9.56348 40 -144) (8.60694 36.1883 -144) (8.60945 36.1883 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2553,9 +3285,9 @@ entity side { "id" "8181" - "plane" "(8.60869 -36.1883 -32) (9.56522 -40 -32) (9.56522 -40 171)" + "plane" "(-8.60749 36.1883 -144) (-9.56409 40 -144) (-9.56445 40 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2564,9 +3296,9 @@ entity side { "id" "8180" - "plane" "(9.56522 -40 -32) (-9.56522 -40 -32) (-9.56522 -40 171)" + "plane" "(-9.5625 40 -144) (9.57031 40 -144) (9.56641 40 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2575,9 +3307,9 @@ entity side { "id" "8179" - "plane" "(-8.6087 -36.1883 -32) (8.60869 -36.1883 -32) (8.60869 -36.1883 171)" + "plane" "(8.60938 36.1883 -144) (-8.6075 36.1883 -144) (-8.60938 36.1883 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2596,10 +3328,10 @@ entity side { "id" "8190" - "plane" "(8.60869 -36.1882 -32) (9.56522 -40 -32) (27.7391 -32.3772 -32)" + "plane" "(-27.7383 32.3789 -144) (-24.8674 28.564 -144) (-8.60505 36.1876 -144)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2607,10 +3339,10 @@ entity side { "id" "8189" - "plane" "(9.56522 -40 171) (8.60869 -36.1872 171) (24.8696 -28.5654 171)" + "plane" "(-9.56543 40 59) (-8.60918 36.1878 59) (-24.8694 28.5652 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2618,9 +3350,9 @@ entity side { "id" "8188" - "plane" "(9.56522 -40 -32) (8.60869 -36.1865 -32) (8.60869 -36.1873 171)" + "plane" "(-9.56543 40 -144) (-8.60775 36.1863 -144) (-8.60903 36.1879 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2629,9 +3361,9 @@ entity side { "id" "8187" - "plane" "(24.8696 -28.5642 -32) (27.7391 -32.3773 -32) (27.7391 -32.3772 171)" + "plane" "(-24.8704 28.5626 -144) (-27.7413 32.3776 -144) (-27.7383 32.3789 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2640,9 +3372,9 @@ entity side { "id" "8186" - "plane" "(27.7391 -32.3772 -32) (9.56522 -40 -32) (9.56522 -40 171)" + "plane" "(-27.7383 32.3789 -144) (-9.56641 40 -144) (-9.56641 40 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2651,9 +3383,9 @@ entity side { "id" "8185" - "plane" "(8.60869 -36.1868 -32) (24.8696 -28.5639 -32) (24.8696 -28.5639 171)" + "plane" "(-8.60938 36.1855 -144) (-24.8674 28.564 -144) (-24.8672 28.5664 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2672,10 +3404,10 @@ entity side { "id" "8196" - "plane" "(39.2174 -17.1278 -32) (36.3478 -16.1751 -32) (24.8696 -28.5654 -32)" + "plane" "(-39.2109 17.1348 -144) (-36.342 16.1822 -144) (-24.8747 28.5586 -144)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2683,10 +3415,10 @@ entity side { "id" "8195" - "plane" "(27.7391 -32.3772 171) (24.8696 -28.5648 171) (36.3478 -16.1751 171)" + "plane" "(-27.7383 32.3711 59) (-24.8704 28.5625 59) (-36.3434 16.1801 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2694,9 +3426,9 @@ entity side { "id" "8194" - "plane" "(27.7391 -32.3772 -32) (24.8696 -28.5656 -32) (24.8696 -28.5669 171)" + "plane" "(-27.7383 32.3711 -144) (-24.871 28.5626 -144) (-24.8691 28.564 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2705,9 +3437,9 @@ entity side { "id" "8193" - "plane" "(36.3478 -16.1786 -32) (39.2174 -17.1315 -32) (39.2174 -17.1296 171)" + "plane" "(-36.3447 16.1793 -144) (-39.2152 17.1324 -144) (-39.2148 17.1328 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2716,9 +3448,9 @@ entity side { "id" "8192" - "plane" "(39.2174 -17.1278 -32) (27.7391 -32.3735 -32) (27.7391 -32.3772 171)" + "plane" "(-39.2109 17.1328 -144) (-27.7383 32.3711 -144) (-27.7383 32.375 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2727,9 +3459,9 @@ entity side { "id" "8191" - "plane" "(24.8696 -28.5657 -32) (36.3478 -16.1776 -32) (36.3478 -16.175 171)" + "plane" "(-24.8672 28.5664 -144) (-36.3444 16.1794 -144) (-36.3438 16.1797 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2748,10 +3480,10 @@ entity side { "id" "8202" - "plane" "(44 0.023572 -32) (40.1739 0.023572 -32) (36.3478 -16.179 -32)" + "plane" "(-36.3489 16.1786 -144) (-39.2162 17.1307 -144) (-44 -0.0234375 -144)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2759,10 +3491,10 @@ entity side { "id" "8201" - "plane" "(39.2174 -17.126 171) (36.3478 -16.1733 171) (40.1739 0.0235753 171)" + "plane" "(-39.2148 17.1328 59) (-36.3474 16.1807 59) (-40.1748 -0.0234375 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2770,9 +3502,9 @@ entity side { "id" "8200" - "plane" "(39.2174 -17.1296 -32) (36.3478 -16.1767 -32) (36.3478 -16.1779 171)" + "plane" "(-39.2188 17.127 -144) (-36.3499 16.1744 -144) (-36.348 16.1783 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2781,9 +3513,9 @@ entity side { "id" "8199" - "plane" "(40.1739 0.0235333 -32) (44 0.0235333 -32) (44 0.0235333 171)" + "plane" "(-40.1759 -0.0234985 -144) (-44 -0.0234985 -144) (-44 -0.0234985 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2792,9 +3524,9 @@ entity side { "id" "8198" - "plane" "(44 0.023572 -32) (39.2174 -17.1351 -32) (39.2174 -17.1278 171)" + "plane" "(-44 -0.0234375 -144) (-39.2158 17.1289 -144) (-39.2129 17.1328 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2803,9 +3535,9 @@ entity side { "id" "8197" - "plane" "(36.3478 -16.175 -32) (40.1739 0.0235329 -32) (40.1739 0.023572 171)" + "plane" "(-36.3506 16.1758 -144) (-40.1769 -0.0234985 -144) (-40.1758 -0.0234375 59)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2827,129 +3559,10 @@ entity } } entity -{ - "id" "1487" - "classname" "logic_relay" - "spawnflags" "0" - "targetname" "signs_on" - connections - { - "OnTrigger" "@video_splitterRunScriptCodeStartDepartureVideo(23,2,0)0-1" - } - "origin" "32 -128 33" - editor - { - "color" "220 30 220" - "visgroupid" "21" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[1500 15500]" - } -} -entity -{ - "id" "459" - "classname" "trigger_once" - "origin" "0 -600 208" - "spawnflags" "4097" - "StartDisabled" "0" - "targetname" "source_elevator_door_open_trigger" - connections - { - "OnTrigger" "logic_source_elevator_door_openTrigger0-1" - "OnTrigger" "signs_onTrigger0-1" - "OnTrigger" "light_elevator_fillTurnOn1.5-1" - } - solid - { - "id" "460" - side - { - "id" "640" - "plane" "(-64 -608 272) (-64 -592 272) (64 -592 272)" - "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "639" - "plane" "(-64 -592 144) (-64 -608 144) (64 -608 144)" - "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "638" - "plane" "(-64 -608 144) (-64 -592 144) (-64 -592 272)" - "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "637" - "plane" "(64 -592 144) (64 -608 144) (64 -608 272)" - "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "636" - "plane" "(-64 -592 144) (64 -592 144) (64 -592 272)" - "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "635" - "plane" "(64 -608 144) (-64 -608 144) (-64 -608 272)" - "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "20" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[1000 5000]" - } -} -entity { "id" "16046" "classname" "prop_dynamic" - "angles" "0 0 0" + "angles" "0 180 0" "DefaultAnim" "leave_idle" "DisableBoneFollowers" "0" "disablereceiveshadows" "0" @@ -2960,12 +3573,13 @@ entity "fademaxdist" "0" "fademindist" "-1" "fadescale" "1" - "HoldAnimation" "1" + "HoldAnimation" "0" "MaxAnimTime" "10" "MinAnimTime" "5" "model" "models/elevator/elevator_b.mdl" "parentname" "elevator_door" "PerformanceMode" "0" + "physdamagescale" "1.0" "pressuredelay" "0" "RandomAnimation" "0" "renderamt" "255" @@ -2978,7 +3592,7 @@ entity "spawnflags" "0" "StartDisabled" "0" "targetname" "elevator_model" - "origin" "1.90735e-005 0.166706 -111" + "origin" "0 -0.166698 -223" editor { "color" "220 30 220" @@ -2991,7 +3605,7 @@ entity { "id" "16055" "classname" "prop_static" - "angles" "0 120 0" + "angles" "0 180 0" "disableselfshadowing" "0" "disableshadows" "0" "disablevertexlighting" "0" @@ -3006,7 +3620,7 @@ entity "screenspacefade" "0" "skin" "0" "solid" "6" - "origin" "1.90735e-005 0.166706 -112" + "origin" "0 -0.166698 -224" editor { "color" "255 255 0" @@ -3017,27 +3631,6 @@ entity } } entity -{ - "id" "29" - "classname" "logic_relay" - "spawnflags" "0" - "targetname" "logic_source_elevator_door_open" - connections - { - "OnTrigger" "elevator_modelSetAnimationarrive0-1" - "OnTrigger" "elevator_tube_openerSetAnimationopen2-1" - "OnTrigger" "elevator_playerclipKill3.5-1" - } - "origin" "-16 -16 48" - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity { "id" "16050" "classname" "light" @@ -3050,13 +3643,15 @@ entity "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" "_zero_percent_distance" "0" + "angles" "0 0 0" "spawnflags" "0" "style" "0" - "origin" "0 0.166718 352" + "origin" "0 -0.166698 240" editor { - "color" "220 30 220" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 3500]" @@ -3082,8 +3677,8 @@ cameras } camera { - "position" "[181.387 -511.662 545.914]" - "look" "[73.6233 -390.287 393.494]" + "position" "[-3.8451 5.85845 1097.27]" + "look" "[-3.8451 5.85845 874.607]" } camera { diff --git a/packages/glass_hole/templates/hole_modern.vmf b/packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_exit/stair_dn.vmf similarity index 50% rename from packages/glass_hole/templates/hole_modern.vmf rename to packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_exit/stair_dn.vmf index 26ee16b622..0405eaa419 100644 --- a/packages/glass_hole/templates/hole_modern.vmf +++ b/packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_exit/stair_dn.vmf @@ -1,816 +1,649 @@ versioninfo { "editorversion" "400" - "editorbuild" "8973" - "mapversion" "31" + "editorbuild" "9672" + "mapversion" "4" "formatversion" "100" "prefab" "0" } visgroups { - visgroup - { - "name" "small" - "visgroupid" "7" - "color" "192 161 150" - } - visgroup - { - "name" "large_diagonal" - "visgroupid" "8" - "color" "199 84 85" - } - visgroup - { - "name" "large_cutout" - "visgroupid" "12" - "color" "243 240 209" - } - visgroup - { - "name" "large_square" - "visgroupid" "13" - "color" "84 101 90" - } } viewsettings { "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "4" + "nGridSpacing" "64" "bShow3DGrid" "0" } world { "id" "1" - "mapversion" "31" + "mapversion" "4" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" "maxblobcount" "250" "maxpropscreenwidth" "-1" "skyname" "sky_black_nofog" -} -entity -{ - "id" "2071" - "classname" "prop_static" - "angles" "0 270 0" - "disableflashlight" "0" - "disableselfshadowing" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "disableX360" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxcpulevel" "0" - "maxgpulevel" "0" - "mincpulevel" "0" - "mingpulevel" "0" - "model" "models/bee2/props_clean/barrier_hole_large.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "shadowdepthnocache" "0" - "skin" "0" - "solid" "6" - "origin" "64 0 0" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "2180" - "classname" "prop_static" - "angles" "0 270 0" - "disableflashlight" "0" - "disableselfshadowing" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "disableX360" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxcpulevel" "0" - "maxgpulevel" "0" - "mincpulevel" "0" - "mingpulevel" "0" - "model" "models/bee2/props_clean/barrier_hole_large.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "shadowdepthnocache" "0" - "skin" "0" - "solid" "6" - "origin" "64 128 128" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "2045" - "classname" "prop_static" - "angles" "0 270 0" - "disableflashlight" "0" - "disableselfshadowing" "0" - "disableshadowdepth" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "disableX360" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxcpulevel" "0" - "maxgpulevel" "0" - "mincpulevel" "0" - "mingpulevel" "0" - "model" "models/bee2/props_clean/barrier_hole_small.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "screenspacefade" "0" - "shadowdepthnocache" "0" - "skin" "0" - "solid" "6" - "origin" "64 0 0" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "1938" - "classname" "bee2_collision_bbox" - "coll_antlines" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "0" solid { - "id" "1922" + "id" "2" side { - "id" "2008" - "plane" "(60 32 -32) (60 32 32) (60 20 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "1" + "plane" "(96 512 32) (-96 512 32) (-96 576 32)" + "material" "METAL/BLACK_FLOOR_METAL_001D" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2007" - "plane" "(64 20 -32) (64 20 32) (64 32 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "2" + "plane" "(-96 576 0) (-96 512 0) (96 512 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2006" - "plane" "(60 32 -32) (60 20 -32) (64 20 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "3" + "plane" "(96 512 0) (-96 512 0) (-96 512 32)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[-1 0 0 -768] 0.25" + "vaxis" "[0 0 -1 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2005" - "plane" "(64 32 32) (64 20 32) (60 20 32)" - "material" "TOOLS/TOOLSCLIP" + "id" "4" + "plane" "(96 576 0) (96 512 0) (96 512 32)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2004" - "plane" "(60 32 32) (60 32 -32) (64 32 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "5" + "plane" "(-96 512 0) (-96 576 0) (-96 576 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2003" - "plane" "(64 20 32) (64 20 -32) (60 20 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "6" + "plane" "(-96 576 0) (96 576 0) (96 576 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 30 220" + "color" "0 223 200" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "1925" + "id" "3" side { - "id" "2014" - "plane" "(60 20 12) (60 20 20) (60 12 20)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "360" + "plane" "(64 384 160) (64 512 160) (96 512 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2013" - "plane" "(64 12 12) (64 12 20) (64 20 20)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "359" + "plane" "(96 384 32) (96 384 224) (96 512 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2012" - "plane" "(60 20 12) (60 12 12) (64 12 12)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "358" + "plane" "(64 512 32) (64 512 160) (64 384 160)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[0 -1 0 512] 0.25" + "vaxis" "[0 0 -1 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2011" - "plane" "(64 20 20) (64 12 20) (60 12 20)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "357" + "plane" "(96 512 224) (64 512 160) (64 512 32)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2010" - "plane" "(60 20 20) (60 20 12) (64 20 12)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "356" + "plane" "(64 384 32) (64 384 160) (96 384 223.988)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2009" - "plane" "(64 12 20) (64 12 12) (60 12 12)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "355" + "plane" "(64 512 32) (64 384 32) (96 384 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 30 220" + "color" "0 223 200" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "1927" + "id" "4" side { - "id" "2020" - "plane" "(60 -12 -20) (60 -12 -12) (60 -20 -12)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "366" + "plane" "(64 512 -96) (64 384 -96) (96 384 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2019" - "plane" "(64 -20 -20) (64 -20 -12) (64 -12 -12)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "365" + "plane" "(96 512 32) (96 512 -96) (96 384 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2018" - "plane" "(60 -12 -20) (60 -20 -20) (64 -20 -20)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "364" + "plane" "(64 384 32) (64 384 -96) (64 512 -96)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[0 -1 0 512] 0.25" + "vaxis" "[0 0 -1 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2017" - "plane" "(64 -12 -12) (64 -20 -12) (60 -20 -12)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "363" + "plane" "(64 512 32) (64 512 -96) (96 512 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2016" - "plane" "(60 -12 -12) (60 -12 -20) (64 -12 -20)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "362" + "plane" "(96 384 32) (96 384 -96) (64 384 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2015" - "plane" "(64 -20 -12) (64 -20 -20) (60 -20 -20)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "361" + "plane" "(64 384 32) (64 512 32) (96 512 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 30 220" + "color" "0 223 200" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "1923" + "id" "5" side { - "id" "2026" - "plane" "(60 -20 -32) (60 -20 32) (60 -32 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "372" + "plane" "(-64 512 160) (-64 384 160) (-96 384 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2025" - "plane" "(64 -32 -32) (64 -32 32) (64 -20 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "371" + "plane" "(-64 384 32) (-64 384 160) (-64 512 160)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[0 -1 0 512] 0.25" + "vaxis" "[0 0 -1 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2024" - "plane" "(60 -20 -32) (60 -32 -32) (64 -32 -32)" - "material" "TOOLS/TOOLSCLIP" + "id" "370" + "plane" "(-96 512 32) (-96 512 224) (-96 384 224)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2023" - "plane" "(64 -20 32) (64 -32 32) (60 -32 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "369" + "plane" "(-64 512 32) (-64 512 160) (-96 512 224)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2022" - "plane" "(60 -20 32) (60 -20 -32) (64 -20 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "368" + "plane" "(-96 384 224) (-64 384 160) (-64 384 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2021" - "plane" "(64 -32 32) (64 -32 -32) (60 -32 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "367" + "plane" "(-96 512 32) (-96 384 32) (-64 384 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 30 220" + "color" "0 223 200" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "1929" + "id" "6" side { - "id" "2032" - "plane" "(60 -12 12) (60 -12 20) (60 -20 20)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "378" + "plane" "(-96 512 -96) (-96 384 -96) (-64 384 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2031" - "plane" "(64 -20 12) (64 -20 20) (64 -12 20)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "377" + "plane" "(-64 512 32) (-64 512 -96) (-64 384 -96)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[0 -1 0 512] 0.25" + "vaxis" "[0 0 -1 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2030" - "plane" "(60 -12 12) (60 -20 12) (64 -20 12)" - "material" "TOOLS/TOOLSCLIP" + "id" "376" + "plane" "(-96 384 32) (-96 384 -96) (-96 512 -96)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2029" - "plane" "(64 -12 20) (64 -20 20) (60 -20 20)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "375" + "plane" "(-96 512 32) (-96 512 -96) (-64 512 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2028" - "plane" "(60 -12 20) (60 -12 12) (64 -12 12)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "374" + "plane" "(-64 384 32) (-64 384 -96) (-96 384 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2027" - "plane" "(64 -20 20) (64 -20 12) (60 -20 12)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "373" + "plane" "(-96 384 32) (-96 512 32) (-64 512 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 30 220" + "color" "0 223 200" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "1924" + "id" "7" side { - "id" "2038" - "plane" "(60 20 20) (60 20 32) (60 -20 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 24] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "384" + "plane" "(-64 640 32) (-64 656 32) (64 656 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2037" - "plane" "(64 -20 20) (64 -20 32) (64 20 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -24] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "383" + "plane" "(64 656 16) (-64 656 16) (-64 640 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2036" - "plane" "(60 20 20) (60 -20 20) (64 -20 20)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 -40] 0.25" + "id" "382" + "plane" "(-64 656 16) (64 656 16) (64 656 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2035" - "plane" "(64 20 32) (64 -20 32) (60 -20 32)" - "material" "TOOLS/TOOLSCLIP" + "id" "381" + "plane" "(64 656 16) (64 640 16) (64 640 32)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 -40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2034" - "plane" "(60 20 32) (60 20 20) (64 20 20)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -24] 0.25" - "vaxis" "[1 0 0 -40] 0.25" + "id" "380" + "plane" "(-64 640 16) (-64 656 16) (-64 656 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2033" - "plane" "(64 -20 32) (64 -20 20) (60 -20 20)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 24] 0.25" - "vaxis" "[1 0 0 -40] 0.25" + "id" "379" + "plane" "(64 640 16) (-64 640 16) (-64 640 32)" + "material" "METAL/BLACK_FLOOR_METAL_001D" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 30 220" + "color" "0 223 200" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "1928" + "id" "8" side { - "id" "2044" - "plane" "(60 20 -20) (60 20 -12) (60 12 -12)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "390" + "plane" "(-64 576 32) (-64 640 32) (64 640 32)" + "material" "METAL/BLACK_FLOOR_METAL_001D" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2043" - "plane" "(64 12 -20) (64 12 -12) (64 20 -12)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "389" + "plane" "(-64 640 16) (-64 576 16) (64 576 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2042" - "plane" "(60 20 -20) (60 12 -20) (64 12 -20)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "388" + "plane" "(64 640 16) (64 576 16) (64 576 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2041" - "plane" "(64 20 -12) (64 12 -12) (60 12 -12)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "387" + "plane" "(-64 576 16) (-64 640 16) (-64 640 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2040" - "plane" "(60 20 -12) (60 20 -20) (64 20 -20)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "386" + "plane" "(64 576 16) (-64 576 16) (-64 576 32)" + "material" "METAL/BLACK_FLOOR_METAL_001D" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2039" - "plane" "(64 12 -12) (64 12 -20) (60 12 -20)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "385" + "plane" "(-64 640 16) (64 640 16) (64 640 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 30 220" + "color" "0 223 200" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "1926" + "id" "9" side { - "id" "2050" - "plane" "(60 20 -32) (60 20 -20) (60 -20 -20)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 40] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "396" + "plane" "(-64 320 160) (-256 320 160) (-256 384 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0.265156 0 -0.964205 30.06] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2049" - "plane" "(64 -20 -32) (64 -20 -20) (64 20 -20)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -40] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "395" + "plane" "(-256 384 -96) (-256 320 -96) (-64 320 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-0.223376 0 -0.974732 28.5921] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2048" - "plane" "(60 20 -32) (60 -20 -32) (64 -20 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 -24] 0.25" + "id" "394" + "plane" "(-64 320 -96) (-256 320 -96) (-256 320 160)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2047" - "plane" "(64 20 -20) (64 -20 -20) (60 -20 -20)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 -24] 0.25" + "id" "393" + "plane" "(-64 384 -96) (-64 320 -96) (-64 320 160)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[0 -1 0 512] 0.25" + "vaxis" "[0 0 -1 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2046" - "plane" "(60 20 -20) (60 20 -32) (64 20 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -40] 0.25" - "vaxis" "[1 0 0 -24] 0.25" + "id" "392" + "plane" "(-256 320 -96) (-256 384 -96) (-256 384 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2045" - "plane" "(64 -20 -20) (64 -20 -32) (60 -20 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 40] 0.25" - "vaxis" "[1 0 0 -24] 0.25" + "id" "391" + "plane" "(-256 384 -96) (-64 384 -96) (-64 384 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 30 220" + "color" "0 223 200" "visgroupshown" "1" "visgroupautoshown" "1" } } - editor - { - "color" "220 30 220" - "visgroupid" "7" - "visgroupshown" "1" - "visgroupautoshown" "1" - "comments" "Contents set by the compiler." - "logicalpos" "[0 4000]" - } -} -entity -{ - "id" "1986" - "classname" "bee2_collision_bbox" - "coll_antlines" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "0" solid { - "id" "1975" + "id" "10" side { - "id" "2086" - "plane" "(60 32 72) (60 32 96) (60 0 96)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 -16] 0.25" + "id" "402" + "plane" "(-96 576 224) (-96 656 224) (96 656 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -818,75 +651,75 @@ entity } side { - "id" "2085" - "plane" "(64 0 72) (64 0 96) (64 32 96)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "401" + "plane" "(64 656 160) (96 656 224) (-96 656 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2084" - "plane" "(60 32 72) (60 0 72) (64 0 72)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "id" "400" + "plane" "(96 576 224) (96 656 224) (64 656 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2083" - "plane" "(64 32 96) (64 0 96) (60 0 96)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "id" "399" + "plane" "(-64 656 160) (-96 656 224) (-96 576 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2082" - "plane" "(60 32 96) (60 32 72) (64 32 72)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 16] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "id" "398" + "plane" "(-96 576 224) (96 576 224) (64 576 160)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2081" - "plane" "(64 0 96) (64 0 72) (60 0 72)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 -16] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "id" "397" + "plane" "(64 656 160) (-64 656 160) (-64 576 160)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[-1 0 0 -512] 0.25" + "vaxis" "[0 1 0 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 30 220" + "color" "0 223 200" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "1976" + "id" "11" side { - "id" "2092" - "plane" "(60 48 64) (60 48 96) (60 32 96)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" + "id" "408" + "plane" "(96 512 232) (64 512 232) (64 576 232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -894,75 +727,75 @@ entity } side { - "id" "2091" - "plane" "(64 32 64) (64 32 96) (64 48 96)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "407" + "plane" "(96 576 224) (64 576 224) (64 512 224)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 -512] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2090" - "plane" "(60 48 64) (60 32 64) (64 32 64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "406" + "plane" "(64 576 224) (96 576 224) (96 576 232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2089" - "plane" "(64 48 96) (64 32 96) (60 32 96)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "405" + "plane" "(96 512 224) (64 512 224) (64 512 232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2088" - "plane" "(60 48 96) (60 48 64) (64 48 64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "404" + "plane" "(96 576 224) (96 512 224) (96 512 232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2087" - "plane" "(64 32 96) (64 32 64) (60 32 64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "403" + "plane" "(64 512 224) (64 576 224) (64 576 232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 30 220" + "color" "0 223 200" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "1977" + "id" "12" side { - "id" "2098" - "plane" "(60 64 48) (60 64 96) (60 48 96)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 -32] 0.25" + "id" "414" + "plane" "(-96 384 224) (-96 512 224) (96 512 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -970,75 +803,75 @@ entity } side { - "id" "2097" - "plane" "(64 48 48) (64 48 96) (64 64 96)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "413" + "plane" "(64 512 160) (-64 512 160) (-64 384 160)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[-1 0 0 -512] 0.25" + "vaxis" "[0 1 0 256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2096" - "plane" "(60 64 48) (60 48 48) (64 48 48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "id" "412" + "plane" "(-64 512 160) (64 512 160) (96 512 224)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2095" - "plane" "(64 64 96) (64 48 96) (60 48 96)" - "material" "TOOLS/TOOLSCLIP" + "id" "411" + "plane" "(64 512 160) (64 384 160) (96 384 224)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2094" - "plane" "(60 64 96) (60 64 48) (64 64 48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 32] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "id" "410" + "plane" "(-64 384 160) (-64 512 160) (-96 512 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2093" - "plane" "(64 48 96) (64 48 48) (60 48 48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 -32] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "id" "409" + "plane" "(64 384 160) (-64 384 160) (-96 384 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 30 220" + "color" "0 223 200" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "1978" + "id" "13" side { - "id" "2104" - "plane" "(60 96 32) (60 96 64) (60 64 64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 32] 0.25" + "id" "420" + "plane" "(96 512 224) (96 576 224) (112 576 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1046,75 +879,75 @@ entity } side { - "id" "2103" - "plane" "(64 64 32) (64 64 64) (64 96 64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "419" + "plane" "(112 576 0) (96 576 0) (96 512 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2102" - "plane" "(60 96 32) (60 64 32) (64 64 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "id" "418" + "plane" "(96 576 0) (112 576 0) (112 576 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2101" - "plane" "(64 96 64) (64 64 64) (60 64 64)" - "material" "TOOLS/TOOLSCLIP" + "id" "417" + "plane" "(112 576 0) (112 512 0) (112 512 224)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2100" - "plane" "(60 96 64) (60 96 32) (64 96 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -32] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "id" "416" + "plane" "(96 512 0) (96 576 0) (96 576 224)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 -1 0 512] 0.25" + "vaxis" "[0 0 -1 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2099" - "plane" "(64 64 64) (64 64 32) (60 64 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "id" "415" + "plane" "(112 512 0) (96 512 0) (96 512 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 30 220" + "color" "0 223 200" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "1980" + "id" "14" side { - "id" "2110" - "plane" "(60 96 0) (60 96 32) (60 72 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" + "id" "426" + "plane" "(-112 512 224) (-112 576 224) (-96 576 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1122,248 +955,227 @@ entity } side { - "id" "2109" - "plane" "(64 72 0) (64 72 32) (64 96 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "425" + "plane" "(-96 576 32) (-112 576 32) (-112 512 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2108" - "plane" "(60 96 0) (60 72 0) (64 72 0)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "424" + "plane" "(-112 576 32) (-96 576 32) (-96 576 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2107" - "plane" "(64 96 32) (64 72 32) (60 72 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "423" + "plane" "(-96 576 32) (-96 512 32) (-96 512 224)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 -1 0 512] 0.25" + "vaxis" "[0 0 -1 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2106" - "plane" "(60 96 32) (60 96 0) (64 96 0)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "422" + "plane" "(-112 512 32) (-112 576 32) (-112 576 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2105" - "plane" "(64 72 32) (64 72 0) (60 72 0)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "421" + "plane" "(-96 512 32) (-112 512 32) (-112 512 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 30 220" + "color" "0 223 200" "visgroupshown" "1" "visgroupautoshown" "1" } } - editor - { - "color" "220 30 220" - "visgroupid" "12" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 7000]" - } -} -entity -{ - "id" "2005" - "classname" "bee2_collision_bbox" - "coll_antlines" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "0" solid { - "id" "2006" + "id" "15" side { - "id" "2146" - "plane" "(60 32 72) (60 32 96) (60 0 96)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 -16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "432" + "plane" "(256 320 160) (64 320 160) (64 384 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-0.265156 0 -0.964205 -30.06] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2145" - "plane" "(64 0 72) (64 0 96) (64 32 96)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "431" + "plane" "(64 384 -96) (64 320 -96) (256 320 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0.223376 0 -0.974732 -28.5921] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2144" - "plane" "(60 32 72) (60 0 72) (64 0 72)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "id" "430" + "plane" "(256 320 -96) (64 320 -96) (64 320 160)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2143" - "plane" "(64 32 96) (64 0 96) (60 0 96)" - "material" "TOOLS/TOOLSCLIP" + "id" "429" + "plane" "(256 384 -96) (256 320 -96) (256 320 160)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2142" - "plane" "(60 32 96) (60 32 72) (64 32 72)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 16] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "id" "428" + "plane" "(64 320 -96) (64 384 -96) (64 384 160)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[0 -1 0 512] 0.25" + "vaxis" "[0 0 -1 -128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2141" - "plane" "(64 0 96) (64 0 72) (60 0 72)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 -16] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "id" "427" + "plane" "(64 384 -96) (256 384 -96) (256 384 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 30 220" + "color" "0 223 200" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "2007" + "id" "16" side { - "id" "2152" - "plane" "(60 64 64) (60 64 96) (60 32 96)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "438" + "plane" "(-64 384 -96) (-64 512 -96) (64 512 -96)" + "material" "METAL/BLACK_FLOOR_METAL_001D" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2151" - "plane" "(64 32 64) (64 32 96) (64 64 96)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "437" + "plane" "(64 512 -112) (-64 512 -112) (-64 384 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2150" - "plane" "(60 64 64) (60 32 64) (64 32 64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "436" + "plane" "(-64 512 -112) (64 512 -112) (64 512 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2149" - "plane" "(64 64 96) (64 32 96) (60 32 96)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "435" + "plane" "(64 512 -112) (64 384 -112) (64 384 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2148" - "plane" "(60 64 96) (60 64 64) (64 64 64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "434" + "plane" "(-64 384 -112) (-64 512 -112) (-64 512 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2147" - "plane" "(64 32 96) (64 32 64) (60 32 64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "433" + "plane" "(64 384 -112) (-64 384 -112) (-64 384 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 30 220" + "color" "0 223 200" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "2008" + "id" "17" side { - "id" "2158" - "plane" "(60 64 48) (60 64 64) (60 48 64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 -32] 0.25" + "id" "444" + "plane" "(-64 576 232) (-64 584 232) (64 584 232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1371,75 +1183,75 @@ entity } side { - "id" "2157" - "plane" "(64 48 48) (64 48 64) (64 64 64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "443" + "plane" "(64 584 224) (-64 584 224) (-64 576 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2156" - "plane" "(60 64 48) (60 48 48) (64 48 48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "id" "442" + "plane" "(-64 584 224) (64 584 224) (64 584 232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2155" - "plane" "(64 64 64) (64 48 64) (60 48 64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "id" "441" + "plane" "(-64 576 224) (-64 584 224) (-64 584 232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2154" - "plane" "(60 64 64) (60 64 48) (64 64 48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 32] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "id" "440" + "plane" "(64 584 224) (64 576 224) (64 576 232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2153" - "plane" "(64 48 64) (64 48 48) (60 48 48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 -32] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "id" "439" + "plane" "(64 576 224) (-64 576 224) (-64 576 232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 30 220" + "color" "0 223 200" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "2009" + "id" "18" side { - "id" "2164" - "plane" "(60 96 32) (60 96 96) (60 64 96)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 32] 0.25" + "id" "450" + "plane" "(-64 504 232) (-64 512 232) (64 512 232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1447,248 +1259,1068 @@ entity } side { - "id" "2163" - "plane" "(64 64 32) (64 64 96) (64 96 96)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "449" + "plane" "(64 512 224) (-64 512 224) (-64 504 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2162" - "plane" "(60 96 32) (60 64 32) (64 64 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "id" "448" + "plane" "(-64 512 224) (64 512 224) (64 512 232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2161" - "plane" "(64 96 96) (64 64 96) (60 64 96)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "id" "447" + "plane" "(-64 504 224) (-64 512 224) (-64 512 232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2160" - "plane" "(60 96 96) (60 96 32) (64 96 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -32] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "id" "446" + "plane" "(64 512 224) (64 504 224) (64 504 232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2159" - "plane" "(64 64 96) (64 64 32) (60 64 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "id" "445" + "plane" "(64 504 224) (-64 504 224) (-64 504 232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19" + side + { + "id" "456" + "plane" "(256 320 1056) (-256 320 1056) (-256 384 1056)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "455" + "plane" "(-256 384 160) (-256 320 160) (256 320 160)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "454" + "plane" "(256 320 160) (-256 320 160) (-256 320 1056)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -310.857] 0.35" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "453" + "plane" "(256 384 160) (256 320 160) (256 320 1056)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-0.192745 0 -0.981248 -36.666] 0.343921" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "452" + "plane" "(-256 320 160) (-256 384 160) (-256 384 1056)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0.192745 0 -0.981248 -8.53378] 0.343921" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "451" + "plane" "(-256 384 160) (256 384 160) (256 384 1056)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -54.8571] 0.35" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "20" + side + { + "id" "462" + "plane" "(256 320 -96) (-256 320 -96) (-256 384 -96)" + "material" "METAL/BLACK_FLOOR_METAL_001D" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "461" + "plane" "(-256 384 -864) (-256 320 -864) (256 320 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "460" + "plane" "(256 320 -864) (-256 320 -864) (-256 320 -96)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "459" + "plane" "(256 384 -864) (256 320 -864) (256 320 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0.223376 0 -0.974732 -28.5921] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "458" + "plane" "(-256 320 -864) (-256 384 -864) (-256 384 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-0.223376 0 -0.974732 28.5921] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "457" + "plane" "(-256 384 -864) (256 384 -864) (256 384 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "21" + side + { + "id" "468" + "plane" "(-64 512 -96) (-64 512 0) (64 512 0)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[-1 0 0 -768] 0.25" + "vaxis" "[0 0 -1 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "467" + "plane" "(64 528 -96) (64 528 0) (-64 528 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "466" + "plane" "(64 512 0) (-64 512 0) (-64 528 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "465" + "plane" "(64 528 0) (64 528 -96) (64 512 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "464" + "plane" "(-64 512 0) (-64 512 -96) (-64 528 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "463" + "plane" "(64 528 -96) (-64 528 -96) (-64 512 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "22" + side + { + "id" "474" + "plane" "(-64 512 232) (-96 512 232) (-96 576 232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "473" + "plane" "(-64 576 224) (-96 576 224) (-96 512 224)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 -512] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "472" + "plane" "(-96 576 224) (-64 576 224) (-64 576 232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "471" + "plane" "(-64 512 224) (-96 512 224) (-96 512 232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "470" + "plane" "(-96 512 224) (-96 576 224) (-96 576 232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "469" + "plane" "(-64 576 224) (-64 512 224) (-64 512 232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "41" + side + { + "id" "480" + "plane" "(-64 512 222) (-64 576 222) (-64 576 228)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 14] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "479" + "plane" "(64 576 222) (64 512 222) (64 512 228)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "478" + "plane" "(-64 512 228) (-64 576 228) (64 576 228)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -16] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "477" + "plane" "(-64 576 222) (-64 512 222) (64 512 222)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "476" + "plane" "(64 512 228) (64 512 222) (-64 512 222)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 0 -1 -16] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "475" + "plane" "(-64 576 228) (-64 576 222) (64 576 222)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 0 1 16] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 219 132" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "42" + side + { + "id" "486" + "plane" "(-64 512 232) (-64 576 232) (-64 576 238)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "485" + "plane" "(64 576 232) (64 512 232) (64 512 238)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "484" + "plane" "(-64 512 238) (-64 576 238) (64 576 238)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "483" + "plane" "(-64 576 232) (-64 512 232) (64 512 232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "482" + "plane" "(64 512 238) (64 512 232) (-64 512 232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "481" + "plane" "(-64 576 238) (-64 576 232) (64 576 232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 219 132" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "43" + side + { + "id" "492" + "plane" "(64 576 160) (64 656 160) (96 656 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "491" + "plane" "(64 656 32) (64 576 32) (96 576 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "490" + "plane" "(96 656 32) (96 576 32) (96 576 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "489" + "plane" "(64 576 32) (64 656 32) (64 656 160)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 -1 0 512] 0.25" + "vaxis" "[0 0 -1 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "488" + "plane" "(96 576 32) (64 576 32) (64 576 160)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "487" + "plane" "(96 656 224) (64 656 160) (64 656 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 115 244" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "44" + side + { + "id" "498" + "plane" "(-64 656 160) (-64 576 160) (-96 576 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 62] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "497" + "plane" "(-96 656 32) (-96 576 32) (-64 576 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -62] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "496" + "plane" "(-96 576 32) (-96 656 32) (-96 656 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "495" + "plane" "(-64 656 32) (-64 576 32) (-64 576 160)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 -1 0 512] 0.25" + "vaxis" "[0 0 -1 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "494" + "plane" "(-96 656 32) (-64 656 32) (-64 656 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "493" + "plane" "(-96 576 224) (-64 576 160) (-64 576 32)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } editor { - "color" "220 30 220" + "color" "0 115 244" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "2010" + "id" "45" side { - "id" "2170" - "plane" "(60 96 0) (60 96 32) (60 72 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "504" + "plane" "(64 656 160) (-64 656 160) (-64 672 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2169" - "plane" "(64 72 0) (64 72 32) (64 96 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "503" + "plane" "(64 672 32) (-64 672 32) (-64 656 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2168" - "plane" "(60 96 0) (60 72 0) (64 72 0)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "502" + "plane" "(-64 672 32) (64 672 32) (64 672 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2167" - "plane" "(64 96 32) (64 72 32) (60 72 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "501" + "plane" "(64 656 32) (-64 656 32) (-64 656 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2166" - "plane" "(60 96 32) (60 96 0) (64 96 0)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "500" + "plane" "(64 672 32) (64 656 32) (64 656 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2165" - "plane" "(64 72 32) (64 72 0) (60 72 0)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "499" + "plane" "(-64 656 32) (-64 672 32) (-64 672 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 30 220" + "color" "0 223 200" "visgroupshown" "1" "visgroupautoshown" "1" } } +} +entity +{ + "id" "23" + "classname" "light_spot" + "_cone" "80" + "_constant_attn" "100000" + "_exponent" "1" + "_inner_cone" "1" + "_light" "255 247 217 25" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "-75 270 -90" + "pitch" "-75" + "origin" "0 568 217.411" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "30" + "classname" "env_soundscape" + "angles" "0 0 0" + "radius" "128" + "soundscape" "industrial_gen_01" + "origin" "3.5996 471 60.089" editor { "color" "220 30 220" - "visgroupid" "13" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 7000]" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "46" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/hanging_walkway_end_cap.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "0 576 36" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +entity +{ + "id" "50" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/hanging_stair_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "0 384 -28" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +entity +{ + "id" "54" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/hanging_walkway_32b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "0 528 36" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +entity +{ + "id" "58" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/hanging_walkway_32b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "0 560 36" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +entity +{ + "id" "62" + "classname" "prop_static" + "angles" "90 0 0" + "disableshadows" "1" + "drawinfastreflection" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_lab/glass_lightcover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "origin" "0 528 224" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2500 -12768]" + } +} +entity +{ + "id" "66" + "classname" "prop_static" + "angles" "90 0 0" + "disableshadows" "1" + "drawinfastreflection" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_lab/glass_lightcover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "origin" "0 560 224" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2500 -12768]" } } entity { - "id" "2033" - "classname" "bee2_collision_bbox" - "coll_antlines" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "0" + "id" "70" + "classname" "func_detail" solid { - "id" "2020" + "id" "71" side { - "id" "2206" - "plane" "(60 96 0) (60 96 64) (60 72 64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "510" + "plane" "(-64 656 65) (-64 656 54) (-57 656 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2205" - "plane" "(64 72 0) (64 72 64) (64 96 64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "509" + "plane" "(-64 640 54) (-64 640 65) (-60 640 65)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2204" - "plane" "(60 96 0) (60 72 0) (64 72 0)" - "material" "TOOLS/TOOLSCLIP" + "id" "508" + "plane" "(-64 640 65) (-64 640 54) (-64 656 54)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2203" - "plane" "(64 96 64) (64 72 64) (60 72 64)" - "material" "TOOLS/TOOLSCLIP" + "id" "507" + "plane" "(-60 656 65) (-57 656 54) (-57 640 54)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "vaxis" "[0.263117 0 -0.964764 30.321] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2202" - "plane" "(60 96 64) (60 96 0) (64 96 0)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "506" + "plane" "(-60 640 65) (-64 640 65) (-64 656 65)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2201" - "plane" "(64 72 64) (64 72 0) (60 72 0)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "505" + "plane" "(-57 656 54) (-64 656 54) (-64 640 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 30 220" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "2021" + "id" "72" side { - "id" "2212" - "plane" "(60 128 32) (60 128 56) (60 64 56)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 16] 0.25" + "id" "516" + "plane" "(64 656 160) (34 656 160) (34 656 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "515" + "plane" "(41 640 122) (34 640 128) (34 640 160)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "514" + "plane" "(64 640 160) (34 640 160) (34 656 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1696,10 +2328,21 @@ entity } side { - "id" "2211" - "plane" "(64 64 32) (64 64 56) (64 128 56)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -16] 0.25" + "id" "513" + "plane" "(34 640 160) (34 640 128) (34 656 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "512" + "plane" "(41 656 122) (34 656 128) (34 640 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.759256 0 0.650791 -30.8152] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1707,316 +2350,335 @@ entity } side { - "id" "2210" - "plane" "(60 128 32) (60 64 32) (64 64 32)" - "material" "TOOLS/TOOLSCLIP" + "id" "511" + "plane" "(64 656 160) (41 656 122) (41 640 122)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-0.517802 0 -0.8555 -61.7213] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "73" + side + { + "id" "522" + "plane" "(-57 640 100) (-60 640 89) (-64 640 89)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "521" + "plane" "(-64 656 100) (-64 656 89) (-60 656 89)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "520" + "plane" "(-64 640 100) (-64 640 89) (-64 656 89)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2209" - "plane" "(64 128 56) (64 64 56) (60 64 56)" - "material" "TOOLS/TOOLSCLIP" + "id" "519" + "plane" "(-57 656 100) (-60 656 89) (-60 640 89)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "vaxis" "[-0.263117 0 -0.964764 -30.321] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2208" - "plane" "(60 128 56) (60 128 32) (64 128 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -16] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "id" "518" + "plane" "(-60 656 89) (-64 656 89) (-64 640 89)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2207" - "plane" "(64 64 56) (64 64 32) (60 64 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 16] 0.25" - "vaxis" "[1 0 0 16] 0.25" + "id" "517" + "plane" "(-57 640 100) (-64 640 100) (-64 656 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 30 220" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "2024" + "id" "74" side { - "id" "2218" - "plane" "(60 80 48) (60 80 80) (60 48 80)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "528" + "plane" "(-60 640 89) (-61 640 77) (-64 640 77)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2217" - "plane" "(64 48 48) (64 48 80) (64 80 80)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "527" + "plane" "(-64 656 89) (-64 656 77) (-61 656 77)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2216" - "plane" "(60 80 48) (60 48 48) (64 48 48)" - "material" "TOOLS/TOOLSCLIP" + "id" "526" + "plane" "(-64 640 89) (-64 640 77) (-64 656 77)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2215" - "plane" "(64 80 80) (64 48 80) (60 48 80)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "id" "525" + "plane" "(-61 656 77) (-64 656 77) (-64 640 77)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2214" - "plane" "(60 80 80) (60 80 48) (64 80 48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 -32] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "id" "524" + "plane" "(-60 656 89) (-61 656 77) (-61 640 77)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-0.0830455 0 -0.996546 10.6298] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2213" - "plane" "(64 48 80) (64 48 48) (60 48 48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 32] 0.25" - "vaxis" "[1 0 0 -32] 0.25" + "id" "523" + "plane" "(-60 640 89) (-64 640 89) (-64 656 89)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 30 220" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "2022" + "id" "75" side { - "id" "2224" - "plane" "(60 64 72) (60 64 96) (60 0 96)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 -16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "534" + "plane" "(12 656 160) (0 656 160) (0 656 138)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2223" - "plane" "(64 0 72) (64 0 96) (64 64 96)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 16] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "533" + "plane" "(12 640 137) (0 640 138) (0 640 160)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2222" - "plane" "(60 64 72) (60 0 72) (64 0 72)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "id" "532" + "plane" "(12 640 160) (0 640 160) (0 656 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2221" - "plane" "(64 64 96) (64 0 96) (60 0 96)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "id" "531" + "plane" "(12 656 137) (0 656 138) (0 640 138)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.996546 0 0.0830455 -0.442116] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2220" - "plane" "(60 64 96) (60 64 72) (64 64 72)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 16] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "id" "530" + "plane" "(0 640 160) (0 640 138) (0 656 138)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2219" - "plane" "(64 0 96) (64 0 72) (60 0 72)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 -16] 0.25" - "vaxis" "[1 0 0 -16] 0.25" + "id" "529" + "plane" "(12 656 160) (12 656 137) (12 640 137)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 30 220" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "2023" + "id" "76" side { - "id" "2230" - "plane" "(60 56 64) (60 56 128) (60 32 128)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "540" + "plane" "(24 656 160) (12 656 160) (12 656 137)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2229" - "plane" "(64 32 64) (64 32 128) (64 56 128)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "539" + "plane" "(24 640 133) (12 640 137) (12 640 160)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2228" - "plane" "(60 56 64) (60 32 64) (64 32 64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "538" + "plane" "(24 640 160) (12 640 160) (12 656 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2227" - "plane" "(64 56 128) (64 32 128) (60 32 128)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "537" + "plane" "(24 656 133) (12 656 137) (12 640 137)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.948683 0 0.316227 -6.56857] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2226" - "plane" "(60 56 128) (60 56 64) (64 56 64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "536" + "plane" "(12 640 160) (12 640 137) (12 656 137)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "2225" - "plane" "(64 32 128) (64 32 64) (60 32 64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" + "id" "535" + "plane" "(24 656 160) (24 656 133) (24 640 133)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 30 220" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } - editor - { - "color" "220 30 220" - "visgroupid" "8" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 10000]" - } -} -entity -{ - "id" "1729" - "classname" "func_detail" solid { - "id" "1852" - side - { - "id" "1885" - "plane" "(60 49 49) (60 64 28) (60 96 28)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "77" side { - "id" "1884" - "plane" "(68 64 28) (68 49 49) (68 64 64)" + "id" "546" + "plane" "(60 656 89) (61 656 77) (64 656 77)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2024,30 +2686,30 @@ entity } side { - "id" "1883" - "plane" "(68 64 28) (60 64 28) (60 49 49)" - "material" "TOOLS/TOOLSNODRAW" + "id" "545" + "plane" "(64 640 89) (64 640 77) (61 640 77)" + "material" "METAL/BLACK_WALL_METAL_002B" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0.624695 -0.780869 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1882" - "plane" "(68 49 49) (60 49 49) (60 64 64)" + "id" "544" + "plane" "(64 656 89) (64 656 77) (64 640 77)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1881" - "plane" "(60 64 28) (68 64 28) (68 96 28)" + "id" "543" + "plane" "(64 656 77) (61 656 77) (61 640 77)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -2057,22 +2719,22 @@ entity } side { - "id" "1880" - "plane" "(60 96 64) (68 96 64) (68 64 64)" + "id" "542" + "plane" "(60 640 89) (61 640 77) (61 656 77)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0.707107 -0.707107 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0.0830455 0 -0.996546 -10.6298] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1879" - "plane" "(60 96 28) (68 96 28) (68 96 64)" + "id" "541" + "plane" "(64 640 89) (60 640 89) (60 656 89)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2086,24 +2748,13 @@ entity } solid { - "id" "1838" - side - { - "id" "1878" - "plane" "(60 28 64) (60 49 49) (60 64 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "78" side { - "id" "1877" - "plane" "(68 64 64) (68 49 49) (68 28 64)" + "id" "552" + "plane" "(57 656 100) (60 656 89) (64 656 89)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2111,21 +2762,21 @@ entity } side { - "id" "1876" - "plane" "(60 28 64) (68 28 64) (68 49 49)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -0.780869 0.624695 0] 0.25" + "id" "551" + "plane" "(64 640 100) (64 640 89) (60 640 89)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1875" - "plane" "(60 49 49) (68 49 49) (68 64 64)" + "id" "550" + "plane" "(64 656 100) (64 656 89) (64 640 89)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2133,30 +2784,30 @@ entity } side { - "id" "1874" - "plane" "(68 28 64) (60 28 64) (60 28 96)" + "id" "549" + "plane" "(57 640 100) (60 640 89) (60 656 89)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0.263117 0 -0.964764 30.321] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1873" - "plane" "(60 64 64) (68 64 64) (68 64 96)" + "id" "548" + "plane" "(64 656 89) (60 656 89) (60 640 89)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0.707107 -0.707107 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1872" - "plane" "(60 64 96) (68 64 96) (68 28 96)" + "id" "547" + "plane" "(64 640 100) (57 640 100) (57 656 100)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -2173,13 +2824,13 @@ entity } solid { - "id" "1732" + "id" "79" side { - "id" "1811" - "plane" "(60 70 0) (60 96 0) (60 96 28)" + "id" "558" + "plane" "(34 656 160) (24 656 160) (24 656 133)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2187,43 +2838,43 @@ entity } side { - "id" "1810" - "plane" "(68 96 0) (68 70 0) (68 64 28)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "557" + "plane" "(34 640 128) (24 640 133) (24 640 160)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1809" - "plane" "(60 96 0) (68 96 0) (68 96 28)" + "id" "556" + "plane" "(34 640 160) (24 640 160) (24 656 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1808" - "plane" "(68 70 0) (60 70 0) (60 64 28)" + "id" "555" + "plane" "(24 640 160) (24 640 133) (24 656 133)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0.242536 -0.970142 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1807" - "plane" "(60 96 28) (68 96 28) (68 64 28)" + "id" "554" + "plane" "(34 656 128) (24 656 133) (24 640 133)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-0.894427 0 0.447214 -13.5133] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2231,11 +2882,11 @@ entity } side { - "id" "1806" - "plane" "(60 70 0) (68 70 0) (68 96 0)" + "id" "553" + "plane" "(34 656 160) (34 656 128) (34 640 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2249,13 +2900,13 @@ entity } solid { - "id" "1733" + "id" "80" side { - "id" "1817" - "plane" "(60 0 96) (60 0 70) (60 28 64)" + "id" "564" + "plane" "(51 656 111) (57 656 100) (64 656 100)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2263,55 +2914,55 @@ entity } side { - "id" "1816" - "plane" "(68 0 70) (68 0 96) (68 28 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "563" + "plane" "(64 640 111) (64 640 100) (57 640 100)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1815" - "plane" "(60 28 96) (68 28 96) (68 0 96)" + "id" "562" + "plane" "(64 656 111) (64 656 100) (64 640 100)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1814" - "plane" "(60 0 70) (68 0 70) (68 28 64)" + "id" "561" + "plane" "(64 656 100) (57 656 100) (57 640 100)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -0.970142 0.242536 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1813" - "plane" "(60 28 64) (68 28 64) (68 28 96)" + "id" "560" + "plane" "(51 640 111) (57 640 100) (57 656 100)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0.478852 0 -0.877896 2.70694] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1812" - "plane" "(68 0 70) (60 0 70) (60 0 96)" + "id" "559" + "plane" "(64 640 111) (51 640 111) (51 656 111)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2323,28 +2974,15 @@ entity "visgroupautoshown" "1" } } - editor - { - "color" "0 180 0" - "visgroupid" "12" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[500 3000]" - } -} -entity -{ - "id" "1739" - "classname" "func_detail" solid { - "id" "1740" + "id" "81" side { - "id" "1847" - "plane" "(60 96 49) (60 49 49) (60 64 28)" + "id" "570" + "plane" "(41 656 122) (51 656 111) (64 656 111)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2352,32 +2990,32 @@ entity } side { - "id" "1846" - "plane" "(68 96 49) (68 96 28) (68 64 28)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "569" + "plane" "(64 640 160) (64 640 111) (51 640 111)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1845" - "plane" "(60 49 49) (68 49 49) (68 64 28)" + "id" "568" + "plane" "(64 656 160) (64 656 111) (64 640 111)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0.624695 -0.780869 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1844" - "plane" "(68 49 49) (60 49 49) (60 96 49)" + "id" "567" + "plane" "(64 656 111) (51 656 111) (51 640 111)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2385,22 +3023,22 @@ entity } side { - "id" "1843" - "plane" "(68 96 28) (60 96 28) (60 64 28)" + "id" "566" + "plane" "(41 640 122) (51 640 111) (51 656 111)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0.672672 0 -0.739941 41.898] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1842" - "plane" "(68 96 49) (60 96 49) (60 96 28)" + "id" "565" + "plane" "(64 640 160) (41 640 122) (41 656 122)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-0.517802 0 -0.8555 -61.7213] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2414,24 +3052,24 @@ entity } solid { - "id" "1741" + "id" "82" side { - "id" "1853" - "plane" "(60 49 96) (60 28 96) (60 28 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "576" + "plane" "(-12 640 160) (0 640 160) (0 640 138)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1852" - "plane" "(68 28 96) (68 49 96) (68 49 49)" + "id" "575" + "plane" "(-12 656 137) (0 656 138) (0 656 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2439,32 +3077,32 @@ entity } side { - "id" "1851" - "plane" "(68 49 49) (60 49 49) (60 28 64)" + "id" "574" + "plane" "(0 640 160) (-12 640 160) (-12 656 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -0.780869 0.624695 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1850" - "plane" "(68 49 96) (60 49 96) (60 49 49)" + "id" "573" + "plane" "(0 656 138) (-12 656 137) (-12 640 137)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.996546 0 -0.0830455 -0.442116] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1849" - "plane" "(60 28 96) (68 28 96) (68 28 64)" + "id" "572" + "plane" "(0 656 160) (0 656 138) (0 640 138)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2472,11 +3110,11 @@ entity } side { - "id" "1848" - "plane" "(68 28 96) (60 28 96) (60 49 96)" + "id" "571" + "plane" "(-12 640 160) (-12 640 137) (-12 656 137)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2490,24 +3128,24 @@ entity } solid { - "id" "1742" + "id" "83" side { - "id" "1859" - "plane" "(60 96 28) (60 64 28) (60 70 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "582" + "plane" "(-24 640 160) (-12 640 160) (-12 640 137)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1858" - "plane" "(68 64 28) (68 96 28) (68 96 0)" + "id" "581" + "plane" "(-24 656 133) (-12 656 137) (-12 656 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2515,44 +3153,44 @@ entity } side { - "id" "1857" - "plane" "(68 96 28) (60 96 28) (60 96 0)" + "id" "580" + "plane" "(-12 640 160) (-24 640 160) (-24 656 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1856" - "plane" "(60 64 28) (68 64 28) (68 70 0)" + "id" "579" + "plane" "(-12 656 137) (-24 656 133) (-24 640 133)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0.242536 -0.970142 0] 0.25" + "uaxis" "[-0.948683 0 -0.316228 -6.56857] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1855" - "plane" "(68 64 28) (60 64 28) (60 96 28)" + "id" "578" + "plane" "(-12 656 160) (-12 656 137) (-12 640 137)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1854" - "plane" "(68 96 0) (60 96 0) (60 70 0)" + "id" "577" + "plane" "(-24 640 160) (-24 640 133) (-24 656 133)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2566,24 +3204,24 @@ entity } solid { - "id" "1743" + "id" "84" side { - "id" "1865" - "plane" "(60 28 64) (60 28 96) (60 0 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "588" + "plane" "(-64 640 160) (-34 640 160) (-34 640 128)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1864" - "plane" "(68 28 96) (68 28 64) (68 0 70)" + "id" "587" + "plane" "(-41 656 122) (-34 656 128) (-34 656 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2591,8 +3229,8 @@ entity } side { - "id" "1863" - "plane" "(68 0 96) (60 0 96) (60 28 96)" + "id" "586" + "plane" "(-34 640 160) (-64 640 160) (-64 656 160)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -2602,33 +3240,33 @@ entity } side { - "id" "1862" - "plane" "(68 28 64) (60 28 64) (60 0 70)" + "id" "585" + "plane" "(-34 656 160) (-34 656 128) (-34 640 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -0.970142 0.242536 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1861" - "plane" "(68 28 96) (60 28 96) (60 28 64)" + "id" "584" + "plane" "(-34 656 128) (-41 656 122) (-41 640 122)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.759256 0 -0.650791 -30.8152] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1860" - "plane" "(60 0 96) (68 0 96) (68 0 70)" + "id" "583" + "plane" "(-64 640 160) (-41 640 122) (-41 656 122)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0.517803 0 -0.8555 61.7212] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2642,24 +3280,24 @@ entity } solid { - "id" "1764" + "id" "85" side { - "id" "1866" - "plane" "(60 49 96) (60 49 49) (60 96 49)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "594" + "plane" "(-34 640 160) (-24 640 160) (-24 640 133)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1867" - "plane" "(68 96 96) (68 96 49) (68 49 49)" + "id" "593" + "plane" "(-34 656 128) (-24 656 133) (-24 656 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2667,10 +3305,10 @@ entity } side { - "id" "1868" - "plane" "(68 96 49) (60 96 49) (60 49 49)" + "id" "592" + "plane" "(-24 640 160) (-34 640 160) (-34 656 160)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2678,32 +3316,32 @@ entity } side { - "id" "1869" - "plane" "(68 49 96) (60 49 96) (60 96 96)" + "id" "591" + "plane" "(-24 656 160) (-24 656 133) (-24 640 133)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1870" - "plane" "(68 96 96) (60 96 96) (60 96 49)" + "id" "590" + "plane" "(-24 656 133) (-34 656 128) (-34 640 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.894427 0 -0.447214 -13.5133] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1871" - "plane" "(60 49 96) (68 49 96) (68 49 49)" + "id" "589" + "plane" "(-34 640 160) (-34 640 128) (-34 656 128)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2716,39 +3354,26 @@ entity "visgroupautoshown" "1" } } - editor - { - "color" "0 180 0" - "visgroupid" "13" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[500 3000]" - } -} -entity -{ - "id" "250" - "classname" "func_detail" solid { - "id" "226" + "id" "86" side { - "id" "405" - "plane" "(60 32 0) (60 20 0) (60 14 -14)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "600" + "plane" "(-41 640 122) (-51 640 111) (-64 640 111)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "404" - "plane" "(68 32 -14) (68 14 -14) (68 20 0)" + "id" "599" + "plane" "(-64 656 160) (-64 656 111) (-51 656 111)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2756,10 +3381,10 @@ entity } side { - "id" "403" - "plane" "(60 32 -14) (68 32 -14) (68 32 0)" + "id" "598" + "plane" "(-64 640 160) (-64 640 111) (-64 656 111)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2767,33 +3392,33 @@ entity } side { - "id" "402" - "plane" "(68 14 -14) (60 14 -14) (60 20 0)" + "id" "597" + "plane" "(-51 656 111) (-64 656 111) (-64 640 111)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -0.496139 -0.868243 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "401" - "plane" "(60 32 0) (68 32 0) (68 20 0)" + "id" "596" + "plane" "(-41 656 122) (-51 656 111) (-51 640 111)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-0.672673 0 -0.73994 -41.8979] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "400" - "plane" "(60 14 -14) (68 14 -14) (68 32 -14)" + "id" "595" + "plane" "(-64 656 160) (-41 656 122) (-41 640 122)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0.517803 0 -0.8555 61.7212] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -2807,24 +3432,24 @@ entity } solid { - "id" "227" + "id" "87" side { - "id" "411" - "plane" "(60 20 0) (60 32 0) (60 32 14)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "606" + "plane" "(-51 640 111) (-57 640 100) (-64 640 100)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "410" - "plane" "(68 32 0) (68 20 0) (68 14 14)" + "id" "605" + "plane" "(-64 656 111) (-64 656 100) (-57 656 100)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2832,10 +3457,10 @@ entity } side { - "id" "409" - "plane" "(60 32 0) (68 32 0) (68 32 14)" + "id" "604" + "plane" "(-64 640 111) (-64 640 100) (-64 656 100)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2843,32 +3468,32 @@ entity } side { - "id" "408" - "plane" "(68 20 0) (60 20 0) (60 14 14)" + "id" "603" + "plane" "(-57 656 100) (-64 656 100) (-64 640 100)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0.496139 -0.868243 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "407" - "plane" "(60 32 14) (68 32 14) (68 14 14)" + "id" "602" + "plane" "(-51 656 111) (-57 656 100) (-57 640 100)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-0.478852 0 -0.877896 -2.70694] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "406" - "plane" "(60 20 0) (68 20 0) (68 32 0)" + "id" "601" + "plane" "(-51 640 111) (-64 640 111) (-64 656 111)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2883,24 +3508,24 @@ entity } solid { - "id" "228" + "id" "88" side { - "id" "417" - "plane" "(60 -32 0) (60 -20 0) (60 -14 14)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "612" + "plane" "(64 640 54) (64 640 43) (51 640 43)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "416" - "plane" "(68 -20 0) (68 -32 0) (68 -32 14)" + "id" "611" + "plane" "(64 656 43) (64 656 54) (57 656 54)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2908,10 +3533,10 @@ entity } side { - "id" "415" - "plane" "(68 -32 0) (60 -32 0) (60 -32 14)" + "id" "610" + "plane" "(64 656 54) (64 656 43) (64 640 43)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2919,32 +3544,32 @@ entity } side { - "id" "414" - "plane" "(60 -20 0) (68 -20 0) (68 -14 14)" + "id" "609" + "plane" "(64 640 54) (57 640 54) (57 656 54)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -0.496139 -0.868243 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "413" - "plane" "(60 -32 0) (68 -32 0) (68 -20 0)" + "id" "608" + "plane" "(57 640 54) (51 640 43) (51 656 43)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-0.478852 0 -0.877896 -2.70694] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "412" - "plane" "(60 -14 14) (68 -14 14) (68 -32 14)" + "id" "607" + "plane" "(64 656 43) (51 656 43) (51 640 43)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2959,24 +3584,24 @@ entity } solid { - "id" "229" + "id" "89" side { - "id" "423" - "plane" "(60 -32 -14) (60 -14 -14) (60 -20 0)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "618" + "plane" "(64 640 43) (64 640 32) (41 640 32)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "422" - "plane" "(68 -32 0) (68 -20 0) (68 -14 -14)" + "id" "617" + "plane" "(64 656 32) (64 656 43) (51 656 43)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2984,10 +3609,10 @@ entity } side { - "id" "421" - "plane" "(68 -32 -14) (60 -32 -14) (60 -32 0)" + "id" "616" + "plane" "(64 656 43) (64 656 32) (64 640 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2995,32 +3620,32 @@ entity } side { - "id" "420" - "plane" "(60 -14 -14) (68 -14 -14) (68 -20 0)" + "id" "615" + "plane" "(64 640 43) (51 640 43) (51 656 43)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0.496139 -0.868243 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "419" - "plane" "(60 -32 -14) (68 -32 -14) (68 -14 -14)" + "id" "614" + "plane" "(51 640 43) (41 640 32) (41 656 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-0.672672 0 -0.739941 -41.898] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "418" - "plane" "(60 -20 0) (68 -20 0) (68 -32 0)" + "id" "613" + "plane" "(64 656 32) (41 656 32) (41 640 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3035,35 +3660,35 @@ entity } solid { - "id" "185" + "id" "90" side { - "id" "429" - "plane" "(60 14 -32) (68 14 -32) (68 32 -32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "624" + "plane" "(64 640 65) (64 640 54) (57 640 54)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "428" - "plane" "(60 32 -14) (68 32 -14) (68 14 -14)" + "id" "623" + "plane" "(64 656 54) (64 656 65) (60 656 65)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "427" - "plane" "(60 32 -32) (60 32 -14) (60 14 -14)" + "id" "622" + "plane" "(64 656 65) (64 656 54) (64 640 54)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3071,33 +3696,33 @@ entity } side { - "id" "426" - "plane" "(68 14 -32) (68 14 -14) (68 32 -14)" + "id" "621" + "plane" "(60 640 65) (57 640 54) (57 656 54)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-0.263117 0 -0.964764 -30.321] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "425" - "plane" "(60 14 -32) (60 14 -14) (68 14 -14)" + "id" "620" + "plane" "(64 640 65) (60 640 65) (60 656 65)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "424" - "plane" "(68 32 -32) (68 32 -14) (60 32 -14)" + "id" "619" + "plane" "(64 656 54) (57 656 54) (57 640 54)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3111,24 +3736,24 @@ entity } solid { - "id" "223" + "id" "91" side { - "id" "435" - "plane" "(60 14 -32) (60 14 -14) (60 0 -20)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "630" + "plane" "(64 640 77) (64 640 65) (60 640 65)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "434" - "plane" "(68 0 -32) (68 0 -20) (68 14 -14)" + "id" "629" + "plane" "(64 656 65) (64 656 77) (61 656 77)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3136,44 +3761,44 @@ entity } side { - "id" "433" - "plane" "(60 0 -32) (68 0 -32) (68 14 -32)" + "id" "628" + "plane" "(64 656 77) (64 656 65) (64 640 65)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "432" - "plane" "(60 14 -14) (68 14 -14) (68 0 -20)" + "id" "627" + "plane" "(64 640 77) (61 640 77) (61 656 77)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -0.868243 -0.496139 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "431" - "plane" "(60 14 -32) (68 14 -32) (68 14 -14)" + "id" "626" + "plane" "(61 640 77) (60 640 65) (60 656 65)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-0.0830455 0 -0.996546 10.6298] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "430" - "plane" "(68 0 -32) (60 0 -32) (60 0 -20)" + "id" "625" + "plane" "(64 656 65) (60 656 65) (60 640 65)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3187,13 +3812,13 @@ entity } solid { - "id" "222" + "id" "92" side { - "id" "441" - "plane" "(60 0 -32) (60 0 -20) (60 -14 -14)" + "id" "636" + "plane" "(-64 656 43) (-64 656 32) (-41 656 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3201,55 +3826,55 @@ entity } side { - "id" "440" - "plane" "(68 -14 -32) (68 -14 -14) (68 0 -20)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "635" + "plane" "(-64 640 32) (-64 640 43) (-51 640 43)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "439" - "plane" "(60 -14 -32) (68 -14 -32) (68 0 -32)" + "id" "634" + "plane" "(-64 640 43) (-64 640 32) (-64 656 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "438" - "plane" "(60 0 -20) (68 0 -20) (68 -14 -14)" + "id" "633" + "plane" "(-51 640 43) (-64 640 43) (-64 656 43)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -0.868243 0.496139 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "437" - "plane" "(60 0 -32) (68 0 -32) (68 0 -20)" + "id" "632" + "plane" "(-51 656 43) (-41 656 32) (-41 640 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0.672673 0 -0.73994 41.8979] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "436" - "plane" "(68 -14 -32) (60 -14 -32) (60 -14 -14)" + "id" "631" + "plane" "(-41 656 32) (-64 656 32) (-64 640 32)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3263,13 +3888,13 @@ entity } solid { - "id" "177" + "id" "93" side { - "id" "447" - "plane" "(68 -32 -32) (60 -32 -32) (60 -32 -14)" + "id" "642" + "plane" "(-64 656 54) (-64 656 43) (-51 656 43)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3277,19 +3902,19 @@ entity } side { - "id" "446" - "plane" "(60 -14 -32) (68 -14 -32) (68 -14 -14)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "641" + "plane" "(-64 640 43) (-64 640 54) (-57 640 54)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "445" - "plane" "(60 -32 -32) (60 -14 -32) (60 -14 -14)" + "id" "640" + "plane" "(-64 640 54) (-64 640 43) (-64 656 43)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -3299,30 +3924,30 @@ entity } side { - "id" "444" - "plane" "(68 -14 -32) (68 -32 -32) (68 -32 -14)" + "id" "639" + "plane" "(-57 640 54) (-64 640 54) (-64 656 54)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "443" - "plane" "(60 -32 -14) (60 -14 -14) (68 -14 -14)" + "id" "638" + "plane" "(-57 656 54) (-51 656 43) (-51 640 43)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0.478852 0 -0.877896 2.70694] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "442" - "plane" "(60 -14 -32) (60 -32 -32) (68 -32 -32)" + "id" "637" + "plane" "(-51 656 43) (-64 656 43) (-64 640 43)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -3339,33 +3964,33 @@ entity } solid { - "id" "161" + "id" "94" side { - "id" "453" - "plane" "(60 -14 32) (68 -14 32) (68 -32 32)" + "id" "648" + "plane" "(-64 656 77) (-64 656 65) (-60 656 65)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "452" - "plane" "(60 -32 14) (68 -32 14) (68 -14 14)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "647" + "plane" "(-64 640 65) (-64 640 77) (-61 640 77)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "451" - "plane" "(60 -14 14) (60 -14 32) (60 -32 32)" + "id" "646" + "plane" "(-64 640 77) (-64 640 65) (-64 656 65)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -3375,33 +4000,33 @@ entity } side { - "id" "450" - "plane" "(68 -32 14) (68 -32 32) (68 -14 32)" + "id" "645" + "plane" "(-61 640 77) (-64 640 77) (-64 656 77)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "449" - "plane" "(68 -14 14) (68 -14 32) (60 -14 32)" + "id" "644" + "plane" "(-61 656 77) (-60 656 65) (-60 640 65)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0.0830455 0 -0.996546 -10.6298] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "448" - "plane" "(60 -32 14) (60 -32 32) (68 -32 32)" + "id" "643" + "plane" "(-60 656 65) (-64 656 65) (-64 640 65)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3413,26 +4038,47 @@ entity "visgroupautoshown" "1" } } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -7768]" + } +} +entity +{ + "id" "95" + "classname" "trigger_once" + "origin" "0 544 104" + "spawnflags" "4097" + "StartDisabled" "0" + connections + { + "OnTrigger" "@music_stopTrigger0-1" + "OnTrigger" "player_arrived_rlTrigger0-1" + "OnTrigger" "@exit_airlock_doorClose0-1" + } solid { - "id" "219" + "id" "96" side { - "id" "459" - "plane" "(60 0 20) (60 0 32) (60 -14 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "654" + "plane" "(96 528 176) (-96 528 176) (-96 560 176)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "458" - "plane" "(68 0 32) (68 0 20) (68 -14 14)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "653" + "plane" "(96 560 176) (-96 560 176) (-96 560 32)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 48] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3440,32 +4086,32 @@ entity } side { - "id" "457" - "plane" "(60 0 32) (68 0 32) (68 -14 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "652" + "plane" "(-96 528 32) (-96 560 32) (-96 560 176)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "456" - "plane" "(60 -14 14) (68 -14 14) (68 0 20)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -0.868243 -0.496139 0] 0.25" + "id" "651" + "plane" "(96 560 32) (-96 560 32) (-96 528 32)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 -48] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "455" - "plane" "(68 -14 14) (60 -14 14) (60 -14 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "650" + "plane" "(96 528 32) (-96 528 32) (-96 528 176)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 48] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3473,10 +4119,10 @@ entity } side { - "id" "454" - "plane" "(60 0 20) (68 0 20) (68 0 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "649" + "plane" "(96 528 176) (96 560 176) (96 560 32)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3484,64 +4130,118 @@ entity } editor { - "color" "0 180 0" + "color" "220 30 220" "visgroupshown" "1" "visgroupautoshown" "1" } } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "99" + "classname" "linked_portal_door" + "angles" "0 270 0" + "height" "128" + "partnername" "@exit_portal_chamber_side" + "renderamt" "255" + "rendercolor" "255 255 255" + "targetname" "@exit_portal_elevator_side" + "width" "128" + "origin" "0.000999451 653.001 96" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -15768]" + } +} +entity +{ + "id" "103" + "classname" "prop_testchamber_door" + "angles" "0 90 0" + "renderamt" "255" + "rendercolor" "255 255 255" + "solid" "6" + "targetname" "@exit_airlock_door" + connections + { + "OnFullyClosed" "@exit_portal_chamber_sideClose0-1" + } + "origin" "0 656 32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "111" + "classname" "func_detail" solid { - "id" "151" + "id" "112" side { - "id" "465" - "plane" "(60 0 32) (60 0 20) (60 14 14)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "660" + "plane" "(-40 256 160) (-40 264 160) (-39 264 160)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 -20] 0.25" + "vaxis" "[0 1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "464" - "plane" "(68 0 20) (68 0 32) (68 14 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "659" + "plane" "(-33 256 -96) (-39 264 -96) (-40 264 -96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 -20] 0.25" + "vaxis" "[0 1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "463" - "plane" "(60 14 32) (68 14 32) (68 0 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "658" + "plane" "(-39 264 -96) (-33 256 -96) (-33 256 160)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "462" - "plane" "(60 0 20) (68 0 20) (68 14 14)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -0.868243 0.496139 0] 0.25" + "id" "657" + "plane" "(-40 256 -96) (-40 264 -96) (-40 264 160)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "461" - "plane" "(68 0 20) (60 0 20) (60 0 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "656" + "plane" "(-40 264 -96) (-39 264 -96) (-39 264 160)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 -20] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3549,10 +4249,10 @@ entity } side { - "id" "460" - "plane" "(60 14 14) (68 14 14) (68 14 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "655" + "plane" "(-33 256 -96) (-40 256 -96) (-40 256 160)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 -20] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3567,35 +4267,35 @@ entity } solid { - "id" "162" + "id" "113" side { - "id" "471" - "plane" "(60 32 14) (68 32 14) (68 32 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "666" + "plane" "(33 256 160) (39 264 160) (40 264 160)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "470" - "plane" "(68 14 14) (60 14 14) (60 14 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "665" + "plane" "(40 256 -96) (40 264 -96) (39 264 -96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 1 0 32] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "469" - "plane" "(60 14 14) (60 32 14) (60 32 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" + "id" "664" + "plane" "(40 264 -96) (40 256 -96) (40 256 160)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3603,10 +4303,10 @@ entity } side { - "id" "468" - "plane" "(68 32 14) (68 14 14) (68 14 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" + "id" "663" + "plane" "(33 256 -96) (39 264 -96) (39 264 160)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3614,22 +4314,22 @@ entity } side { - "id" "467" - "plane" "(60 32 14) (60 14 14) (68 14 14)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "662" + "plane" "(39 264 -96) (40 264 -96) (40 264 160)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "466" - "plane" "(60 14 32) (60 32 32) (68 32 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "661" + "plane" "(40 256 -96) (33 256 -96) (33 256 160)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3641,71 +4341,58 @@ entity "visgroupautoshown" "1" } } - editor - { - "color" "0 180 0" - "visgroupid" "7" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 -9768]" - } -} -entity -{ - "id" "522" - "classname" "func_detail" solid { - "id" "1668" + "id" "114" side { - "id" "1684" - "plane" "(60 0 96) (60 0 70) (60 32 62)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "672" + "plane" "(39 512 160) (39 576 160) (64 576 160)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1683" - "plane" "(68 0 70) (68 0 96) (68 32 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "671" + "plane" "(39 576 32) (39 512 32) (64 512 32)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1682" - "plane" "(60 32 96) (68 32 96) (68 0 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "670" + "plane" "(64 576 32) (64 512 32) (64 512 160)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1681" - "plane" "(60 0 70) (68 0 70) (68 32 62)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -0.970142 0.242536 0] 0.25" + "id" "669" + "plane" "(39 512 32) (39 576 32) (39 576 160)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1680" - "plane" "(60 32 62) (68 32 62) (68 32 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "668" + "plane" "(39 576 32) (64 576 32) (64 576 160)" + "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -3714,9 +4401,9 @@ entity } side { - "id" "1679" - "plane" "(68 0 70) (60 0 70) (60 0 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "667" + "plane" "(64 512 32) (39 512 32) (39 512 160)" + "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -3732,46 +4419,35 @@ entity } solid { - "id" "1908" - side - { - "id" "1940" - "plane" "(60 32 96) (60 32 62) (60 49 49)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "115" side { - "id" "1939" - "plane" "(68 79 79) (68 49 49) (68 32 62)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "678" + "plane" "(-64 512 160) (-64 576 160) (-39 576 160)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 -28] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1938" - "plane" "(60 32 62) (68 32 62) (68 49 49)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -0.780869 0.624695 0] 0.25" + "id" "677" + "plane" "(-64 576 32) (-64 512 32) (-39 512 32)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 -28] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1937" - "plane" "(60 49 49) (68 49 49) (68 79 79)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "676" + "plane" "(-39 576 32) (-39 512 32) (-39 512 160)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3779,10 +4455,10 @@ entity } side { - "id" "1936" - "plane" "(68 32 62) (60 32 62) (60 32 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" + "id" "675" + "plane" "(-64 512 32) (-64 576 32) (-64 576 160)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3790,22 +4466,22 @@ entity } side { - "id" "1935" - "plane" "(60 79 79) (68 79 79) (68 66 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0.707107 -0.707107 0] 0.25" + "id" "674" + "plane" "(-64 576 32) (-39 576 32) (-39 576 160)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 -28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1934" - "plane" "(60 66 96) (68 66 96) (68 32 96)" - "material" "TOOLS/TOOLSNODRAW" + "id" "673" + "plane" "(-39 512 32) (-64 512 32) (-64 512 160)" + "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3819,35 +4495,35 @@ entity } solid { - "id" "1659" + "id" "116" side { - "id" "1632" - "plane" "(60 70 0) (60 96 0) (60 96 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "684" + "plane" "(39 264 160) (39 512 160) (64 512 160)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1631" - "plane" "(68 96 0) (68 70 0) (68 62 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "683" + "plane" "(39 512 -96) (39 264 -96) (64 264 -96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1630" - "plane" "(60 96 0) (68 96 0) (68 96 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" + "id" "682" + "plane" "(64 512 -96) (64 264 -96) (64 264 160)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -3855,33 +4531,33 @@ entity } side { - "id" "1629" - "plane" "(68 70 0) (60 70 0) (60 62 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0.242536 -0.970142 0] 0.25" + "id" "681" + "plane" "(39 264 -96) (39 512 -96) (39 512 160)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1628" - "plane" "(60 96 32) (68 96 32) (68 62 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "680" + "plane" "(64 264 -96) (39 264 -96) (39 264 160)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1627" - "plane" "(60 70 0) (68 70 0) (68 96 0)" - "material" "TOOLS/TOOLSNODRAW" + "id" "679" + "plane" "(39 512 -96) (64 512 -96) (64 512 160)" + "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3895,80 +4571,69 @@ entity } solid { - "id" "1910" + "id" "117" side { - "id" "1954" - "plane" "(60 96 32) (60 96 66) (60 79 79)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "id" "690" + "plane" "(-64 264 160) (-64 512 160) (-39 512 160)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 -28] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1953" - "plane" "(68 49 49) (68 79 79) (68 96 66)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "id" "689" + "plane" "(-64 512 -96) (-64 264 -96) (-39 264 -96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 -28] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1952" - "plane" "(60 96 66) (68 96 66) (68 79 79)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0.780869 -0.624695 48.0389] 0.25" + "id" "688" + "plane" "(-39 512 -96) (-39 264 -96) (-39 264 160)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1951" - "plane" "(68 49 49) (60 49 49) (60 79 79)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "id" "687" + "plane" "(-64 264 -96) (-64 512 -96) (-64 512 160)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1950" - "plane" "(60 96 32) (68 96 32) (68 96 66)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "id" "686" + "plane" "(-39 264 -96) (-64 264 -96) (-64 264 160)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 -28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1949" - "plane" "(68 62 32) (60 62 32) (60 49 49)" - "material" "TOOLS/TOOLSNODRAW" + "id" "685" + "plane" "(-64 512 -96) (-39 512 -96) (-39 512 160)" + "material" "TOOLS/TOOLSPLAYERCLIP" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -0.707107 0.707107 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1948" - "plane" "(60 62 32) (68 62 32) (68 96 32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3980,71 +4645,83 @@ entity "visgroupautoshown" "1" } } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "118" + "classname" "func_detail" solid { - "id" "1881" + "id" "119" side { - "id" "1933" - "plane" "(60 128 32) (60 128 58) (60 96 66)" + "id" "696" + "plane" "(-56 537 231) (56 537 231) (56 537 232)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1932" - "plane" "(68 96 32) (68 96 66) (68 128 58)" + "id" "695" + "plane" "(56 519 231) (-56 519 231) (-56 519 232)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1931" - "plane" "(60 96 32) (68 96 32) (68 128 32)" + "id" "694" + "plane" "(56 519 232) (-56 519 232) (-56 537 232)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1930" - "plane" "(60 128 58) (68 128 58) (68 96 66)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0.970142 -0.242536 -52.5342] 0.25" + "id" "693" + "plane" "(56 537 231) (-56 537 231) (-56 519 231)" + "material" "LIGHTS/LIGHT_PANEL_WARM" + "uaxis" "[-1 0 0 -32] 4" + "vaxis" "[0 -1 0 36] 4" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1929" - "plane" "(68 96 32) (60 96 32) (60 96 66)" + "id" "692" + "plane" "(-56 519 232) (-56 519 231) (-56 537 231)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1928" - "plane" "(60 128 32) (68 128 32) (68 128 58)" + "id" "691" + "plane" "(56 537 232) (56 537 231) (56 519 231)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4056,71 +4733,83 @@ entity "visgroupautoshown" "1" } } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "120" + "classname" "func_detail" solid { - "id" "1880" + "id" "121" side { - "id" "1927" - "plane" "(60 32 96) (60 66 96) (60 58 128)" + "id" "702" + "plane" "(-56 569 231) (56 569 231) (56 569 232)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1926" - "plane" "(68 32 128) (68 58 128) (68 66 96)" + "id" "701" + "plane" "(56 551 231) (-56 551 231) (-56 551 232)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1925" - "plane" "(68 32 96) (60 32 96) (60 32 128)" + "id" "700" + "plane" "(56 551 232) (-56 551 232) (-56 569 232)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1924" - "plane" "(60 66 96) (68 66 96) (68 58 128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -0.242536 0.970142 11.4657] 0.25" + "id" "699" + "plane" "(56 569 231) (-56 569 231) (-56 551 231)" + "material" "LIGHTS/LIGHT_PANEL_WARM" + "uaxis" "[-1 0 0 -32] 4" + "vaxis" "[0 -1 0 44] 4" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1923" - "plane" "(60 32 96) (68 32 96) (68 66 96)" + "id" "698" + "plane" "(-56 551 232) (-56 551 231) (-56 569 231)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1922" - "plane" "(60 58 128) (68 58 128) (68 32 128)" + "id" "697" + "plane" "(56 569 232) (56 569 231) (56 551 231)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -4135,64 +4824,55 @@ entity editor { "color" "0 180 0" - "visgroupid" "8" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[500 3000]" + "logicalpos" "[0 0]" } } entity { - "id" "824" - "classname" "bee2_template_conf" - "detail_auto_visgroup" "0" - "discard_brushes" "0" - "is_scaling" "0" - "temp_type" "default" - "template_id" "BEE2_HOLE_MODERN" - "origin" "64 0 0" + "id" "122" + "classname" "env_soundscape" + "angles" "0 0 0" + "radius" "184" + "soundscape" "portal_testchmb.explore_space" + "origin" "0 344 -120" editor { "color" "220 30 220" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[500 3500]" + "logicalpos" "[0 0]" } } entity { - "id" "2" + "id" "133" "classname" "prop_static" - "angles" "90 0 0" - "disableflashlight" "0" + "angles" "0 0 0" "disableselfshadowing" "0" - "disableshadowdepth" "0" "disableshadows" "0" "disablevertexlighting" "0" - "disableX360" "0" "drawinfastreflection" "0" "fademaxdist" "0" "fademindist" "-1" "fadescale" "1" "ignorenormals" "0" - "maxcpulevel" "0" - "maxgpulevel" "0" - "mincpulevel" "0" - "mingpulevel" "0" - "model" "models/props_test_chamber/frame_hole_small.mdl" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/hanging_walkway_end_cap.mdl" "renderamt" "255" "rendercolor" "255 255 255" "screenspacefade" "0" - "shadowdepthnocache" "0" "skin" "0" "solid" "6" - "origin" "59.5 0 0" + "origin" "0 256 -92" editor { "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "logicalpos" "[0 8500]" } } cameras diff --git a/packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_exit/stair_flat.vmf b/packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_exit/stair_flat.vmf new file mode 100644 index 0000000000..6de44e6b64 --- /dev/null +++ b/packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_exit/stair_flat.vmf @@ -0,0 +1,5513 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "1039" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "32" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "1039" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black" + solid + { + "id" "134868" + side + { + "id" "24322" + "plane" "(64 512 -96) (64 384 -96) (96 384 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24321" + "plane" "(96 512 96) (96 512 -96) (96 384 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24320" + "plane" "(64 384 96) (64 384 -96) (64 512 -96)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[0 -1 0 -512] 0.25" + "vaxis" "[0 0 -1 896] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24319" + "plane" "(64 512 96) (64 512 -96) (96 512 -96)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24318" + "plane" "(96 384 96) (96 384 -96) (64 384 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24317" + "plane" "(64 384 96) (64 512 96) (96 512 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "134870" + side + { + "id" "24334" + "plane" "(-96 512 -96) (-96 384 -96) (-64 384 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24333" + "plane" "(-64 512 96) (-64 512 -96) (-64 384 -96)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[0 -1 0 -512] 0.25" + "vaxis" "[0 0 -1 896] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24332" + "plane" "(-96 384 96) (-96 384 -96) (-96 512 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24331" + "plane" "(-96 512 96) (-96 512 -96) (-64 512 -96)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24330" + "plane" "(-64 384 96) (-64 384 -96) (-96 384 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24329" + "plane" "(-96 384 96) (-96 512 96) (-64 512 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "123361" + side + { + "id" "23998" + "plane" "(64 768 -112) (-64 768 -112) (-64 640 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 58.7142] 0.28" + "vaxis" "[1 0 0 54] 0.28" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23997" + "plane" "(64 640 -96) (64 640 -112) (-64 640 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -55.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23996" + "plane" "(-64 768 -96) (-64 768 -112) (64 768 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23995" + "plane" "(-64 640 -96) (-64 640 -112) (-64 768 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 58.7142] 0.28" + "vaxis" "[0 0 -1 22.2857] 0.28" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23994" + "plane" "(64 768 -96) (64 768 -112) (64 640 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 58.7142] 0.28" + "vaxis" "[0 0 -1 22.2857] 0.28" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23993" + "plane" "(64 640 -96) (-64 640 -96) (-64 768 -96)" + "material" "METAL/BLACK_FLOOR_METAL_001C" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 197 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "123363" + side + { + "id" "24010" + "plane" "(-64 640 64) (-64 768 64) (64 768 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24009" + "plane" "(64 768 32) (64 640 32) (64 640 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24008" + "plane" "(-64 768 64) (-64 640 64) (-64 640 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24007" + "plane" "(-64 640 32) (-64 640 64) (64 640 64)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24006" + "plane" "(-64 768 32) (-64 640 32) (64 640 32)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 -1 0 -512] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24005" + "plane" "(64 768 32) (64 768 64) (-64 768 64)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 188 245" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "124694" + side + { + "id" "24190" + "plane" "(-80 704 -96) (-80 768 -96) (-80 768 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.00390625] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24189" + "plane" "(-64 768 -96) (-64 704 -96) (-64 704 32)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24188" + "plane" "(-80 704 32) (-80 768 32) (-64 768 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.00390625] 0.25" + "vaxis" "[1 0 0 63.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24187" + "plane" "(-80 768 -96) (-80 704 -96) (-64 704 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.00390625] 0.25" + "vaxis" "[1 0 0 63.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24186" + "plane" "(-80 768 32) (-80 768 -96) (-64 768 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24185" + "plane" "(-64 704 32) (-64 704 -96) (-80 704 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 209 174" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "124695" + side + { + "id" "24196" + "plane" "(-80 640 -96) (-80 704 -96) (-80 704 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.00390625] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24195" + "plane" "(-64 704 -96) (-64 640 -96) (-64 640 32)" + "material" "METAL/BLACK_WALL_METAL_002E" + "uaxis" "[0 1 0 512] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24194" + "plane" "(-80 640 32) (-80 704 32) (-64 704 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.00390625] 0.25" + "vaxis" "[1 0 0 63.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24193" + "plane" "(-80 704 -96) (-80 640 -96) (-64 640 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.00390625] 0.25" + "vaxis" "[1 0 0 63.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24192" + "plane" "(-64 640 32) (-64 640 -96) (-80 640 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24191" + "plane" "(-80 704 32) (-80 704 -96) (-64 704 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 209 174" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "124696" + side + { + "id" "24202" + "plane" "(64 704 -96) (64 768 -96) (64 768 32)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24201" + "plane" "(80 768 -96) (80 704 -96) (80 704 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.00390625] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24200" + "plane" "(64 704 32) (64 768 32) (80 768 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.00390625] 0.25" + "vaxis" "[1 0 0 63.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24199" + "plane" "(64 768 -96) (64 704 -96) (80 704 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.00390625] 0.25" + "vaxis" "[1 0 0 63.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24198" + "plane" "(64 768 32) (64 768 -96) (80 768 -96)" + "material" "METAL/BLACK_WALL_METAL_006C" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24197" + "plane" "(80 704 32) (80 704 -96) (64 704 -96)" + "material" "METAL/BLACK_WALL_METAL_002E" + "uaxis" "[1 0 0 384] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 217 126" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "124697" + side + { + "id" "24208" + "plane" "(64 640 -96) (64 704 -96) (64 704 32)" + "material" "METAL/BLACK_WALL_METAL_002E" + "uaxis" "[0 1 0 512] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24207" + "plane" "(80 704 -96) (80 640 -96) (80 640 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.00390625] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24206" + "plane" "(64 640 32) (64 704 32) (80 704 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.00390625] 0.25" + "vaxis" "[1 0 0 63.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24205" + "plane" "(64 704 -96) (64 640 -96) (80 640 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.00390625] 0.25" + "vaxis" "[1 0 0 63.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24204" + "plane" "(80 640 32) (80 640 -96) (64 640 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24203" + "plane" "(64 704 32) (64 704 -96) (80 704 -96)" + "material" "METAL/BLACK_WALL_METAL_002E" + "uaxis" "[1 0 0 384] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 217 126" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122043" + side + { + "id" "22366" + "plane" "(-80 320 96) (-256 320 96) (-256 384 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22365" + "plane" "(-256 384 -96) (-256 320 -96) (-80 320 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22364" + "plane" "(-80 320 -96) (-256 320 -96) (-256 320 96)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22363" + "plane" "(-80 384 -96) (-80 320 -96) (-80 320 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22362" + "plane" "(-256 320 -96) (-256 384 -96) (-256 384 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22361" + "plane" "(-256 384 -96) (-80 384 -96) (-80 384 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122044" + side + { + "id" "22372" + "plane" "(-96 576 96) (-96 640 96) (96 640 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22371" + "plane" "(96 640 32) (96 640 96) (-96 640 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22370" + "plane" "(96 576 32) (96 576 96) (96 640 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22369" + "plane" "(-96 640 32) (-96 640 96) (-96 576 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22368" + "plane" "(-96 576 32) (-96 576 96) (96 576 96)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22367" + "plane" "(96 640 32) (-96 640 32) (-96 576 32)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[-1 0 0 512] 0.25" + "vaxis" "[0 1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122045" + side + { + "id" "22378" + "plane" "(96 512 104) (64 512 104) (64 576 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22377" + "plane" "(96 576 96) (64 576 96) (64 512 96)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 512] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22376" + "plane" "(64 576 96) (96 576 96) (96 576 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22375" + "plane" "(96 512 96) (64 512 96) (64 512 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22374" + "plane" "(96 576 96) (96 512 96) (96 512 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22373" + "plane" "(64 512 96) (64 576 96) (64 576 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122050" + side + { + "id" "24514" + "plane" "(-96 384 160) (-96 512 160) (96 512 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24513" + "plane" "(96 512 96) (-96 512 96) (-96 384 96)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[-1 0 0 512] 0.25" + "vaxis" "[0 1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24512" + "plane" "(-96 512 96) (96 512 96) (96 512 160)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 640] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24511" + "plane" "(96 512 96) (96 384 96) (96 384 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24510" + "plane" "(-96 384 96) (-96 512 96) (-96 512 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24509" + "plane" "(96 384 96) (-96 384 96) (-96 384 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122051" + side + { + "id" "22414" + "plane" "(96 512 96) (96 576 96) (112 576 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22413" + "plane" "(112 576 -96) (96 576 -96) (96 512 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22412" + "plane" "(96 576 -96) (112 576 -96) (112 576 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22411" + "plane" "(112 576 -96) (112 512 -96) (112 512 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22410" + "plane" "(96 512 -96) (96 576 -96) (96 576 96)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 -1 0 -512] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22409" + "plane" "(112 512 -96) (96 512 -96) (96 512 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122052" + side + { + "id" "22420" + "plane" "(-112 512 96) (-112 576 96) (-96 576 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22419" + "plane" "(-96 576 -96) (-112 576 -96) (-112 512 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22418" + "plane" "(-112 576 -96) (-96 576 -96) (-96 576 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22417" + "plane" "(-96 576 -96) (-96 512 -96) (-96 512 96)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 -1 0 -512] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22416" + "plane" "(-112 512 -96) (-112 576 -96) (-112 576 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22415" + "plane" "(-96 512 -96) (-112 512 -96) (-112 512 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122053" + side + { + "id" "22426" + "plane" "(96 512 -96) (-96 512 -96) (-96 640 -96)" + "material" "METAL/BLACK_FLOOR_METAL_001C" + "uaxis" "[-1 0 0 -256] 0.25" + "vaxis" "[0 1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22425" + "plane" "(96 640 -128) (-96 640 -128) (-96 512 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22424" + "plane" "(-96 640 -128) (96 640 -128) (96 640 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22423" + "plane" "(96 512 -128) (-96 512 -128) (-96 512 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22422" + "plane" "(96 640 -128) (96 512 -128) (96 512 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22421" + "plane" "(-96 512 -128) (-96 640 -128) (-96 640 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122054" + side + { + "id" "22432" + "plane" "(-64 320 96) (-80 320 96) (-80 384 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22431" + "plane" "(-80 384 -96) (-80 320 -96) (-64 320 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22430" + "plane" "(-64 320 -96) (-80 320 -96) (-80 320 96)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22429" + "plane" "(-64 384 -96) (-64 320 -96) (-64 320 96)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 896] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22428" + "plane" "(-80 320 -96) (-80 384 -96) (-80 384 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22427" + "plane" "(-80 384 -96) (-64 384 -96) (-64 384 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122055" + side + { + "id" "22438" + "plane" "(80 320 96) (64 320 96) (64 384 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22437" + "plane" "(64 384 -96) (64 320 -96) (80 320 -96)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22436" + "plane" "(80 320 -96) (64 320 -96) (64 320 96)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22435" + "plane" "(80 384 -96) (80 320 -96) (80 320 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22434" + "plane" "(64 320 -96) (64 384 -96) (64 384 96)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 896] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22433" + "plane" "(64 384 -96) (80 384 -96) (80 384 96)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122056" + side + { + "id" "22444" + "plane" "(256 320 96) (80 320 96) (80 384 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22443" + "plane" "(80 384 -96) (80 320 -96) (256 320 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22442" + "plane" "(256 320 -96) (80 320 -96) (80 320 96)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 -256] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22441" + "plane" "(256 384 -96) (256 320 -96) (256 320 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22440" + "plane" "(80 320 -96) (80 384 -96) (80 384 96)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22439" + "plane" "(80 384 -96) (256 384 -96) (256 384 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122058" + side + { + "id" "22456" + "plane" "(-64 384 -96) (-64 512 -96) (64 512 -96)" + "material" "METAL/BLACK_FLOOR_METAL_001D" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22455" + "plane" "(64 512 -112) (-64 512 -112) (-64 384 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22454" + "plane" "(-64 512 -112) (64 512 -112) (64 512 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22453" + "plane" "(64 512 -112) (64 384 -112) (64 384 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22452" + "plane" "(-64 384 -112) (-64 512 -112) (-64 512 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22451" + "plane" "(64 384 -112) (-64 384 -112) (-64 384 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122059" + side + { + "id" "22462" + "plane" "(-64 576 104) (-64 608 104) (64 608 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22461" + "plane" "(64 608 96) (-64 608 96) (-64 576 96)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 512] 0.25" + "vaxis" "[0 1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22460" + "plane" "(-64 608 96) (64 608 96) (64 608 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22459" + "plane" "(-64 576 96) (-64 608 96) (-64 608 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22458" + "plane" "(64 608 96) (64 576 96) (64 576 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22457" + "plane" "(64 576 96) (-64 576 96) (-64 576 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122061" + side + { + "id" "22474" + "plane" "(256 320 1056) (-256 320 1056) (-256 384 1056)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22473" + "plane" "(-256 384 96) (-256 320 96) (256 320 96)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[-1 0 0 512] 0.25" + "vaxis" "[0 1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22472" + "plane" "(256 320 96) (-256 320 96) (-256 320 1056)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22471" + "plane" "(256 384 96) (256 320 96) (256 320 1056)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22470" + "plane" "(-256 320 96) (-256 384 96) (-256 384 1056)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22469" + "plane" "(-256 384 96) (256 384 96) (256 384 1056)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122062" + side + { + "id" "22480" + "plane" "(256 320 -96) (-256 320 -96) (-256 384 -96)" + "material" "METAL/BLACK_FLOOR_METAL_001D" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22479" + "plane" "(-256 384 -864) (-256 320 -864) (256 320 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22478" + "plane" "(256 320 -864) (-256 320 -864) (-256 320 -96)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22477" + "plane" "(256 384 -864) (256 320 -864) (256 320 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22476" + "plane" "(-256 320 -864) (-256 384 -864) (-256 384 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22475" + "plane" "(-256 384 -864) (256 384 -864) (256 384 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122063" + side + { + "id" "22486" + "plane" "(64 512 112) (-64 512 112) (-64 576 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22485" + "plane" "(-64 576 104) (-64 512 104) (64 512 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22484" + "plane" "(64 512 104) (-64 512 104) (-64 512 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22483" + "plane" "(-64 512 104) (-64 576 104) (-64 576 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22482" + "plane" "(64 576 104) (64 512 104) (64 512 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22481" + "plane" "(-64 576 104) (64 576 104) (64 576 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122065" + side + { + "id" "22498" + "plane" "(96 576 32) (64 576 32) (64 640 32)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22497" + "plane" "(96 640 -96) (64 640 -96) (64 576 -96)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 512] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22496" + "plane" "(64 640 -96) (96 640 -96) (96 640 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22495" + "plane" "(96 576 -96) (64 576 -96) (64 576 32)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22494" + "plane" "(96 640 -96) (96 576 -96) (96 576 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22493" + "plane" "(64 576 -96) (64 640 -96) (64 640 32)" + "material" "METAL/BLACK_WALL_METAL_002E" + "uaxis" "[0 -1 0 -768] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122066" + side + { + "id" "22504" + "plane" "(-64 576 32) (-96 576 32) (-96 640 32)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22503" + "plane" "(-64 640 -96) (-96 640 -96) (-96 576 -96)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 512] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22502" + "plane" "(-96 640 -96) (-64 640 -96) (-64 640 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22501" + "plane" "(-64 576 -96) (-96 576 -96) (-96 576 32)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 -128] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22500" + "plane" "(-64 640 -96) (-64 576 -96) (-64 576 32)" + "material" "METAL/BLACK_WALL_METAL_002E" + "uaxis" "[0 -1 0 -768] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22499" + "plane" "(-96 576 -96) (-96 640 -96) (-96 640 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122068" + side + { + "id" "22516" + "plane" "(-64 512 104) (-96 512 104) (-96 576 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22515" + "plane" "(-64 576 96) (-96 576 96) (-96 512 96)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 512] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22514" + "plane" "(-96 576 96) (-64 576 96) (-64 576 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22513" + "plane" "(-64 512 96) (-96 512 96) (-96 512 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22512" + "plane" "(-96 512 96) (-96 576 96) (-96 576 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22511" + "plane" "(-64 576 96) (-64 512 96) (-64 512 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122852" + side + { + "id" "23650" + "plane" "(64 800 32) (-64 800 32) (-64 816 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23649" + "plane" "(64 816 -96) (-64 816 -96) (-64 800 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23648" + "plane" "(64 800 -96) (-64 800 -96) (-64 800 32)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23647" + "plane" "(-64 816 -96) (64 816 -96) (64 816 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23646" + "plane" "(-64 800 -96) (-64 816 -96) (-64 816 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23645" + "plane" "(64 816 -96) (64 800 -96) (64 800 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 222 123" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122855" + side + { + "id" "23662" + "plane" "(64 768 64) (-64 768 64) (-64 800 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23661" + "plane" "(64 800 32) (-64 800 32) (-64 768 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23660" + "plane" "(64 768 32) (-64 768 32) (-64 768 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23659" + "plane" "(-64 800 32) (64 800 32) (64 800 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23658" + "plane" "(-64 768 32) (-64 800 32) (-64 800 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23657" + "plane" "(64 800 32) (64 768 32) (64 768 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 222 123" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "94657" + side + { + "id" "18800" + "plane" "(80 768 32) (64 768 32) (64 800 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18799" + "plane" "(80 800 -96) (64 800 -96) (64 768 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18798" + "plane" "(80 768 -96) (64 768 -96) (64 768 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18797" + "plane" "(64 800 -96) (80 800 -96) (80 800 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18796" + "plane" "(64 768 -96) (64 800 -96) (64 800 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18795" + "plane" "(80 800 -96) (80 768 -96) (80 768 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 222 123" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "94654" + side + { + "id" "18782" + "plane" "(-64 768 32) (-80 768 32) (-80 800 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18781" + "plane" "(-64 800 -96) (-80 800 -96) (-80 768 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18780" + "plane" "(-64 768 -96) (-80 768 -96) (-80 768 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18779" + "plane" "(-80 800 -96) (-64 800 -96) (-64 800 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18778" + "plane" "(-80 768 -96) (-80 800 -96) (-80 800 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18777" + "plane" "(-64 800 -96) (-64 768 -96) (-64 768 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 222 123" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "94655" + side + { + "id" "18788" + "plane" "(64 768 -96) (-64 768 -96) (-64 800 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18787" + "plane" "(64 800 -112) (-64 800 -112) (-64 768 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18786" + "plane" "(64 768 -112) (-64 768 -112) (-64 768 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18785" + "plane" "(-64 800 -112) (64 800 -112) (64 800 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18784" + "plane" "(-64 768 -112) (-64 800 -112) (-64 800 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18783" + "plane" "(64 800 -112) (64 768 -112) (64 768 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 222 123" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } +} +entity +{ + "id" "137862" + "classname" "linked_portal_door" + "angles" "0 270 0" + "height" "128" + "partnername" "@exit_portal_chamber_side" + "renderamt" "255" + "rendercolor" "255 255 255" + "targetname" "@exit_portal_elevator_side" + "width" "128" + "origin" "0.000999451 781.001 -32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -15768]" + } +} +entity +{ + "id" "137866" + "classname" "prop_testchamber_door" + "angles" "0 90 0" + "renderamt" "255" + "rendercolor" "255 255 255" + "solid" "6" + "targetname" "@exit_airlock_door" + connections + { + "OnFullyClosed" "@exit_portal_chamber_sideClose0-1" + } + "origin" "0 784 -96" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "137874" + "classname" "trigger_once" + "origin" "0 672 -24" + "spawnflags" "4097" + "StartDisabled" "0" + connections + { + "OnTrigger" "@music_stopTrigger0-1" + "OnTrigger" "player_arrived_rlTrigger0-1" + "OnTrigger" "@exit_airlock_doorClose0-1" + } + solid + { + "id" "137875" + side + { + "id" "24526" + "plane" "(96 656 48) (-96 656 48) (-96 688 48)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[-1 0 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24525" + "plane" "(96 688 48) (-96 688 48) (-96 688 -96)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24524" + "plane" "(-96 656 -96) (-96 688 -96) (-96 688 48)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24523" + "plane" "(96 688 -96) (-96 688 -96) (-96 656 -96)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[-1 0 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24522" + "plane" "(96 656 -96) (-96 656 -96) (-96 656 48)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24521" + "plane" "(96 656 48) (96 688 48) (96 688 -96)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 32] 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" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "137878" + "classname" "env_soundscape" + "angles" "0 0 0" + "radius" "128" + "soundscape" "industrial_gen_01" + "origin" "3.5996 599 -67.911" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "136487" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/hanging_walkway_64c.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "0 288 -92" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +entity +{ + "id" "136649" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/hanging_walkway_64d.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "0 352 -92" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +entity +{ + "id" "136672" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/hanging_walkway_64d.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "0 416 -92" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +entity +{ + "id" "136684" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/hanging_walkway_64d.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "0 480 -92" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +entity +{ + "id" "137723" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/hanging_walkway_end_cap.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "0 256 -92" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +entity +{ + "id" "128599" + "classname" "light" + "_constant_attn" "10000" + "_light" "255 255 255 30" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "0 0 0" + "origin" "0 544 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "122202" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/hanging_walkway_end_cap.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "0 544 -92" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +entity +{ + "id" "122236" + "classname" "func_detail" + solid + { + "id" "136188" + side + { + "id" "24448" + "plane" "(-40 256 96) (-40 264 96) (-39 264 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24447" + "plane" "(-33 256 -224) (-39 264 -224) (-40 264 -224)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24446" + "plane" "(-39 264 -224) (-33 256 -224) (-33 256 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-0.6 0.8 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24445" + "plane" "(-40 256 -224) (-40 264 -224) (-40 264 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24444" + "plane" "(-40 264 -224) (-39 264 -224) (-39 264 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24443" + "plane" "(-33 256 -224) (-40 256 -224) (-40 256 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136189" + side + { + "id" "24454" + "plane" "(33 256 96) (39 264 96) (40 264 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24453" + "plane" "(40 256 -224) (40 264 -224) (39 264 -224)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24452" + "plane" "(40 264 -224) (40 256 -224) (40 256 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24451" + "plane" "(33 256 -224) (39 264 -224) (39 264 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-0.6 -0.8 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24450" + "plane" "(39 264 -224) (40 264 -224) (40 264 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24449" + "plane" "(40 256 -224) (33 256 -224) (33 256 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136191" + side + { + "id" "24466" + "plane" "(39 320 96) (39 551 96) (64 576 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24465" + "plane" "(39 551 -96) (39 320 -96) (64 320 -96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24464" + "plane" "(64 576 -96) (64 320 -96) (64 320 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24463" + "plane" "(39 320 -96) (39 551 -96) (39 551 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24462" + "plane" "(39 551 -96) (64 576 -96) (64 576 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24461" + "plane" "(64 320 -96) (39 320 -96) (39 320 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136193" + side + { + "id" "24478" + "plane" "(-64 320 96) (-64 576 96) (-39 551 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24477" + "plane" "(-64 576 -96) (-64 320 -96) (-39 320 -96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24476" + "plane" "(-39 551 -96) (-39 320 -96) (-39 320 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24475" + "plane" "(-64 320 -96) (-64 576 -96) (-64 576 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24474" + "plane" "(-64 576 -96) (-39 551 -96) (-39 551 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24473" + "plane" "(-39 320 -96) (-64 320 -96) (-64 320 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136190" + side + { + "id" "24460" + "plane" "(39 264 96) (39 320 96) (64 320 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24459" + "plane" "(39 320 -224) (39 264 -224) (64 264 -224)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24458" + "plane" "(64 320 -224) (64 264 -224) (64 264 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24457" + "plane" "(39 264 -224) (39 320 -224) (39 320 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24456" + "plane" "(64 264 -224) (39 264 -224) (39 264 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24455" + "plane" "(39 320 -224) (64 320 -224) (64 320 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136192" + side + { + "id" "24472" + "plane" "(-64 264 96) (-64 320 96) (-39 320 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24471" + "plane" "(-64 320 -224) (-64 264 -224) (-39 264 -224)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24470" + "plane" "(-39 320 -224) (-39 264 -224) (-39 264 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24469" + "plane" "(-64 264 -224) (-64 320 -224) (-64 320 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24468" + "plane" "(-39 264 -224) (-64 264 -224) (-64 264 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24467" + "plane" "(-64 320 -224) (-39 320 -224) (-39 320 96)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "122483" + "classname" "func_detail" + solid + { + "id" "122484" + side + { + "id" "23560" + "plane" "(-56 569 103) (56 569 103) (56 569 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 24] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23559" + "plane" "(56 551 103) (-56 551 103) (-56 551 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 24] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23558" + "plane" "(56 551 104) (-56 551 104) (-56 569 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23557" + "plane" "(56 569 103) (-56 569 103) (-56 551 103)" + "material" "LIGHTS/LIGHT_PANEL_COOL" + "uaxis" "[-1 0 0 32] 4" + "vaxis" "[0 -1 0 -20] 4" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23556" + "plane" "(-56 551 104) (-56 551 103) (-56 569 103)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 24] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23555" + "plane" "(56 569 104) (56 569 103) (56 551 103)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 24] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "122485" + "classname" "func_detail" + solid + { + "id" "122486" + side + { + "id" "23566" + "plane" "(-56 537 103) (56 537 103) (56 537 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 24] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23565" + "plane" "(56 519 103) (-56 519 103) (-56 519 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 24] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23564" + "plane" "(56 519 104) (-56 519 104) (-56 537 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23563" + "plane" "(56 537 103) (-56 537 103) (-56 519 103)" + "material" "LIGHTS/LIGHT_PANEL_COOL" + "uaxis" "[-1 0 0 32] 4" + "vaxis" "[0 -1 0 -28] 4" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23562" + "plane" "(-56 519 104) (-56 519 103) (-56 537 103)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 24] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "23561" + "plane" "(56 537 104) (56 537 103) (56 519 103)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 24] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "122511" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/hanging_walkway_32b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "0 528 -92" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +entity +{ + "id" "122515" + "classname" "env_soundscape" + "angles" "0 0 0" + "radius" "128" + "soundscape" "industrial_gen_01" + "origin" "3.5801 471 -99.911" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "122537" + "classname" "prop_static" + "angles" "90 0 0" + "disableshadows" "1" + "drawinfastreflection" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_lab/glass_lightcover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "origin" "0 560 96" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2500 -12768]" + } +} +entity +{ + "id" "122547" + "classname" "prop_static" + "angles" "90 0 0" + "disableshadows" "1" + "drawinfastreflection" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_lab/glass_lightcover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "origin" "0 528 96" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2500 -12768]" + } +} +entity +{ + "id" "93390" + "classname" "func_detail" + solid + { + "id" "93415" + side + { + "id" "18710" + "plane" "(-64 800 -63) (-64 800 -74) (-57 800 -74)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18709" + "plane" "(-64 768 -74) (-64 768 -63) (-60 768 -63)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18708" + "plane" "(-64 768 -63) (-64 768 -74) (-64 800 -74)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18707" + "plane" "(-60 800 -63) (-57 800 -74) (-57 768 -74)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18706" + "plane" "(-60 768 -63) (-64 768 -63) (-64 800 -63)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18705" + "plane" "(-57 800 -74) (-64 800 -74) (-64 768 -74)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93392" + side + { + "id" "18572" + "plane" "(41 800 32) (34 800 32) (34 800 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18571" + "plane" "(41 768 -6) (34 768 0) (34 768 32)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18570" + "plane" "(41 768 32) (34 768 32) (34 800 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18569" + "plane" "(34 768 32) (34 768 0) (34 800 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18568" + "plane" "(41 800 -6) (34 800 0) (34 768 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18567" + "plane" "(41 800 32) (41 800 -6) (41 768 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93393" + side + { + "id" "18578" + "plane" "(-57 768 -28) (-60 768 -39) (-64 768 -39)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18577" + "plane" "(-64 800 -28) (-64 800 -39) (-60 800 -39)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18576" + "plane" "(-64 768 -28) (-64 768 -39) (-64 800 -39)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18575" + "plane" "(-57 800 -28) (-60 800 -39) (-60 768 -39)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18574" + "plane" "(-60 800 -39) (-64 800 -39) (-64 768 -39)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18573" + "plane" "(-57 768 -28) (-64 768 -28) (-64 800 -28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93394" + side + { + "id" "18584" + "plane" "(-60 768 -39) (-61 768 -51) (-64 768 -51)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18583" + "plane" "(-64 800 -39) (-64 800 -51) (-61 800 -51)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18582" + "plane" "(-64 768 -39) (-64 768 -51) (-64 800 -51)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18581" + "plane" "(-61 800 -51) (-64 800 -51) (-64 768 -51)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18580" + "plane" "(-60 800 -39) (-61 800 -51) (-61 768 -51)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18579" + "plane" "(-60 768 -39) (-64 768 -39) (-64 800 -39)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93395" + side + { + "id" "18590" + "plane" "(12 800 32) (0 800 32) (0 800 10)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18589" + "plane" "(12 768 9) (0 768 10) (0 768 32)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18588" + "plane" "(12 768 32) (0 768 32) (0 800 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18587" + "plane" "(12 800 9) (0 800 10) (0 768 10)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18586" + "plane" "(0 768 32) (0 768 10) (0 800 10)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18585" + "plane" "(12 800 32) (12 800 9) (12 768 9)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93396" + side + { + "id" "18596" + "plane" "(24 800 32) (12 800 32) (12 800 9)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18595" + "plane" "(24 768 5) (12 768 9) (12 768 32)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18594" + "plane" "(24 768 32) (12 768 32) (12 800 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18593" + "plane" "(24 800 5) (12 800 9) (12 768 9)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18592" + "plane" "(12 768 32) (12 768 9) (12 800 9)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18591" + "plane" "(24 800 32) (24 800 5) (24 768 5)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93397" + side + { + "id" "18602" + "plane" "(60 800 -39) (61 800 -51) (64 800 -51)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18601" + "plane" "(64 768 -39) (64 768 -51) (61 768 -51)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18600" + "plane" "(64 800 -39) (64 800 -51) (64 768 -51)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18599" + "plane" "(64 800 -51) (61 800 -51) (61 768 -51)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18598" + "plane" "(60 768 -39) (61 768 -51) (61 800 -51)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18597" + "plane" "(64 768 -39) (60 768 -39) (60 800 -39)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93398" + side + { + "id" "18608" + "plane" "(57 800 -28) (60 800 -39) (64 800 -39)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18607" + "plane" "(64 768 -28) (64 768 -39) (60 768 -39)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18606" + "plane" "(64 800 -28) (64 800 -39) (64 768 -39)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18605" + "plane" "(57 768 -28) (60 768 -39) (60 800 -39)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18604" + "plane" "(64 800 -39) (60 800 -39) (60 768 -39)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18603" + "plane" "(64 768 -28) (57 768 -28) (57 800 -28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93399" + side + { + "id" "18614" + "plane" "(34 800 32) (24 800 32) (24 800 5)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18613" + "plane" "(34 768 0) (24 768 5) (24 768 32)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18612" + "plane" "(34 768 32) (24 768 32) (24 800 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18611" + "plane" "(24 768 32) (24 768 5) (24 800 5)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18610" + "plane" "(34 800 0) (24 800 5) (24 768 5)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18609" + "plane" "(34 800 32) (34 800 0) (34 768 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93400" + side + { + "id" "18620" + "plane" "(51 800 -17) (57 800 -28) (64 800 -28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18619" + "plane" "(64 768 -17) (64 768 -28) (57 768 -28)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18618" + "plane" "(64 800 -17) (64 800 -28) (64 768 -28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18617" + "plane" "(64 800 -28) (57 800 -28) (57 768 -28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18616" + "plane" "(51 768 -17) (57 768 -28) (57 800 -28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18615" + "plane" "(64 768 -17) (51 768 -17) (51 800 -17)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93401" + side + { + "id" "18626" + "plane" "(41 800 -6) (51 800 -17) (64 800 -17)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18625" + "plane" "(64 768 -6) (64 768 -17) (51 768 -17)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18624" + "plane" "(64 800 -6) (64 800 -17) (64 768 -17)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18623" + "plane" "(64 800 -17) (51 800 -17) (51 768 -17)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18622" + "plane" "(41 768 -6) (51 768 -17) (51 800 -17)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18621" + "plane" "(64 768 -6) (41 768 -6) (41 800 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93402" + side + { + "id" "18632" + "plane" "(-12 768 32) (0 768 32) (0 768 10)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18631" + "plane" "(-12 800 9) (0 800 10) (0 800 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18630" + "plane" "(0 768 32) (-12 768 32) (-12 800 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18629" + "plane" "(0 800 10) (-12 800 9) (-12 768 9)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18628" + "plane" "(0 800 32) (0 800 10) (0 768 10)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18627" + "plane" "(-12 768 32) (-12 768 9) (-12 800 9)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93403" + side + { + "id" "18638" + "plane" "(-24 768 32) (-12 768 32) (-12 768 9)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18637" + "plane" "(-24 800 5) (-12 800 9) (-12 800 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18636" + "plane" "(-12 768 32) (-24 768 32) (-24 800 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18635" + "plane" "(-12 800 9) (-24 800 5) (-24 768 5)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18634" + "plane" "(-12 800 32) (-12 800 9) (-12 768 9)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18633" + "plane" "(-24 768 32) (-24 768 5) (-24 800 5)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93404" + side + { + "id" "18644" + "plane" "(-41 768 32) (-34 768 32) (-34 768 0)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18643" + "plane" "(-41 800 -6) (-34 800 0) (-34 800 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18642" + "plane" "(-34 768 32) (-41 768 32) (-41 800 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18641" + "plane" "(-34 800 32) (-34 800 0) (-34 768 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18640" + "plane" "(-34 800 0) (-41 800 -6) (-41 768 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18639" + "plane" "(-41 768 32) (-41 768 -6) (-41 800 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93405" + side + { + "id" "18650" + "plane" "(-34 768 32) (-24 768 32) (-24 768 5)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18649" + "plane" "(-34 800 0) (-24 800 5) (-24 800 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18648" + "plane" "(-24 768 32) (-34 768 32) (-34 800 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18647" + "plane" "(-24 800 32) (-24 800 5) (-24 768 5)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18646" + "plane" "(-24 800 5) (-34 800 0) (-34 768 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18645" + "plane" "(-34 768 32) (-34 768 0) (-34 800 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93406" + side + { + "id" "18656" + "plane" "(-41 768 -6) (-51 768 -17) (-64 768 -17)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18655" + "plane" "(-64 800 -6) (-64 800 -17) (-51 800 -17)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18654" + "plane" "(-64 768 -6) (-64 768 -17) (-64 800 -17)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18653" + "plane" "(-51 800 -17) (-64 800 -17) (-64 768 -17)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18652" + "plane" "(-41 800 -6) (-51 800 -17) (-51 768 -17)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18651" + "plane" "(-41 768 -6) (-64 768 -6) (-64 800 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93407" + side + { + "id" "18662" + "plane" "(-51 768 -17) (-57 768 -28) (-64 768 -28)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18661" + "plane" "(-64 800 -17) (-64 800 -28) (-57 800 -28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18660" + "plane" "(-64 768 -17) (-64 768 -28) (-64 800 -28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18659" + "plane" "(-57 800 -28) (-64 800 -28) (-64 768 -28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18658" + "plane" "(-51 800 -17) (-57 800 -28) (-57 768 -28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18657" + "plane" "(-51 768 -17) (-64 768 -17) (-64 800 -17)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93408" + side + { + "id" "18668" + "plane" "(64 768 -74) (64 768 -85) (51 768 -85)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18667" + "plane" "(64 800 -85) (64 800 -74) (57 800 -74)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18666" + "plane" "(64 800 -74) (64 800 -85) (64 768 -85)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18665" + "plane" "(64 768 -74) (57 768 -74) (57 800 -74)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18664" + "plane" "(57 768 -74) (51 768 -85) (51 800 -85)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18663" + "plane" "(64 800 -85) (51 800 -85) (51 768 -85)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93409" + side + { + "id" "18674" + "plane" "(64 768 -85) (64 768 -96) (41 768 -96)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18673" + "plane" "(64 800 -96) (64 800 -85) (51 800 -85)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18672" + "plane" "(64 800 -85) (64 800 -96) (64 768 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18671" + "plane" "(64 768 -85) (51 768 -85) (51 800 -85)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18670" + "plane" "(51 768 -85) (41 768 -96) (41 800 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18669" + "plane" "(64 800 -96) (41 800 -96) (41 768 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93410" + side + { + "id" "18680" + "plane" "(64 768 -63) (64 768 -74) (57 768 -74)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18679" + "plane" "(64 800 -74) (64 800 -63) (60 800 -63)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18678" + "plane" "(64 800 -63) (64 800 -74) (64 768 -74)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18677" + "plane" "(60 768 -63) (57 768 -74) (57 800 -74)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18676" + "plane" "(64 768 -63) (60 768 -63) (60 800 -63)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18675" + "plane" "(64 800 -74) (57 800 -74) (57 768 -74)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93411" + side + { + "id" "18686" + "plane" "(64 768 -51) (64 768 -63) (60 768 -63)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18685" + "plane" "(64 800 -63) (64 800 -51) (61 800 -51)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18684" + "plane" "(64 800 -51) (64 800 -63) (64 768 -63)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18683" + "plane" "(64 768 -51) (61 768 -51) (61 800 -51)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18682" + "plane" "(61 768 -51) (60 768 -63) (60 800 -63)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18681" + "plane" "(64 800 -63) (60 800 -63) (60 768 -63)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93412" + side + { + "id" "18692" + "plane" "(-64 800 -85) (-64 800 -96) (-41 800 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18691" + "plane" "(-64 768 -96) (-64 768 -85) (-51 768 -85)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18690" + "plane" "(-64 768 -85) (-64 768 -96) (-64 800 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18689" + "plane" "(-51 768 -85) (-64 768 -85) (-64 800 -85)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18688" + "plane" "(-51 800 -85) (-41 800 -96) (-41 768 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18687" + "plane" "(-41 800 -96) (-64 800 -96) (-64 768 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93413" + side + { + "id" "18698" + "plane" "(-64 800 -74) (-64 800 -85) (-51 800 -85)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18697" + "plane" "(-64 768 -85) (-64 768 -74) (-57 768 -74)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18696" + "plane" "(-64 768 -74) (-64 768 -85) (-64 800 -85)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18695" + "plane" "(-57 768 -74) (-64 768 -74) (-64 800 -74)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18694" + "plane" "(-57 800 -74) (-51 800 -85) (-51 768 -85)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18693" + "plane" "(-51 800 -85) (-64 800 -85) (-64 768 -85)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93414" + side + { + "id" "18704" + "plane" "(-64 800 -51) (-64 800 -63) (-60 800 -63)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18703" + "plane" "(-64 768 -63) (-64 768 -51) (-61 768 -51)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18702" + "plane" "(-64 768 -51) (-64 768 -63) (-64 800 -63)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18701" + "plane" "(-61 768 -51) (-64 768 -51) (-64 800 -51)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18700" + "plane" "(-61 800 -51) (-60 800 -63) (-60 768 -63)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18699" + "plane" "(-60 800 -63) (-64 800 -63) (-64 768 -63)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136427" + side + { + "id" "24497" + "plane" "(64 768 32) (64 768 -6) (41 768 -6)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24498" + "plane" "(41 800 32) (41 800 -6) (64 800 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24499" + "plane" "(41 768 32) (41 768 -6) (41 800 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 52] 0.25" + "vaxis" "[0 1 0 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24500" + "plane" "(64 800 32) (64 800 -6) (64 768 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -52] 0.25" + "vaxis" "[0 1 0 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24501" + "plane" "(64 768 32) (41 768 32) (41 800 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24502" + "plane" "(64 800 -6) (41 800 -6) (41 768 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136426" + side + { + "id" "24491" + "plane" "(-41 768 32) (-41 768 -6) (-64 768 -6)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24492" + "plane" "(-64 800 32) (-64 800 -6) (-41 800 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24493" + "plane" "(-64 768 32) (-64 768 -6) (-64 800 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 52] 0.25" + "vaxis" "[0 1 0 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24494" + "plane" "(-41 800 32) (-41 800 -6) (-41 768 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -52] 0.25" + "vaxis" "[0 1 0 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24495" + "plane" "(-41 768 32) (-64 768 32) (-64 800 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24496" + "plane" "(-41 800 -6) (-64 800 -6) (-64 768 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -7768]" + } +} +cameras +{ + "activecamera" "0" + camera + { + "position" "[232.421 33.6662 849.647]" + "look" "[185.227 74.9818 842.611]" + } + camera + { + "position" "[127.087 1215.37 105.064]" + "look" "[116.232 1268.25 72.3711]" + } + camera + { + "position" "[127.087 1215.37 105.064]" + "look" "[116.232 1268.25 72.3711]" + } + camera + { + "position" "[-1328.35 -414.129 12.6516]" + "look" "[-1338.82 -354.756 31.314]" + } + camera + { + "position" "[127.087 1215.37 105.064]" + "look" "[116.232 1268.25 72.3711]" + } + camera + { + "position" "[127.087 1215.37 105.064]" + "look" "[116.232 1268.25 72.3711]" + } +} +cordons +{ + "active" "0" + cordon + { + "name" "cordon" + "active" "1" + box + { + "mins" "(-11552 -224 -448)" + "maxs" "(-10240 1216 1024)" + } + } +} diff --git a/packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_exit/stair_up.vmf b/packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_exit/stair_up.vmf new file mode 100644 index 0000000000..8eb77309c3 --- /dev/null +++ b/packages/valve/clean_style/resources/instances/clean/elevator_sp/elevator_exit/stair_up.vmf @@ -0,0 +1,5454 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "1061" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "8" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "1061" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black" + solid + { + "id" "147844" + side + { + "id" "25109" + "plane" "(-256 320 -224) (-256 384 -224) (256 384 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25110" + "plane" "(-256 384 -864) (-256 320 -864) (256 320 -864)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25111" + "plane" "(-256 320 -864) (-256 384 -864) (-256 384 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25112" + "plane" "(256 384 -864) (256 320 -864) (256 320 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25113" + "plane" "(-256 384 -864) (256 384 -864) (256 384 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25114" + "plane" "(256 320 -864) (-256 320 -864) (-256 320 -224)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 151 112" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "147853" + side + { + "id" "25115" + "plane" "(72 384 -224) (72 384 -232) (64 384 -232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25116" + "plane" "(64 416 -224) (64 416 -232) (72 416 -232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25117" + "plane" "(64 384 -224) (64 384 -232) (64 416 -232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -48] 0.25" + "vaxis" "[0 1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25118" + "plane" "(72 416 -224) (72 416 -232) (72 384 -232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -48] 0.25" + "vaxis" "[0 1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25119" + "plane" "(72 384 -224) (64 384 -224) (64 416 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25120" + "plane" "(72 416 -232) (64 416 -232) (64 384 -232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 169 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "147856" + side + { + "id" "25132" + "plane" "(-64 384 -224) (-64 384 -232) (-72 384 -232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25131" + "plane" "(-72 416 -224) (-72 416 -232) (-64 416 -232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25130" + "plane" "(-72 384 -224) (-72 384 -232) (-72 416 -232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -48] 0.25" + "vaxis" "[0 1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25129" + "plane" "(-64 416 -224) (-64 416 -232) (-64 384 -232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -48] 0.25" + "vaxis" "[0 1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25128" + "plane" "(-64 384 -224) (-72 384 -224) (-72 416 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25127" + "plane" "(-64 416 -232) (-72 416 -232) (-72 384 -232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 169 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "147595" + side + { + "id" "24994" + "plane" "(64 576 104) (64 512 104) (64 512 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 14] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24993" + "plane" "(-64 512 104) (-64 576 104) (-64 576 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24992" + "plane" "(-64 512 112) (-64 576 112) (64 576 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -2] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24991" + "plane" "(-64 576 104) (-64 512 104) (64 512 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -2] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24990" + "plane" "(-64 576 112) (-64 576 104) (64 576 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 0 -1 62] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24989" + "plane" "(64 512 112) (64 512 104) (-64 512 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 62] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 219 132" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136303" + side + { + "id" "24700" + "plane" "(-96 608 96) (-96 640 96) (96 640 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24699" + "plane" "(96 640 32) (96 640 96) (-96 640 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24698" + "plane" "(96 608 32) (96 608 96) (96 640 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24697" + "plane" "(-96 640 32) (-96 640 96) (-96 608 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24696" + "plane" "(-96 608 32) (-96 608 96) (96 608 96)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 886.28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24695" + "plane" "(96 640 32) (-96 640 32) (-96 608 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 143 160" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136304" + side + { + "id" "24706" + "plane" "(-64 608 32) (-64 640 32) (64 640 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24705" + "plane" "(-64 640 -96) (-64 608 -96) (64 608 -96)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 -1 0 896] 0.25" + "vaxis" "[1 0 0 512] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24704" + "plane" "(64 640 -96) (64 608 -96) (64 608 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 54.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24703" + "plane" "(-64 608 -96) (-64 640 -96) (-64 640 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 54.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24702" + "plane" "(64 608 -96) (-64 608 -96) (-64 608 32)" + "material" "METAL/BLACK_WALL_METAL_002C" + "uaxis" "[1 0 0 768] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "24701" + "plane" "(-64 640 -96) (64 640 -96) (64 640 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 54.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 233 234" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136312" + side + { + "id" "24748" + "plane" "(-64 320 -160) (-64 384 -160) (64 384 -160)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 768] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24747" + "plane" "(-64 384 -224) (-64 320 -224) (64 320 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24746" + "plane" "(64 384 -224) (64 320 -224) (64 320 -160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 54.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24745" + "plane" "(-64 320 -224) (-64 384 -224) (-64 384 -160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 54.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24744" + "plane" "(64 320 -224) (-64 320 -224) (-64 320 -160)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24743" + "plane" "(-64 384 -224) (64 384 -224) (64 384 -160)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 1 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 101 250" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136315" + side + { + "id" "24766" + "plane" "(-80 320 160) (-80 384 160) (80 384 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24765" + "plane" "(-80 384 32) (-80 320 32) (80 320 32)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[-1 0 0 -512] 0.25" + "vaxis" "[0 -1 0 -768] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24764" + "plane" "(80 384 32) (80 320 32) (80 320 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24763" + "plane" "(-80 320 32) (-80 384 32) (-80 384 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24762" + "plane" "(80 320 32) (-80 320 32) (-80 320 160)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24761" + "plane" "(-80 384 32) (80 384 32) (80 384 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 172" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136321" + side + { + "id" "24778" + "plane" "(-96 576 96) (-96 608 96) (96 608 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24777" + "plane" "(96 608 32) (96 608 96) (-96 608 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24776" + "plane" "(96 576 32) (96 576 96) (96 608 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24775" + "plane" "(-96 608 32) (-96 608 96) (-96 576 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24774" + "plane" "(-96 576 32) (-96 576 96) (96 576 96)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 -640] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24773" + "plane" "(96 608 32) (-96 608 32) (-96 576 32)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 -640] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 169 214" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136334" + side + { + "id" "24784" + "plane" "(-96 384 32) (-96 512 32) (-64 512 32)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24783" + "plane" "(-96 512 -224) (-96 384 -224) (-64 384 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.894427 0 -0.447214 24.2749] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24782" + "plane" "(-64 512 -224) (-64 384 -224) (-64 384 32)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[0 1 0 -512] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "4" + "smoothing_groups" "0" + } + side + { + "id" "24781" + "plane" "(-96 384 -224) (-96 512 -224) (-96 512 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24780" + "plane" "(-96 512 -224) (-64 512 -224) (-64 512 32)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 384] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24779" + "plane" "(-64 384 -224) (-96 384 -224) (-96 384 32)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -153.72] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 225 214" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136335" + side + { + "id" "24790" + "plane" "(-96 384 96) (-96 512 96) (96 512 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24789" + "plane" "(96 512 32) (-96 512 32) (-96 384 32)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[-1 0 0 -512] 0.25" + "vaxis" "[0 -1 0 -768] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24788" + "plane" "(-96 512 32) (96 512 32) (96 512 96)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 384] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24787" + "plane" "(96 512 32) (96 384 32) (96 384 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 54.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24786" + "plane" "(-96 384 32) (-96 512 32) (-96 512 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 54.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24785" + "plane" "(96 384 32) (-96 384 32) (-96 384 96)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -137.72] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 236" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136336" + side + { + "id" "24796" + "plane" "(96 512 96) (96 576 96) (112 576 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24795" + "plane" "(112 576 -224) (96 576 -224) (96 512 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24794" + "plane" "(96 576 -224) (112 576 -224) (112 576 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24793" + "plane" "(112 576 -224) (112 512 -224) (112 512 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24792" + "plane" "(96 512 -224) (96 576 -224) (96 576 96)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "24791" + "plane" "(112 512 -224) (96 512 -224) (96 512 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 101 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136337" + side + { + "id" "24802" + "plane" "(-112 512 96) (-112 576 96) (-96 576 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24801" + "plane" "(-96 576 -224) (-112 576 -224) (-112 512 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24800" + "plane" "(-112 576 -224) (-96 576 -224) (-96 576 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24799" + "plane" "(-96 576 -224) (-96 512 -224) (-96 512 96)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 1 0 -256] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "24798" + "plane" "(-112 512 -224) (-112 576 -224) (-112 576 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24797" + "plane" "(-96 512 -224) (-112 512 -224) (-112 512 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 251 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136338" + side + { + "id" "24808" + "plane" "(96 512 -224) (-96 512 -224) (-96 640 -224)" + "material" "METAL/BLACK_FLOOR_METAL_001D" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24807" + "plane" "(96 640 -256) (-96 640 -256) (-96 512 -256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24806" + "plane" "(-96 640 -256) (96 640 -256) (96 640 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24805" + "plane" "(96 512 -256) (-96 512 -256) (-96 512 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 54.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24804" + "plane" "(96 640 -256) (96 512 -256) (96 512 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24803" + "plane" "(-96 512 -256) (-96 640 -256) (-96 640 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 133 198" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136339" + side + { + "id" "24814" + "plane" "(-64 320 32) (-80 320 32) (-80 384 32)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24813" + "plane" "(-80 384 -224) (-80 320 -224) (-64 320 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24812" + "plane" "(-64 320 -224) (-80 320 -224) (-80 320 32)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24811" + "plane" "(-64 384 -224) (-64 320 -224) (-64 320 32)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[0 1 0 -512] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "4" + "smoothing_groups" "0" + } + side + { + "id" "24810" + "plane" "(-80 320 -224) (-80 384 -224) (-80 384 32)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -137.72] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24809" + "plane" "(-80 384 -224) (-64 384 -224) (-64 384 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 231 112" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136340" + side + { + "id" "24820" + "plane" "(80 320 32) (64 320 32) (64 384 32)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24819" + "plane" "(64 384 -224) (64 320 -224) (80 320 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24818" + "plane" "(80 320 -224) (64 320 -224) (64 320 32)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24817" + "plane" "(80 384 -224) (80 320 -224) (80 320 32)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -137.72] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24816" + "plane" "(64 320 -224) (64 384 -224) (64 384 32)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[0 -1 0 -512] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "4" + "smoothing_groups" "0" + } + side + { + "id" "24815" + "plane" "(64 384 -224) (80 384 -224) (80 384 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 241 182" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136342" + side + { + "id" "24832" + "plane" "(64 384 32) (64 512 32) (96 512 32)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24831" + "plane" "(64 512 -224) (64 384 -224) (96 384 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.894427 0 0.447214 -57.2434] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24830" + "plane" "(96 512 -224) (96 384 -224) (96 384 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24829" + "plane" "(64 384 -224) (64 512 -224) (64 512 32)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[0 -1 0 -512] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "4" + "smoothing_groups" "0" + } + side + { + "id" "24828" + "plane" "(64 512 -224) (96 512 -224) (96 512 32)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 384] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24827" + "plane" "(96 384 -224) (64 384 -224) (64 384 32)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -153.72] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 165 250" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136343" + side + { + "id" "24838" + "plane" "(-64 416 -224) (-64 512 -224) (64 512 -224)" + "material" "METAL/BLACK_FLOOR_METAL_001D" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24837" + "plane" "(64 512 -240) (-64 512 -240) (-64 416 -240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24836" + "plane" "(-64 512 -240) (64 512 -240) (64 512 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 54.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24835" + "plane" "(64 512 -240) (64 416 -240) (64 416 -224)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[0.894427 0 -0.447214 24.2749] 0.25" + "vaxis" "[0 -1 0 -256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24834" + "plane" "(-64 416 -240) (-64 512 -240) (-64 512 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.894427 0 0.447214 -24.2749] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24833" + "plane" "(64 416 -240) (-64 416 -240) (-64 416 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 255 196" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136369" + side + { + "id" "24856" + "plane" "(96 576 32) (64 576 32) (64 640 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24855" + "plane" "(96 640 -224) (64 640 -224) (64 576 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24854" + "plane" "(64 640 -224) (96 640 -224) (96 640 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 54.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24853" + "plane" "(96 576 -224) (64 576 -224) (64 576 32)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 -640] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "24852" + "plane" "(96 640 -224) (96 576 -224) (96 576 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24851" + "plane" "(64 576 -224) (64 640 -224) (64 640 32)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 -1 0 896] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + editor + { + "color" "0 153 198" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136370" + side + { + "id" "24862" + "plane" "(-64 576 32) (-96 576 32) (-96 640 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24861" + "plane" "(-64 640 -224) (-96 640 -224) (-96 576 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24860" + "plane" "(-96 640 -224) (-64 640 -224) (-64 640 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 54.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24859" + "plane" "(-64 576 -224) (-96 576 -224) (-96 576 32)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 -640] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "24858" + "plane" "(-64 640 -224) (-64 576 -224) (-64 576 32)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[0 1 0 -128] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "24857" + "plane" "(-96 576 -224) (-96 640 -224) (-96 640 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 143 208" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136388" + side + { + "id" "24868" + "plane" "(96 512 104) (64 512 104) (64 576 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.894427 0 0.447214 -24.2749] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24867" + "plane" "(96 576 96) (64 576 96) (64 512 96)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 -512] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24866" + "plane" "(64 576 96) (96 576 96) (96 576 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 -0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 38.28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24865" + "plane" "(96 511.983 96) (64 512 96) (64 512 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 38.28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24864" + "plane" "(96 576 96) (96 511.983 96) (96 512 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24863" + "plane" "(64 512 96) (64 576 96) (64 576 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 38.28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 185 178" + "groupid" "136387" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136389" + side + { + "id" "24874" + "plane" "(-64 576 104) (-64 584 104) (64 584 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -0.894427 -0.447214 24.2754] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24873" + "plane" "(64 584 96) (-64 584 96) (-64 576 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24872" + "plane" "(-64 584 96) (64 584 96) (64 584 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24871" + "plane" "(-64 576 96) (-64 584 96) (-64 584 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 38.28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24870" + "plane" "(64 584 96) (64 576 96) (64 576 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 38.28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24869" + "plane" "(64 576 96) (-64 576 96) (-64 576 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 38.28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 185 178" + "groupid" "136387" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136390" + side + { + "id" "24880" + "plane" "(-64 504 104) (-64 512 104) (64 512 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -0.894427 0.447214 -24.2754] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24879" + "plane" "(64 512 96) (-64 512 96) (-64 504 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24878" + "plane" "(-64 512 96) (64 512 96) (64 512 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 38.28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24877" + "plane" "(-64 504 96) (-64 512 96) (-64 512 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 -0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 38.28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24876" + "plane" "(64 512 96) (64 504 96) (64 504 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 38.28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24875" + "plane" "(64 504 96) (-64 504 96) (-64 504 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 185 178" + "groupid" "136387" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136392" + side + { + "id" "24892" + "plane" "(-64 512 104) (-96 512 104) (-96 576 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.894427 0 -0.447214 24.2749] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24891" + "plane" "(-64 576 96) (-96 576 96) (-96 512.012 96)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[-1 0 0 -512] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24890" + "plane" "(-96 576 96) (-64 576 96) (-64 576 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 38.28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24889" + "plane" "(-64 512.012 96) (-96 512.012 96) (-96 512 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 0] 0.25" + "vaxis" "[0 0 -1 38.28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24888" + "plane" "(-96 512.012 96) (-96 576 96) (-96 576 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24887" + "plane" "(-64 576 96) (-64 512.012 96) (-64 512 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 38.28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 185 178" + "groupid" "136387" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136407" + side + { + "id" "24898" + "plane" "(64 384 -240) (-64 384 -240) (-64 384 -232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.5] 0.25" + "vaxis" "[0 0 -1 54.7959] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24897" + "plane" "(-64 416 -240) (64 416 -240) (64 416 -232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.5] 0.25" + "vaxis" "[0 0 -1 54.7959] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24896" + "plane" "(64 416 -240) (-64 416 -240) (-64 384 -240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -2] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24895" + "plane" "(64 384 -232) (-64 384 -232) (-64 416 -232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -2] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24894" + "plane" "(-64 384 -232) (-64 384 -240) (-64 416 -240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0.5] 0.25" + "vaxis" "[0 0 -1 52.7959] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24893" + "plane" "(64 416 -232) (64 416 -240) (64 384 -240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.5] 0.25" + "vaxis" "[0 0 -1 52.7959] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 195 232" + "groupid" "136406" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "147500" + side + { + "id" "24923" + "plane" "(-96 640 -96) (-96 704 -96) (-96 704 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24924" + "plane" "(96 704 -96) (96 640 -96) (96 640 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24925" + "plane" "(-96 704 -96) (-96 640 -96) (96 640 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24926" + "plane" "(-96 640 -64) (-96 704 -64) (96 704 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24927" + "plane" "(-96 704 -64) (-96 704 -96) (96 704 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24928" + "plane" "(96 640 -64) (96 640 -96) (-96 640 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 171 152" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "147501" + side + { + "id" "24929" + "plane" "(-64 672 -224) (-64 704 -224) (-64 704 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24930" + "plane" "(64 704 -224) (64 672 -224) (64 672 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24931" + "plane" "(-64 704 -224) (-64 672 -224) (64 672 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24932" + "plane" "(-64 672 -96) (-64 704 -96) (64 704 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24933" + "plane" "(-64 704 -96) (-64 704 -224) (64 704 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24934" + "plane" "(64 672 -96) (64 672 -224) (-64 672 -224)" + "material" "TOOLS/TOOLSBLACK_NOPORTAL" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 109 146" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "147502" + side + { + "id" "24935" + "plane" "(-96 640 -256) (-96 704 -256) (-96 704 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24936" + "plane" "(96 704 -256) (96 640 -256) (96 640 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24937" + "plane" "(-96 704 -256) (-96 640 -256) (96 640 -256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24938" + "plane" "(-96 640 -224) (-96 704 -224) (96 704 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24939" + "plane" "(-96 704 -224) (-96 704 -256) (96 704 -256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24940" + "plane" "(96 640 -224) (96 640 -256) (-96 640 -256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 103 152" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "147503" + side + { + "id" "24941" + "plane" "(64 640 -96) (64 704 -96) (96 704 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24942" + "plane" "(64 704 -224) (64 640 -224) (96 640 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24943" + "plane" "(64 640 -224) (64 704 -224) (64 704 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24944" + "plane" "(96 704 -224) (96 640 -224) (96 640 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24945" + "plane" "(64 704 -224) (96 704 -224) (96 704 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24946" + "plane" "(96 640 -224) (64 640 -224) (64 640 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 145 170" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "147504" + side + { + "id" "24947" + "plane" "(-96 640 -96) (-96 704 -96) (-64 704 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24948" + "plane" "(-96 704 -224) (-96 640 -224) (-64 640 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24949" + "plane" "(-96 640 -224) (-96 704 -224) (-96 704 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24950" + "plane" "(-64 704 -224) (-64 640 -224) (-64 640 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24951" + "plane" "(-96 704 -224) (-64 704 -224) (-64 704 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24952" + "plane" "(-64 640 -224) (-96 640 -224) (-96 640 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 203 232" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122043" + side + { + "id" "22366" + "plane" "(-80 320 160) (-256 320 160) (-256 384 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22365" + "plane" "(-256 384 -224) (-256 320 -224) (-80 320 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22364" + "plane" "(-80 320 -224) (-256 320 -224) (-256 320 160)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22363" + "plane" "(-80 384 -224) (-80 320 -224) (-80 320 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22362" + "plane" "(-256 320 -224) (-256 384 -224) (-256 384 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22361" + "plane" "(-256 384 -224) (-80 384 -224) (-80 384 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122056" + side + { + "id" "22444" + "plane" "(256 320 160) (80 320 160) (80 384 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22443" + "plane" "(80 384 -224) (80 320 -224) (256 320 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22442" + "plane" "(256 320 -224) (80 320 -224) (80 320 160)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22441" + "plane" "(256 384 -224) (256 320 -224) (256 320 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22440" + "plane" "(80 320 -224) (80 384 -224) (80 384 160)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22439" + "plane" "(80 384 -224) (256 384 -224) (256 384 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "122061" + side + { + "id" "22474" + "plane" "(256 320 1056) (-256 320 1056) (-256 384 1056)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22473" + "plane" "(-256 384 160) (-256 320 160) (256 320 160)" + "material" "METAL/BLACK_WALL_METAL_002A" + "uaxis" "[-1 0 0 512] 0.25" + "vaxis" "[0 1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22472" + "plane" "(256 320 160) (-256 320 160) (-256 320 1056)" + "material" "ANIM_WP/FRAMEWORK/BACKPANELS_NOSPEC" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22471" + "plane" "(256 384 160) (256 320 160) (256 320 1056)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22470" + "plane" "(-256 320 160) (-256 384 160) (-256 384 1056)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "22469" + "plane" "(-256 384 160) (256 384 160) (256 384 1056)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "136386" + editor + { + "color" "0 185 178" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "136387" + editor + { + "color" "0 185 178" + "groupid" "136386" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "136406" + editor + { + "color" "0 195 232" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } +} +entity +{ + "id" "148021" + "classname" "trigger_once" + "origin" "0 544 -96" + "spawnflags" "4097" + "StartDisabled" "0" + connections + { + "OnTrigger" "@exit_airlock_doorClose0-1" + "OnTrigger" "@music_stopTrigger0-1" + "OnTrigger" "player_arrived_rlTrigger0-1" + } + solid + { + "id" "148022" + side + { + "id" "25144" + "plane" "(96 528 32) (-96 528 32) (-96 560 32)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25143" + "plane" "(96 560 32) (-96 560 32) (-96 560 -224)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25142" + "plane" "(-96 528 -224) (-96 560 -224) (-96 560 32)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25141" + "plane" "(96 560 -224) (-96 560 -224) (-96 528 -224)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25140" + "plane" "(96 528 -224) (-96 528 -224) (-96 528 32)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25139" + "plane" "(96 528 32) (96 560 32) (96 560 -224)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 -1 0 -32] 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" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "148025" + "classname" "env_soundscape" + "angles" "0 0 0" + "radius" "128" + "soundscape" "industrial_gen_01" + "origin" "3.5996 535 -163.911" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "148036" + "classname" "linked_portal_door" + "angles" "0 270 0" + "height" "128" + "partnername" "@exit_portal_chamber_side" + "renderamt" "255" + "rendercolor" "255 255 255" + "targetname" "@exit_portal_elevator_side" + "width" "128" + "origin" "0.000999451 653.001 -160" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -15768]" + } +} +entity +{ + "id" "148040" + "classname" "prop_testchamber_door" + "angles" "0 90 0" + "renderamt" "255" + "rendercolor" "255 255 255" + "solid" "6" + "targetname" "@exit_airlock_door" + connections + { + "OnFullyClosed" "@exit_portal_chamber_sideClose0-1" + } + "origin" "0 656 -224" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "147596" + "classname" "prop_static" + "angles" "90 180 0" + "disableshadows" "1" + "drawinfastreflection" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_lab/glass_lightcover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "origin" "0 528 96" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2500 -12768]" + } +} +entity +{ + "id" "147606" + "classname" "func_detail" + solid + { + "id" "147607" + side + { + "id" "25024" + "plane" "(56 519 103) (-56 519 103) (-56 519 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25023" + "plane" "(-56 537 103) (56 537 103) (56 537 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25022" + "plane" "(56 519 104) (-56 519 104) (-56 537 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25021" + "plane" "(56 537 103) (-56 537 103) (-56 519 103)" + "material" "LIGHTS/LIGHT_PANEL_COOL" + "uaxis" "[-1 0 0 32] 4" + "vaxis" "[0 -1 0 32] 4" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25020" + "plane" "(56 537 104) (56 537 103) (56 519 103)" + "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" "25019" + "plane" "(-56 519 104) (-56 519 103) (-56 537 103)" + "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" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "147661" + "classname" "prop_static" + "angles" "90 180 0" + "disableshadows" "1" + "drawinfastreflection" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_lab/glass_lightcover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "origin" "0 560 96" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2500 -12768]" + } +} +entity +{ + "id" "147671" + "classname" "func_detail" + solid + { + "id" "147672" + side + { + "id" "25096" + "plane" "(56 551 103) (-56 551 103) (-56 551 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25095" + "plane" "(-56 569 103) (56 569 103) (56 569 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25094" + "plane" "(56 551 104) (-56 551 104) (-56 569 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25093" + "plane" "(56 569 103) (-56 569 103) (-56 551 103)" + "material" "LIGHTS/LIGHT_PANEL_COOL" + "uaxis" "[-1 0 0 32] 4" + "vaxis" "[0 -1 0 32] 4" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25092" + "plane" "(56 569 104) (56 569 103) (56 551 103)" + "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" "25091" + "plane" "(-56 551 104) (-56 551 103) (-56 569 103)" + "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" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "136305" + "classname" "func_detail" + solid + { + "id" "136306" + side + { + "id" "24712" + "plane" "(-40 256 32) (-40 264 32) (-39 264 32)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 -20] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24711" + "plane" "(-33 256 -224) (-39 264 -224) (-40 264 -224)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 -20] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24710" + "plane" "(-39 264 -224) (-33 256 -224) (-33 256 32)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-0.6 0.8 0 -32] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24709" + "plane" "(-40 256 -224) (-40 264 -224) (-40 264 32)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24708" + "plane" "(-40 264 -224) (-39 264 -224) (-39 264 32)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 -20] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24707" + "plane" "(-33 256 -224) (-40 256 -224) (-40 256 32)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 -20] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136307" + side + { + "id" "24718" + "plane" "(33 256 32) (39 264 32) (40 264 32)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24717" + "plane" "(40 256 -224) (40 264 -224) (39 264 -224)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24716" + "plane" "(40 264 -224) (40 256 -224) (40 256 32)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24715" + "plane" "(33 256 -224) (39 264 -224) (39 264 32)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-0.6 -0.8 0 -32] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24714" + "plane" "(39 264 -224) (40 264 -224) (40 264 32)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24713" + "plane" "(40 256 -224) (33 256 -224) (33 256 32)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136308" + side + { + "id" "24724" + "plane" "(39 264 32) (39 576 32) (64 576 32)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24723" + "plane" "(39 576 -224) (39 264 -224) (64 264 -224)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24722" + "plane" "(64 576 -224) (64 264 -224) (64 264 32)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24721" + "plane" "(39 264 -224) (39 576 -224) (39 576 32)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24720" + "plane" "(39 576 -224) (64 576 -224) (64 576 32)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24719" + "plane" "(64 264 -224) (39 264 -224) (39 264 32)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "136309" + side + { + "id" "24730" + "plane" "(-64 264 32) (-64 576 32) (-39 576 32)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 -28] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24729" + "plane" "(-64 576 -224) (-64 264 -224) (-39 264 -224)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 -28] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24728" + "plane" "(-39 576 -224) (-39 264 -224) (-39 264 32)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24727" + "plane" "(-64 264 -224) (-64 576 -224) (-64 576 32)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24726" + "plane" "(-64 576 -224) (-39 576 -224) (-39 576 32)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[-1 0 0 -28] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24725" + "plane" "(-39 264 -224) (-64 264 -224) (-64 264 32)" + "material" "TOOLS/TOOLSPLAYERCLIP" + "uaxis" "[1 0 0 -28] 0.25" + "vaxis" "[0 0 -1 38.2803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "136326" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/hanging_walkway_32b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "1.43051e-005 304 -92" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +entity +{ + "id" "136330" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/hanging_walkway_end_cap.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "-9.53674e-006 576 -220" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +entity +{ + "id" "136344" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/hanging_walkway_32b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "1.71661e-005 272 -92" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +entity +{ + "id" "136361" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/hanging_stair_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "9.53674e-007 448 -156" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +entity +{ + "id" "136382" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props_bts/hanging_walkway_end_cap.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "origin" "1.81198e-005 256 -92" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +entity +{ + "id" "136399" + "classname" "light_spot" + "_cone" "80" + "_constant_attn" "100000" + "_exponent" "1" + "_inner_cone" "1" + "_light" "183 204 218 25" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "_shadoworiginoffset" "0 0 0" + "angles" "-75 270 -90" + "pitch" "-75" + "origin" "-7.62939e-006 568 86.527" + editor + { + "color" "0 185 178" + "groupid" "136386" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "136408" + "classname" "prop_dynamic" + "angles" "-90 0 0" + "fademindist" "-1" + "fadescale" "1" + "MaxAnimTime" "10" + "MinAnimTime" "5" + "model" "models/props_lab/glass_lightcover.mdl" + "physdamagescale" "1.0" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "2" + "solid" "6" + "origin" "0 400 -224" + editor + { + "color" "0 195 232" + "groupid" "136406" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "136412" + "classname" "func_detail" + solid + { + "id" "136413" + side + { + "id" "24904" + "plane" "(56 391 -232) (-56 391 -232) (-56 391 -231)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32.5] 0.25" + "vaxis" "[0 0 -1 54.7803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24903" + "plane" "(-56 409 -232) (56 409 -232) (56 409 -231)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32.5] 0.25" + "vaxis" "[0 0 -1 54.7803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24902" + "plane" "(56 409 -232) (-56 409 -232) (-56 391 -232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24901" + "plane" "(56 391 -231) (-56 391 -231) (-56 409 -231)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[1 0 0 -50] 1.5" + "vaxis" "[0 -1 0 -28] 1.5" + "rotation" "0" + "lightmapscale" "4" + "smoothing_groups" "0" + } + side + { + "id" "24900" + "plane" "(-56 391 -231) (-56 391 -232) (-56 409 -232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32.5] 0.25" + "vaxis" "[0 0 -1 18.7803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "24899" + "plane" "(56 409 -231) (56 409 -232) (56 391 -232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32.5] 0.25" + "vaxis" "[0 0 -1 18.7803] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 195 232" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 195 232" + "groupid" "136406" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 11000]" + } +} +entity +{ + "id" "125568" + "classname" "func_instance_parms" + "parm1" "$no_player_start boolean 0" + "origin" "0 504 -88" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "93390" + "classname" "func_detail" + solid + { + "id" "93415" + side + { + "id" "18710" + "plane" "(-64 672 -191) (-64 672 -202) (-57 672 -202)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18709" + "plane" "(-64 640 -202) (-64 640 -191) (-60 640 -191)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18708" + "plane" "(-64 640 -191) (-64 640 -202) (-64 672 -202)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18707" + "plane" "(-60 672 -191) (-57 672 -202) (-57 640 -202)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18706" + "plane" "(-60 640 -191) (-64 640 -191) (-64 672 -191)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18705" + "plane" "(-57 672 -202) (-64 672 -202) (-64 640 -202)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93392" + side + { + "id" "18572" + "plane" "(64 672 -96) (34 672 -96) (34 672 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18571" + "plane" "(41 640 -134) (34 640 -128) (34 640 -96)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18570" + "plane" "(64 640 -96) (34 640 -96) (34 672 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18569" + "plane" "(34 640 -96) (34 640 -128) (34 672 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18568" + "plane" "(41 672 -134) (34 672 -128) (34 640 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18567" + "plane" "(64 672 -96) (41 672 -134) (41 640 -134)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93393" + side + { + "id" "18578" + "plane" "(-57 640 -156) (-60 640 -167) (-64 640 -167)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18577" + "plane" "(-64 672 -156) (-64 672 -167) (-60 672 -167)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18576" + "plane" "(-64 640 -156) (-64 640 -167) (-64 672 -167)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18575" + "plane" "(-57 672 -156) (-60 672 -167) (-60 640 -167)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18574" + "plane" "(-60 672 -167) (-64 672 -167) (-64 640 -167)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18573" + "plane" "(-57 640 -156) (-64 640 -156) (-64 672 -156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93394" + side + { + "id" "18584" + "plane" "(-60 640 -167) (-61 640 -179) (-64 640 -179)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18583" + "plane" "(-64 672 -167) (-64 672 -179) (-61 672 -179)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18582" + "plane" "(-64 640 -167) (-64 640 -179) (-64 672 -179)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18581" + "plane" "(-61 672 -179) (-64 672 -179) (-64 640 -179)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18580" + "plane" "(-60 672 -167) (-61 672 -179) (-61 640 -179)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18579" + "plane" "(-60 640 -167) (-64 640 -167) (-64 672 -167)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93395" + side + { + "id" "18590" + "plane" "(12 672 -96) (0 672 -96) (0 672 -118)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18589" + "plane" "(12 640 -119) (0 640 -118) (0 640 -96)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18588" + "plane" "(12 640 -96) (0 640 -96) (0 672 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18587" + "plane" "(12 672 -119) (0 672 -118) (0 640 -118)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18586" + "plane" "(0 640 -96) (0 640 -118) (0 672 -118)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18585" + "plane" "(12 672 -96) (12 672 -119) (12 640 -119)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93396" + side + { + "id" "18596" + "plane" "(24 672 -96) (12 672 -96) (12 672 -119)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18595" + "plane" "(24 640 -123) (12 640 -119) (12 640 -96)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18594" + "plane" "(24 640 -96) (12 640 -96) (12 672 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18593" + "plane" "(24 672 -123) (12 672 -119) (12 640 -119)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18592" + "plane" "(12 640 -96) (12 640 -119) (12 672 -119)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18591" + "plane" "(24 672 -96) (24 672 -123) (24 640 -123)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93397" + side + { + "id" "18602" + "plane" "(60 672 -167) (61 672 -179) (64 672 -179)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18601" + "plane" "(64 640 -167) (64 640 -179) (61 640 -179)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18600" + "plane" "(64 672 -167) (64 672 -179) (64 640 -179)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18599" + "plane" "(64 672 -179) (61 672 -179) (61 640 -179)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18598" + "plane" "(60 640 -167) (61 640 -179) (61 672 -179)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18597" + "plane" "(64 640 -167) (60 640 -167) (60 672 -167)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93398" + side + { + "id" "18608" + "plane" "(57 672 -156) (60 672 -167) (64 672 -167)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18607" + "plane" "(64 640 -156) (64 640 -167) (60 640 -167)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18606" + "plane" "(64 672 -156) (64 672 -167) (64 640 -167)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18605" + "plane" "(57 640 -156) (60 640 -167) (60 672 -167)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18604" + "plane" "(64 672 -167) (60 672 -167) (60 640 -167)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18603" + "plane" "(64 640 -156) (57 640 -156) (57 672 -156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93399" + side + { + "id" "18614" + "plane" "(34 672 -96) (24 672 -96) (24 672 -123)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18613" + "plane" "(34 640 -128) (24 640 -123) (24 640 -96)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18612" + "plane" "(34 640 -96) (24 640 -96) (24 672 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18611" + "plane" "(24 640 -96) (24 640 -123) (24 672 -123)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18610" + "plane" "(34 672 -128) (24 672 -123) (24 640 -123)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18609" + "plane" "(34 672 -96) (34 672 -128) (34 640 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93400" + side + { + "id" "18620" + "plane" "(51 672 -145) (57 672 -156) (64 672 -156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18619" + "plane" "(64 640 -145) (64 640 -156) (57 640 -156)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18618" + "plane" "(64 672 -145) (64 672 -156) (64 640 -156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18617" + "plane" "(64 672 -156) (57 672 -156) (57 640 -156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18616" + "plane" "(51 640 -145) (57 640 -156) (57 672 -156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18615" + "plane" "(64 640 -145) (51 640 -145) (51 672 -145)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93401" + side + { + "id" "18626" + "plane" "(41 672 -134) (51 672 -145) (64 672 -145)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18625" + "plane" "(64 640 -96) (64 640 -145) (51 640 -145)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18624" + "plane" "(64 672 -96) (64 672 -145) (64 640 -145)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18623" + "plane" "(64 672 -145) (51 672 -145) (51 640 -145)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18622" + "plane" "(41 640 -134) (51 640 -145) (51 672 -145)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18621" + "plane" "(64 640 -96) (41 640 -134) (41 672 -134)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93402" + side + { + "id" "18632" + "plane" "(-12 640 -96) (0 640 -96) (0 640 -118)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18631" + "plane" "(-12 672 -119) (0 672 -118) (0 672 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18630" + "plane" "(0 640 -96) (-12 640 -96) (-12 672 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18629" + "plane" "(0 672 -118) (-12 672 -119) (-12 640 -119)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18628" + "plane" "(0 672 -96) (0 672 -118) (0 640 -118)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18627" + "plane" "(-12 640 -96) (-12 640 -119) (-12 672 -119)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93403" + side + { + "id" "18638" + "plane" "(-24 640 -96) (-12 640 -96) (-12 640 -119)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18637" + "plane" "(-24 672 -123) (-12 672 -119) (-12 672 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18636" + "plane" "(-12 640 -96) (-24 640 -96) (-24 672 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18635" + "plane" "(-12 672 -119) (-24 672 -123) (-24 640 -123)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18634" + "plane" "(-12 672 -96) (-12 672 -119) (-12 640 -119)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18633" + "plane" "(-24 640 -96) (-24 640 -123) (-24 672 -123)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93404" + side + { + "id" "18644" + "plane" "(-64 640 -96) (-34 640 -96) (-34 640 -128)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18643" + "plane" "(-41 672 -134) (-34 672 -128) (-34 672 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18642" + "plane" "(-34 640 -96) (-64 640 -96) (-64 672 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18641" + "plane" "(-34 672 -96) (-34 672 -128) (-34 640 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18640" + "plane" "(-34 672 -128) (-41 672 -134) (-41 640 -134)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18639" + "plane" "(-64 640 -96) (-41 640 -134) (-41 672 -134)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93405" + side + { + "id" "18650" + "plane" "(-34 640 -96) (-24 640 -96) (-24 640 -123)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18649" + "plane" "(-34 672 -128) (-24 672 -123) (-24 672 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18648" + "plane" "(-24 640 -96) (-34 640 -96) (-34 672 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18647" + "plane" "(-24 672 -96) (-24 672 -123) (-24 640 -123)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18646" + "plane" "(-24 672 -123) (-34 672 -128) (-34 640 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18645" + "plane" "(-34 640 -96) (-34 640 -128) (-34 672 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93406" + side + { + "id" "18656" + "plane" "(-41 640 -134) (-51 640 -145) (-64 640 -145)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18655" + "plane" "(-64 672 -96) (-64 672 -145) (-51 672 -145)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18654" + "plane" "(-64 640 -96) (-64 640 -145) (-64 672 -145)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18653" + "plane" "(-51 672 -145) (-64 672 -145) (-64 640 -145)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18652" + "plane" "(-41 672 -134) (-51 672 -145) (-51 640 -145)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18651" + "plane" "(-64 672 -96) (-41 672 -134) (-41 640 -134)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93407" + side + { + "id" "18662" + "plane" "(-51 640 -145) (-57 640 -156) (-64 640 -156)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18661" + "plane" "(-64 672 -145) (-64 672 -156) (-57 672 -156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18660" + "plane" "(-64 640 -145) (-64 640 -156) (-64 672 -156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18659" + "plane" "(-57 672 -156) (-64 672 -156) (-64 640 -156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18658" + "plane" "(-51 672 -145) (-57 672 -156) (-57 640 -156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18657" + "plane" "(-51 640 -145) (-64 640 -145) (-64 672 -145)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93408" + side + { + "id" "18668" + "plane" "(64 640 -202) (64 640 -213) (51 640 -213)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18667" + "plane" "(64 672 -213) (64 672 -202) (57 672 -202)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18666" + "plane" "(64 672 -202) (64 672 -213) (64 640 -213)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18665" + "plane" "(64 640 -202) (57 640 -202) (57 672 -202)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18664" + "plane" "(57 640 -202) (51 640 -213) (51 672 -213)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18663" + "plane" "(64 672 -213) (51 672 -213) (51 640 -213)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93409" + side + { + "id" "18674" + "plane" "(64 640 -213) (64 640 -224) (41 640 -224)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18673" + "plane" "(64 672 -224) (64 672 -213) (51 672 -213)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18672" + "plane" "(64 672 -213) (64 672 -224) (64 640 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18671" + "plane" "(64 640 -213) (51 640 -213) (51 672 -213)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18670" + "plane" "(51 640 -213) (41 640 -224) (41 672 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18669" + "plane" "(64 672 -224) (41 672 -224) (41 640 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93410" + side + { + "id" "18680" + "plane" "(64 640 -191) (64 640 -202) (57 640 -202)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18679" + "plane" "(64 672 -202) (64 672 -191) (60 672 -191)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18678" + "plane" "(64 672 -191) (64 672 -202) (64 640 -202)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18677" + "plane" "(60 640 -191) (57 640 -202) (57 672 -202)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18676" + "plane" "(64 640 -191) (60 640 -191) (60 672 -191)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18675" + "plane" "(64 672 -202) (57 672 -202) (57 640 -202)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93411" + side + { + "id" "18686" + "plane" "(64 640 -179) (64 640 -191) (60 640 -191)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18685" + "plane" "(64 672 -191) (64 672 -179) (61 672 -179)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18684" + "plane" "(64 672 -179) (64 672 -191) (64 640 -191)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18683" + "plane" "(64 640 -179) (61 640 -179) (61 672 -179)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18682" + "plane" "(61 640 -179) (60 640 -191) (60 672 -191)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18681" + "plane" "(64 672 -191) (60 672 -191) (60 640 -191)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93412" + side + { + "id" "18692" + "plane" "(-64 672 -213) (-64 672 -224) (-41 672 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18691" + "plane" "(-64 640 -224) (-64 640 -213) (-51 640 -213)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18690" + "plane" "(-64 640 -213) (-64 640 -224) (-64 672 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18689" + "plane" "(-51 640 -213) (-64 640 -213) (-64 672 -213)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18688" + "plane" "(-51 672 -213) (-41 672 -224) (-41 640 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18687" + "plane" "(-41 672 -224) (-64 672 -224) (-64 640 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93413" + side + { + "id" "18698" + "plane" "(-64 672 -202) (-64 672 -213) (-51 672 -213)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18697" + "plane" "(-64 640 -213) (-64 640 -202) (-57 640 -202)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18696" + "plane" "(-64 640 -202) (-64 640 -213) (-64 672 -213)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18695" + "plane" "(-57 640 -202) (-64 640 -202) (-64 672 -202)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18694" + "plane" "(-57 672 -202) (-51 672 -213) (-51 640 -213)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18693" + "plane" "(-51 672 -213) (-64 672 -213) (-64 640 -213)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93414" + side + { + "id" "18704" + "plane" "(-64 672 -179) (-64 672 -191) (-60 672 -191)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18703" + "plane" "(-64 640 -191) (-64 640 -179) (-61 640 -179)" + "material" "METAL/BLACK_WALL_METAL_002B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18702" + "plane" "(-64 640 -179) (-64 640 -191) (-64 672 -191)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18701" + "plane" "(-61 640 -179) (-64 640 -179) (-64 672 -179)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18700" + "plane" "(-61 672 -179) (-60 672 -191) (-60 640 -191)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "18699" + "plane" "(-60 672 -191) (-64 672 -191) (-64 640 -191)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -7768]" + } +} +cameras +{ + "activecamera" "0" + camera + { + "position" "[8.31243 576.707 -69.8187]" + "look" "[14.6795 516.132 -86.3674]" + } + camera + { + "position" "[127.087 1215.37 105.064]" + "look" "[116.232 1268.25 72.3711]" + } + camera + { + "position" "[127.087 1215.37 105.064]" + "look" "[116.232 1268.25 72.3711]" + } + camera + { + "position" "[-1328.35 -414.129 12.6516]" + "look" "[-1338.82 -354.756 31.314]" + } + camera + { + "position" "[127.087 1215.37 105.064]" + "look" "[116.232 1268.25 72.3711]" + } + camera + { + "position" "[127.087 1215.37 105.064]" + "look" "[116.232 1268.25 72.3711]" + } +} +cordons +{ + "active" "0" + cordon + { + "name" "cordon" + "active" "1" + box + { + "mins" "(-11552 -224 -448)" + "maxs" "(-10240 1216 1024)" + } + } +} diff --git a/packages/valve/clean_style/resources/instances/clean/elevator_sp/entrance_right_tubes/corridor.vmf b/packages/valve/clean_style/resources/instances/clean/elevator_sp/entrance_right_tubes/corridor.vmf index 97063ae305..a5b74be5d4 100644 --- a/packages/valve/clean_style/resources/instances/clean/elevator_sp/entrance_right_tubes/corridor.vmf +++ b/packages/valve/clean_style/resources/instances/clean/elevator_sp/entrance_right_tubes/corridor.vmf @@ -2,7 +2,7 @@ versioninfo { "editorversion" "400" "editorbuild" "9672" - "mapversion" "275" + "mapversion" "277" "formatversion" "100" "prefab" "0" } @@ -26,7 +26,7 @@ viewsettings world { "id" "1" - "mapversion" "275" + "mapversion" "277" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -5238,7 +5238,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-240 128 -1.99999" editor @@ -5262,7 +5262,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-272 128 -1.99999" editor @@ -5286,7 +5286,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-272 128 126" editor @@ -5297,874 +5297,101 @@ entity "visgroupautoshown" "1" "logicalpos" "[2500 -12768]" } -} -entity -{ - "id" "11561" - "classname" "prop_static" - "angles" "0 270 180" - "disableshadows" "1" - "drawinfastreflection" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_lab/glass_lightcover.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "origin" "-240 128 126" - editor - { - "color" "255 255 0" - "visgroupid" "24" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[2500 -12768]" - } -} -entity -{ - "id" "11586" - "classname" "prop_static" - "angles" "90 0 0" - "disableshadows" "1" - "drawinfastreflection" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_lab/glass_lightcover.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "origin" "-288 48 180" - editor - { - "color" "255 255 0" - "visgroupid" "24" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[2500 -12768]" - } -} -entity -{ - "id" "11611" - "classname" "prop_static" - "angles" "90 0 0" - "disableshadows" "1" - "drawinfastreflection" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_lab/glass_lightcover.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "origin" "-288 80 180" - editor - { - "color" "255 255 0" - "visgroupid" "24" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[2500 -12768]" - } -} -entity -{ - "id" "11636" - "classname" "prop_static" - "angles" "90 0 0" - "disableshadows" "1" - "drawinfastreflection" "1" - "fademindist" "-1" - "fadescale" "1" - "model" "models/props_lab/glass_lightcover.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "origin" "-288 112 180" - editor - { - "color" "255 255 0" - "visgroupid" "24" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[2500 -12768]" - } -} -entity -{ - "id" "11645" - "classname" "func_detail" - solid - { - "id" "11646" - side - { - "id" "3679" - "plane" "(-232 121 182) (-344 121 182) (-344 121 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3678" - "plane" "(-232 103 181) (-344 103 181) (-344 103 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3677" - "plane" "(-232 103 182) (-344 103 182) (-344 121 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3676" - "plane" "(-232 121 181) (-344 121 181) (-344 103 181)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[-1 0 0 -40] 2" - "vaxis" "[0 -1 0 60] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3675" - "plane" "(-344 103 182) (-344 103 181) (-344 121 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3674" - "plane" "(-232 121 182) (-232 121 181) (-232 103 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "11596" - side - { - "id" "3535" - "plane" "(-232 57 182) (-344 57 182) (-344 57 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3534" - "plane" "(-232 39 181) (-344 39 181) (-344 39 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3533" - "plane" "(-232 39 182) (-344 39 182) (-344 57 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3532" - "plane" "(-232 57 181) (-344 57 181) (-344 39 181)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[-1 0 0 -40] 2" - "vaxis" "[0 -1 0 44] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3531" - "plane" "(-344 39 182) (-344 39 181) (-344 57 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3530" - "plane" "(-232 57 182) (-232 57 181) (-232 39 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "11621" - side - { - "id" "3607" - "plane" "(-232 89 182) (-344 89 182) (-344 89 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3606" - "plane" "(-232 71 181) (-344 71 181) (-344 71 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3605" - "plane" "(-232 71 182) (-344 71 182) (-344 89 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3604" - "plane" "(-232 89 181) (-344 89 181) (-344 71 181)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[-1 0 0 -40] 2" - "vaxis" "[0 -1 0 52] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3603" - "plane" "(-344 71 182) (-344 71 181) (-344 89 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3602" - "plane" "(-232 89 182) (-232 89 181) (-232 71 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "11671" - side - { - "id" "3751" - "plane" "(-359 120 181) (-359 7.99997 181) (-359 7.99997 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3750" - "plane" "(-377 7.99997 181) (-377 120 181) (-377 120 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3749" - "plane" "(-377 7.99997 182) (-377 120 182) (-359 120 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3748" - "plane" "(-377 120 181) (-377 7.99997 181) (-359 7.99997 181)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 1 0 16] 2" - "vaxis" "[-1 0 0 -60] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3747" - "plane" "(-377 120 182) (-377 120 181) (-359 120 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3746" - "plane" "(-377 7.99997 181) (-377 7.99997 182) (-359 7.99997 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "11696" - side - { - "id" "3823" - "plane" "(-391 120 181) (-391 7.99997 181) (-391 7.99997 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3822" - "plane" "(-409 7.99996 181) (-409 120 181) (-409 120 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3821" - "plane" "(-409 7.99996 182) (-409 120 182) (-391 120 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3820" - "plane" "(-409 120 181) (-409 7.99996 181) (-391 7.99997 181)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 1 0 16] 2" - "vaxis" "[-1 0 0 -4] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3819" - "plane" "(-409 120 182) (-409 120 181) (-391 120 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3818" - "plane" "(-409 7.99996 181) (-409 7.99996 182) (-391 7.99997 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "11721" - side - { - "id" "3895" - "plane" "(-423 120 181) (-423 7.99996 181) (-423 7.99996 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3894" - "plane" "(-441 7.99996 181) (-441 120 181) (-441 120 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3893" - "plane" "(-441 7.99996 182) (-441 120 182) (-423 120 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3892" - "plane" "(-441 120 181) (-441 7.99996 181) (-423 7.99996 181)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 1 0 16] 2" - "vaxis" "[-1 0 0 -12] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3891" - "plane" "(-441 120 182) (-441 120 181) (-423 120 181)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3890" - "plane" "(-441 7.99996 181) (-441 7.99996 182) (-423 7.99996 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "11844" - side - { - "id" "3937" - "plane" "(-231 130 182) (-231 130 70) (-231 129 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3936" - "plane" "(-249 129 182) (-249 129 70) (-249 130 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3935" - "plane" "(-249 130 182) (-249 130 70) (-231 130 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3934" - "plane" "(-249 129 70) (-249 129 182) (-231 129 182)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 0 -1 -0.5] 2" - "vaxis" "[-1 0 0 -28] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3933" - "plane" "(-249 130 70) (-249 129 70) (-231 129 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3932" - "plane" "(-249 129 182) (-249 130 182) (-231 130 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid +} +entity +{ + "id" "11561" + "classname" "prop_static" + "angles" "0 270 180" + "disableshadows" "1" + "drawinfastreflection" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_lab/glass_lightcover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "$strip_skin" + "solid" "6" + "origin" "-240 128 126" + editor { - "id" "11846" - side - { - "id" "3943" - "plane" "(-263 130 182) (-263 130 70) (-263 129 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3942" - "plane" "(-281 129 182) (-281 129 70) (-281 130 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3941" - "plane" "(-281 130 182) (-281 130 70) (-263 130 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3940" - "plane" "(-281 129 70) (-281 129 182) (-263 129 182)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 0 -1 -0.5] 2" - "vaxis" "[-1 0 0 28] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3939" - "plane" "(-281 130 70) (-281 129 70) (-263 129 70)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3938" - "plane" "(-281 129 182) (-281 130 182) (-263 130 182)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "255 255 0" + "visgroupid" "24" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2500 -12768]" } - solid +} +entity +{ + "id" "11586" + "classname" "prop_static" + "angles" "90 0 0" + "disableshadows" "1" + "drawinfastreflection" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_lab/glass_lightcover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "$strip_skin" + "solid" "6" + "origin" "-288 48 180" + editor { - "id" "12100" - side - { - "id" "4003" - "plane" "(-231 130 54) (-231 130 -58) (-231 129 -58)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4002" - "plane" "(-249 129 54) (-249 129 -58) (-249 130 -58)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4001" - "plane" "(-249 130 54) (-249 130 -58) (-231 130 -58)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4000" - "plane" "(-249 129 -58) (-249 129 54) (-231 129 54)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 0 -1 -32.5] 2" - "vaxis" "[-1 0 0 -28] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "3999" - "plane" "(-249 130 -58) (-249 129 -58) (-231 129 -58)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3998" - "plane" "(-249 129 54) (-249 130 54) (-231 130 54)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "255 255 0" + "visgroupid" "24" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2500 -12768]" } - solid +} +entity +{ + "id" "11611" + "classname" "prop_static" + "angles" "90 0 0" + "disableshadows" "1" + "drawinfastreflection" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_lab/glass_lightcover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "$strip_skin" + "solid" "6" + "origin" "-288 80 180" + editor { - "id" "12102" - side - { - "id" "4009" - "plane" "(-263 130 54) (-263 130 -58) (-263 129 -58)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4008" - "plane" "(-281 129 54) (-281 129 -58) (-281 130 -58)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4007" - "plane" "(-281 130 54) (-281 130 -58) (-263 130 -58)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4006" - "plane" "(-281 129 -58) (-281 129 54) (-263 129 54)" - "material" "LIGHTS/LIGHT_PANEL_COOL" - "uaxis" "[0 0 -1 -32.5] 2" - "vaxis" "[-1 0 0 28] 2" - "rotation" "0" - "lightmapscale" "8" - "smoothing_groups" "0" - } - side - { - "id" "4005" - "plane" "(-281 130 -58) (-281 129 -58) (-263 129 -58)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4004" - "plane" "(-281 129 54) (-281 130 54) (-263 130 54)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "255 255 0" + "visgroupid" "24" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2500 -12768]" } +} +entity +{ + "id" "11636" + "classname" "prop_static" + "angles" "90 0 0" + "disableshadows" "1" + "drawinfastreflection" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_lab/glass_lightcover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "$strip_skin" + "solid" "6" + "origin" "-288 112 180" editor { - "color" "0 180 0" + "color" "255 255 0" "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 0]" + "logicalpos" "[2500 -12768]" } } entity @@ -6179,7 +5406,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-368 64 180" editor @@ -6203,7 +5430,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-400 64 180" editor @@ -6227,7 +5454,7 @@ entity "model" "models/props_lab/glass_lightcover.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "skin" "0" + "skin" "$strip_skin" "solid" "6" "origin" "-432 64 180" editor @@ -8155,7 +7382,7 @@ entity connections { "OnTrigger" "@entrance_airlock_doorClose0-1" - "OnTrigger" "info_signinstance:info_panel_activate_rl;Trigger0-1" + "OnTrigger" "info_signinstance:info_panel;SetActive0-1" } solid { diff --git a/packages/valve/clean_style/resources/instances/clean/elevator_sp/entrance_right_tubes/orangegel.vmf b/packages/valve/clean_style/resources/instances/clean/elevator_sp/entrance_right_tubes/orangegel.vmf index a703b3f75f..c5c10657b0 100644 --- a/packages/valve/clean_style/resources/instances/clean/elevator_sp/entrance_right_tubes/orangegel.vmf +++ b/packages/valve/clean_style/resources/instances/clean/elevator_sp/entrance_right_tubes/orangegel.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8997" - "mapversion" "255" + "editorbuild" "9672" + "mapversion" "256" "formatversion" "100" "prefab" "0" } @@ -20,92 +20,13 @@ viewsettings world { "id" "1" - "mapversion" "255" + "mapversion" "256" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" "maxblobcount" "250" "maxpropscreenwidth" "-1" "skyname" "sky_day01_01" - hidden - { - solid - { - "id" "16146" - side - { - "id" "1" - "plane" "(3.8147e-006 256 -128) (-7.62939e-006 256 128) (-7.62939e-006 -256 128)" - "material" "/PAINTBLOB" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2" - "plane" "(64 -256 -128) (64 -256 128) (64 256 128)" - "material" "/PAINTBLOB" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "3" - "plane" "(3.8147e-006 256 -128) (3.8147e-006 -256 -128) (64 -256 -128)" - "material" "/PAINTBLOB" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "4" - "plane" "(64 256 128) (64 -256 128) (-7.62939e-006 -256 128)" - "material" "/PAINTBLOB" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "5" - "plane" "(-7.62939e-006 256 128) (3.8147e-006 256 -128) (64 256 -128)" - "material" "/PAINTBLOB" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "6" - "plane" "(64 -256 128) (64 -256 -128) (3.8147e-006 -256 -128)" - "material" "/PAINTBLOB" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 142 251" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - } } entity { @@ -140,7 +61,3 @@ cordons { "active" "0" } -quickhide -{ - "count" "1" -} diff --git a/packages/valve/clean_style/resources/instances/clean/elevator_sp/exit_preview.vmf b/packages/valve/clean_style/resources/instances/logic/exit_preview.vmf similarity index 85% rename from packages/valve/clean_style/resources/instances/clean/elevator_sp/exit_preview.vmf rename to packages/valve/clean_style/resources/instances/logic/exit_preview.vmf index 74335d32e5..c6ed1d127d 100644 --- a/packages/valve/clean_style/resources/instances/clean/elevator_sp/exit_preview.vmf +++ b/packages/valve/clean_style/resources/instances/logic/exit_preview.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8997" - "mapversion" "68" + "editorbuild" "9672" + "mapversion" "71" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "68" + "mapversion" "71" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -37,11 +37,11 @@ entity "targetname" "@map_won" connections { - "OnTrigger" "@clientcommandCommandrestart_level21" + "OnTrigger" "@broadcastcommandCommandrestart_level21" "OnTrigger" "@screenshot2Trigger01" "OnTrigger" "@preview_complete_messageDisplay01" } - "origin" "0 0 16" + "origin" "0 0 0" editor { "color" "0 100 250" diff --git a/packages/valve/clean_style/resources/materials/BEE2/models/props_ingame/cust_fizz/fizzler.vtf b/packages/valve/clean_style/resources/materials/BEE2/models/props_ingame/cust_fizz/fizzler.vtf index d3f8598675..ac8c4d136c 100644 Binary files a/packages/valve/clean_style/resources/materials/BEE2/models/props_ingame/cust_fizz/fizzler.vtf and b/packages/valve/clean_style/resources/materials/BEE2/models/props_ingame/cust_fizz/fizzler.vtf differ diff --git a/packages/valve/clean_style/resources/materials/BEE2/models/props_ingame/cust_fizz/fizzler_dirty_danger.vtf b/packages/valve/clean_style/resources/materials/BEE2/models/props_ingame/cust_fizz/fizzler_dirty_danger.vtf index 71dff53c69..a558477c0f 100644 Binary files a/packages/valve/clean_style/resources/materials/BEE2/models/props_ingame/cust_fizz/fizzler_dirty_danger.vtf and b/packages/valve/clean_style/resources/materials/BEE2/models/props_ingame/cust_fizz/fizzler_dirty_danger.vtf differ diff --git a/packages/valve/clean_style/resources/scripts/vscripts/BEE2/collisions.nut b/packages/valve/clean_style/resources/scripts/vscripts/BEE2/collisions.nut new file mode 100644 index 0000000000..7dc7a1e5cf --- /dev/null +++ b/packages/valve/clean_style/resources/scripts/vscripts/BEE2/collisions.nut @@ -0,0 +1,95 @@ +// Provides an interface to allow querying BEE's collision data. + +::BEECollide <- { + // Must match Python constants! + NOTHING = 0, + SOLID = 1, + DECORATION = 2, + GRATING = 4, + GLASS = 8, + BRIDGE = 16, + FIZZLER = 32, + TEMPORARY = 64, + ANTLINES = 128, + OOB = 256, +} + +class Plane { + norm = null; + dist = 0.0; + constructor(x, y, z, distance) { + norm = Vector(x, y, z); + dist = distance; + } +} + +class Volume { + mins = null; + maxes = null; + planes = null; // List of planes + constructor(min_x, min_y, min_z, max_x, max_y, max_z, plane_list) { + mins = Vector(min_x, min_y, min_z); + maxes = Vector(max_x, max_y, max_z); + planes = plane_list; + } + + function point_inside(point, tol) { + if (point.x < mins.x - tol || point.x > maxes.x + tol) { + return false; + } + if (point.y < mins.y - tol || point.y > maxes.y + tol) { + return false; + } + if (point.z < mins.z - tol || point.z > maxes.z + tol) { + return false; + } + if (planes == null) { + return true; + } + foreach(plane in planes) { + if (plane.norm.Dot(point) < plane.dist + tol) { + return false; + } + } + return true; + } +} + +class Entry { + mask = 0; + volumes = null; + constructor(m, v) { + mask = m; + volumes = v; + } +} + +function point_collide(point, mask, tolerance) { + foreach(entry in VOLUMES) { + if ((entry.mask & mask) == 0) { + continue; + } + foreach(volume in entry.volumes) { + local center = (volume.mins + volume.maxes) * 0.5; + if (volume.point_inside(point, tolerance)) { + return true; + } + } + } + return false; +} + + +::BEE_PointCollide <- point_collide.bindenv(this); + +function Display() { + printl("Dump collisions:") + foreach(entry in VOLUMES) { + printl("- " + entry.mask + " = ["); + foreach(volume in entry.volumes) { + local center = (volume.mins + volume.maxes) * 0.5; + DebugDrawBox(center, volume.mins - center, volume.maxes - center, 255, 128, 64, 255, 1); + printl(" center=" + center + ", " + (volume.mins - center) + " <-> " + (volume.maxes - center)); + } + } +} diff --git a/packages/valve/clean_style/resources/scripts/vscripts/BEE2/coop_exit_door.nut b/packages/valve/clean_style/resources/scripts/vscripts/BEE2/coop_exit_door.nut index ffd723c473..6e2e48283a 100644 --- a/packages/valve/clean_style/resources/scripts/vscripts/BEE2/coop_exit_door.nut +++ b/packages/valve/clean_style/resources/scripts/vscripts/BEE2/coop_exit_door.nut @@ -3,8 +3,8 @@ // OnUser2: Open door. // OnUser3: Lock door and open elevator door // OnUser4: -BLUE <- 0 -ORAN <- 1 +const BLUE = 0 +const ORAN = 1 ent_camera <- EntityGroup[0] @@ -16,10 +16,10 @@ ent_tog <- [EntityGroup[3], EntityGroup[4]] // CONF_STARTOPEN <- true // Player states: -STATE_OUTSIDE <- 0 // Not near the door. -STATE_INFRONT <- 1 // In front of the door - open it. -STATE_INSIDE <- 2 // Inside corridor - lock door open -STATE_ELEVATOR <- 3 // Fully inside - close door when both are here. +const STATE_OUTSIDE = 0 // Not near the door. +const STATE_INFRONT = 1 // In front of the door - open it. +const STATE_INSIDE = 2 // Inside corridor - lock door open +const STATE_ELEVATOR = 3 // Fully inside - close door when both are here. // st_names <- ["OUTSIDE", "INFRONT", "INSIDE", "ELEVATOR"] @@ -85,7 +85,7 @@ function update_state() { if (state[BLUE] == STATE_ELEVATOR && state[ORAN] == STATE_ELEVATOR) { has_won = true; door_close(); - EntFire("@has_won", "Trigger") + EntFire("@map_won", "Trigger") EFBH(self, "FireUser3") } else if (state[BLUE] >= STATE_INSIDE || state[ORAN] >= STATE_INSIDE) { @@ -99,7 +99,7 @@ function update_state() { } function inp_io(is_open) { - is_unlocked = is_open; + is_unlocked = is_open ? true : false; update_state(); } diff --git a/packages/valve/clean_style/styles/clean_original/vbsp_config.cfg b/packages/valve/clean_style/styles/clean_original/vbsp_config.cfg index 96ad2e931c..bc42898ea5 100644 --- a/packages/valve/clean_style/styles/clean_original/vbsp_config.cfg +++ b/packages/valve/clean_style/styles/clean_original/vbsp_config.cfg @@ -14,7 +14,7 @@ "Bullseye.Black.Floor" "BEE2/bullseye/black_floor_metal" "Bullseye.Black.Ceiling" "BEE2/bullseye/black_floor_metal" - + "Normal.Black.Wall" { "1x1" "metal/black_wall_metal_002c" @@ -22,13 +22,13 @@ "4x4" "metal/black_wall_metal_002b" } "Bullseye.Black.Wall" "BEE2/bullseye/black_wall_metal" - + "Normal.White.Floor" "tile/white_floor_tile002a" "Bullsye.White.Floor" "BEE2/bullseye/white_floor_tile" - + "Normal.White.Ceiling" "tile/white_wall_tile003f" "Bullseye.White.Ceiling" "BEE2/bullseye/white_ceiling_tile" - + "Normal.White.Wall" { "2x1" "tile/white_wall_tile003a" @@ -36,7 +36,7 @@ "4x4" "tile/white_wall_tile003f" } "Bullseye.White.Wall" "BEE2/bullseye/white_wall_tile" - + "Special" { "Behind" "anim_wp/framework/backpanels_cheap" @@ -61,7 +61,7 @@ "Slash" "signage/signage_shape_slash" "Star" "signage/signage_shape_star" "Wavy" "signage/signage_shape_wavy" - + // Overlay on top to distinguish repeat shapes. // This is additional, but that's fine since users can // disable this. @@ -85,9 +85,9 @@ "Options" { "force_Brush_reflect" "1" - + "goo_mist" "0" - + "Glass_Scale" "0.15" // Still use these - it's mainly a performance improvement "StaticPan" "instances/BEE2/clean/static_panel/" @@ -134,11 +134,11 @@ "Flag" "InstVar" "$attach down" { - "TemplateBrush" "BEE2_CLEAR_VOXEL:pos_z" + "TemplateBrush" "BEE2_CLEAR_VOXEL:neg_z" } "$attach up" { - "TemplateBrush" "BEE2_CLEAR_VOXEL:neg_z" + "TemplateBrush" "BEE2_CLEAR_VOXEL:pos_z" } "$attach horizontal" { @@ -153,17 +153,4 @@ "RemoveInstVar" "$horiz_cam" } } - - "Condition" - { - "instance" "[indPan]" - "Result" - { - "SetTiles" - { - "Offset" "0 0 0" - "Tile" "n" - } - } - } } diff --git a/packages/valve/clean_style/templates/entry_corr_lights.vmf b/packages/valve/clean_style/templates/entry_corr_lights.vmf new file mode 100644 index 0000000000..849c6a0b39 --- /dev/null +++ b/packages/valve/clean_style/templates/entry_corr_lights.vmf @@ -0,0 +1,5471 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "17" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ + visgroup + { + "name" "corr_1" + "visgroupid" "4" + "color" "193 102 239" + } + visgroup + { + "name" "corr_3" + "visgroupid" "9" + "color" "198 127 252" + } + visgroup + { + "name" "corr_4" + "visgroupid" "10" + "color" "114 203 152" + } + visgroup + { + "name" "corr_5" + "visgroupid" "11" + "color" "115 176 161" + } + visgroup + { + "name" "corr_6" + "visgroupid" "12" + "color" "229 234 147" + } + visgroup + { + "name" "corr_7" + "visgroupid" "13" + "color" "131 240 129" + } + visgroup + { + "name" "corr_right_tubes" + "visgroupid" "14" + "color" "122 243 128" + } + visgroup + { + "name" "up_track" + "visgroupid" "15" + "color" "196 245 202" + } + visgroup + { + "name" "down_piston" + "visgroupid" "16" + "color" "255 188 125" + } +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "64" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "17" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" +} +entity +{ + "id" "101" + "classname" "func_detail" + solid + { + "id" "102" + side + { + "id" "780" + "plane" "(-39 186 -168) (-39 186 -280) (-39 185 -280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "779" + "plane" "(-57 185 -168) (-57 185 -280) (-57 186 -280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "778" + "plane" "(-57 186 -168) (-57 186 -280) (-39 186 -280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "777" + "plane" "(-39 185 -168) (-39 185 -280) (-57 185 -280)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 -1 -24] 2" + "vaxis" "[-1 0 0 20] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "776" + "plane" "(-57 186 -280) (-57 185 -280) (-39 185 -280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "775" + "plane" "(-57 185 -168) (-57 186 -168) (-39 186 -168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "103" + side + { + "id" "786" + "plane" "(-71 186 -104) (-71 186 -216) (-71 185 -216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "785" + "plane" "(-89 185 -104) (-89 185 -216) (-89 186 -216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "784" + "plane" "(-89 186 -104) (-89 186 -216) (-71 186 -216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "783" + "plane" "(-71 185 -104) (-71 185 -216) (-89 185 -216)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 -1 -8] 2" + "vaxis" "[-1 0 0 12] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "782" + "plane" "(-89 186 -216) (-89 185 -216) (-71 185 -216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "781" + "plane" "(-89 185 -104) (-89 186 -104) (-71 186 -104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "104" + side + { + "id" "792" + "plane" "(-103 186 -168) (-103 186 -280) (-103 185 -280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "791" + "plane" "(-121 185 -168) (-121 185 -280) (-121 186 -280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "790" + "plane" "(-121 186 -168) (-121 186 -280) (-103 186 -280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "789" + "plane" "(-103 185 -168) (-103 185 -280) (-121 185 -280)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 -1 -24] 2" + "vaxis" "[-1 0 0 4] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "788" + "plane" "(-121 186 -280) (-121 185 -280) (-103 185 -280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "787" + "plane" "(-121 185 -168) (-121 186 -168) (-103 186 -168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "98" + side + { + "id" "768" + "plane" "(-103 -185 -168) (-103 -185 -280) (-103 -186 -280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "767" + "plane" "(-121 -186 -168) (-121 -186 -280) (-121 -185 -280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "766" + "plane" "(-103 -186 -168) (-103 -186 -280) (-121 -186 -280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "765" + "plane" "(-121 -185 -168) (-121 -185 -280) (-103 -185 -280)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 1 24] 2" + "vaxis" "[-1 0 0 4] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "764" + "plane" "(-121 -186 -168) (-121 -185 -168) (-103 -185 -168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "763" + "plane" "(-121 -185 -280) (-121 -186 -280) (-103 -186 -280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "100" + side + { + "id" "774" + "plane" "(153 56 -95) (153 -56 -95) (153 -56 -94)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "773" + "plane" "(135 -56 -95) (135 56 -95) (135 56 -94)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "772" + "plane" "(135 -56 -94) (135 56 -94) (153 56 -94)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "771" + "plane" "(135 56 -95) (135 -56 -95) (153 -56 -95)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 1 0 32] 2" + "vaxis" "[-1 0 0 4] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "770" + "plane" "(135 56 -94) (135 56 -95) (153 56 -95)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "769" + "plane" "(153 -56 -94) (153 -56 -95) (135 -56 -95)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "15" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "122" + "classname" "func_detail" + solid + { + "id" "123" + side + { + "id" "846" + "plane" "(-103 -186 104) (-103 -186 216) (-103 -185 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "845" + "plane" "(-121 -185 104) (-121 -185 216) (-121 -186 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "844" + "plane" "(-121 -186 104) (-121 -186 216) (-103 -186 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "843" + "plane" "(-103 -185 104) (-103 -185 216) (-121 -185 216)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 1 -8] 2" + "vaxis" "[-1 0 0 4] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "842" + "plane" "(-121 -186 216) (-121 -185 216) (-103 -185 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "841" + "plane" "(-121 -185 104) (-121 -186 104) (-103 -186 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "124" + side + { + "id" "852" + "plane" "(-103 -186 232) (-103 -186 344) (-103 -185 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "851" + "plane" "(-121 -185 232) (-121 -185 344) (-121 -186 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "850" + "plane" "(-121 -186 232) (-121 -186 344) (-103 -186 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "849" + "plane" "(-103 -185 232) (-103 -185 344) (-121 -185 344)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 1 -40] 2" + "vaxis" "[-1 0 0 4] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "848" + "plane" "(-121 -186 344) (-121 -185 344) (-103 -185 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "847" + "plane" "(-121 -185 232) (-121 -186 232) (-103 -186 232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "125" + side + { + "id" "858" + "plane" "(-103 185 232) (-103 185 344) (-103 186 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "857" + "plane" "(-121 186 232) (-121 186 344) (-121 185 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "856" + "plane" "(-103 186 232) (-103 186 344) (-121 186 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "855" + "plane" "(-121 185 232) (-121 185 344) (-103 185 344)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 -1 40] 2" + "vaxis" "[-1 0 0 4] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "854" + "plane" "(-121 186 232) (-121 185 232) (-103 185 232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "853" + "plane" "(-121 185 344) (-121 186 344) (-103 186 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "126" + side + { + "id" "864" + "plane" "(-103 185 104) (-103 185 216) (-103 186 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "863" + "plane" "(-121 186 104) (-121 186 216) (-121 185 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "862" + "plane" "(-103 186 104) (-103 186 216) (-121 186 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "861" + "plane" "(-121 185 104) (-121 185 216) (-103 185 216)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 -1 8] 2" + "vaxis" "[-1 0 0 4] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "860" + "plane" "(-121 186 104) (-121 185 104) (-103 185 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "859" + "plane" "(-121 185 216) (-121 186 216) (-103 186 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "127" + side + { + "id" "870" + "plane" "(-71 -186 104) (-71 -186 216) (-71 -185 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "869" + "plane" "(-89 -185 104) (-89 -185 216) (-89 -186 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "868" + "plane" "(-89 -186 104) (-89 -186 216) (-71 -186 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "867" + "plane" "(-71 -185 104) (-71 -185 216) (-89 -185 216)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 1 -8] 2" + "vaxis" "[-1 0 0 12] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "866" + "plane" "(-89 -186 216) (-89 -185 216) (-71 -185 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "865" + "plane" "(-89 -185 104) (-89 -186 104) (-71 -186 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "128" + side + { + "id" "876" + "plane" "(-71 -186 232) (-71 -186 344) (-71 -185 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "875" + "plane" "(-89 -185 232) (-89 -185 344) (-89 -186 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "874" + "plane" "(-89 -186 232) (-89 -186 344) (-71 -186 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "873" + "plane" "(-71 -185 232) (-71 -185 344) (-89 -185 344)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 1 -40] 2" + "vaxis" "[-1 0 0 12] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "872" + "plane" "(-89 -186 344) (-89 -185 344) (-71 -185 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "871" + "plane" "(-89 -185 232) (-89 -186 232) (-71 -186 232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "129" + side + { + "id" "882" + "plane" "(-39 -186 232) (-39 -186 344) (-39 -185 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "881" + "plane" "(-57 -185 232) (-57 -185 344) (-57 -186 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "880" + "plane" "(-57 -186 232) (-57 -186 344) (-39 -186 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "879" + "plane" "(-39 -185 232) (-39 -185 344) (-57 -185 344)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 1 -40] 2" + "vaxis" "[-1 0 0 20] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "878" + "plane" "(-57 -186 344) (-57 -185 344) (-39 -185 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "877" + "plane" "(-57 -185 232) (-57 -186 232) (-39 -186 232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "130" + side + { + "id" "888" + "plane" "(153 -56 95) (153 56 95) (153 56 94)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "887" + "plane" "(135 56 95) (135 -56 95) (135 -56 94)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "886" + "plane" "(135 56 94) (135 -56 94) (153 -56 94)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "885" + "plane" "(135 -56 95) (135 56 95) (153 56 95)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 -1 0 32] 2" + "vaxis" "[-1 0 0 4] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "884" + "plane" "(135 -56 94) (135 -56 95) (153 -56 95)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "883" + "plane" "(153 56 94) (153 56 95) (135 56 95)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "180" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "16" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "36" + "classname" "func_detail" + solid + { + "id" "37" + side + { + "id" "288" + "plane" "(-249 8.00005 181) (-249 120 181) (-249 120 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 16] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "287" + "plane" "(-231 120 181) (-231 8.00005 181) (-231 8.00005 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 16] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "286" + "plane" "(-249 8.00005 182) (-249 120 182) (-231 120 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "285" + "plane" "(-249 120 181) (-249 8.00005 181) (-231 8.00005 181)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 -1 0 0] 2" + "vaxis" "[1 0 0 24] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "284" + "plane" "(-249 8.00005 181) (-249 8.00005 182) (-231 8.00005 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 16] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "283" + "plane" "(-249 120 182) (-249 120 181) (-231 120 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 16] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "38" + side + { + "id" "294" + "plane" "(-249 -120 181) (-249 -7.99995 181) (-249 -7.99995 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 16] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293" + "plane" "(-231 -7.99995 181) (-231 -120 181) (-231 -120 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 16] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "292" + "plane" "(-249 -120 182) (-249 -7.99995 182) (-231 -7.99995 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "291" + "plane" "(-249 -7.99995 181) (-249 -120 181) (-231 -120 181)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 -1 0 16] 2" + "vaxis" "[1 0 0 28] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "290" + "plane" "(-249 -120 181) (-249 -120 182) (-231 -120 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 16] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "289" + "plane" "(-249 -7.99995 182) (-249 -7.99995 181) (-231 -7.99995 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 16] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "39" + side + { + "id" "300" + "plane" "(-281 8.00006 181) (-281 120 181) (-281 120 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 16] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299" + "plane" "(-263 120 181) (-263 8.00005 181) (-263 8.00005 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 16] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298" + "plane" "(-281 8.00006 182) (-281 120 182) (-263 120 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297" + "plane" "(-281 120 181) (-281 8.00006 181) (-263 8.00005 181)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 -1 0 48] 2" + "vaxis" "[1 0 0 36] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "296" + "plane" "(-281 8.00006 181) (-281 8.00006 182) (-263 8.00005 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 16] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295" + "plane" "(-281 120 182) (-281 120 181) (-263 120 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 16] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "40" + side + { + "id" "306" + "plane" "(-249 130 70) (-249 129 70) (-231 129 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305" + "plane" "(-249 129 182) (-249 130 182) (-231 130 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304" + "plane" "(-249 129 70) (-249 130 70) (-249 130 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 1 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303" + "plane" "(-231 130 70) (-231 129 70) (-231 129 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "302" + "plane" "(-231 129 70) (-249 129 70) (-249 129 182)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 1 16] 2" + "vaxis" "[1 0 0 -8] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "301" + "plane" "(-231 130 182) (-249 130 182) (-249 130 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 1 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "41" + side + { + "id" "312" + "plane" "(-281 130 70) (-281 129 70) (-263 129 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 56] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "311" + "plane" "(-281 129 182) (-281 130 182) (-263 130 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -56] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "310" + "plane" "(-281 129 70) (-281 130 70) (-281 130 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 1 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "309" + "plane" "(-263 130 70) (-263 129 70) (-263 129 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "308" + "plane" "(-263 129 70) (-281 129 70) (-281 129 182)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 1 16] 2" + "vaxis" "[1 0 0 0] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "307" + "plane" "(-263 130 182) (-281 130 182) (-281 130 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 56] 0.25" + "vaxis" "[0 0 1 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "42" + side + { + "id" "318" + "plane" "(-249 130 -58) (-249 129 -58) (-231 129 -58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "317" + "plane" "(-249 129 54) (-249 130 54) (-231 130 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "316" + "plane" "(-249 129 -58) (-249 130 -58) (-249 130 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 1 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "315" + "plane" "(-231 130 -58) (-231 129 -58) (-231 129 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "314" + "plane" "(-231 129 -58) (-249 129 -58) (-249 129 54)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 1 -16] 2" + "vaxis" "[1 0 0 -8] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "313" + "plane" "(-231 130 54) (-249 130 54) (-249 130 -58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 1 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "43" + side + { + "id" "324" + "plane" "(-281 130 -58) (-281 129 -58) (-263 129 -58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 56] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "323" + "plane" "(-281 129 54) (-281 130 54) (-263 130 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -56] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322" + "plane" "(-281 129 -58) (-281 130 -58) (-281 130 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 1 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321" + "plane" "(-263 130 -58) (-263 129 -58) (-263 129 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320" + "plane" "(-263 129 -58) (-281 129 -58) (-281 129 54)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 1 -16] 2" + "vaxis" "[1 0 0 0] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "319" + "plane" "(-263 130 54) (-281 130 54) (-281 130 -58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 56] 0.25" + "vaxis" "[0 0 1 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "10" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "59" + "classname" "func_detail" + solid + { + "id" "60" + side + { + "id" "420" + "plane" "(-128 57 66) (-240 57 66) (-240 57 65)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "419" + "plane" "(-128 39 65) (-240 39 65) (-240 39 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "418" + "plane" "(-128 39 66) (-240 39 66) (-240 57 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "417" + "plane" "(-128 57 65) (-240 57 65) (-240 39 65)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[-1 0 0 -14] 4" + "vaxis" "[0 -1 0 44] 4" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "416" + "plane" "(-240 39 66) (-240 39 65) (-240 57 65)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "415" + "plane" "(-128 57 66) (-128 57 65) (-128 39 65)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "61" + side + { + "id" "426" + "plane" "(-305 8 181) (-305 120 181) (-305 120 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "425" + "plane" "(-287 120 181) (-287 8 181) (-287 8 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "424" + "plane" "(-305 8 182) (-305 120 182) (-287 120 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "423" + "plane" "(-305 120 181) (-305 8 181) (-287 8 181)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 -1 0 48] 2" + "vaxis" "[1 0 0 42] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "422" + "plane" "(-305 8 181) (-305 8 182) (-287 8 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "421" + "plane" "(-305 120 182) (-305 120 181) (-287 120 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "62" + side + { + "id" "432" + "plane" "(-320 -103 182) (-432 -103 182) (-432 -103 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "431" + "plane" "(-320 -121 181) (-432 -121 181) (-432 -121 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "430" + "plane" "(-320 -121 182) (-432 -121 182) (-432 -103 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "429" + "plane" "(-320 -103 181) (-432 -103 181) (-432 -121 181)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[-1 0 0 2] 4" + "vaxis" "[0 -1 0 4] 4" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "428" + "plane" "(-432 -121 182) (-432 -121 181) (-432 -103 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "427" + "plane" "(-320 -103 182) (-320 -103 181) (-320 -121 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "63" + side + { + "id" "438" + "plane" "(-305 -120 181) (-305 -8 181) (-305 -8 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "437" + "plane" "(-287 -8 181) (-287 -120 181) (-287 -120 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "436" + "plane" "(-305 -120 182) (-305 -8 182) (-287 -8 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "435" + "plane" "(-305 -8 181) (-305 -120 181) (-287 -120 181)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 -1 0 16] 4" + "vaxis" "[1 0 0 42] 4" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "434" + "plane" "(-305 -120 181) (-305 -120 182) (-287 -120 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "433" + "plane" "(-305 -8 182) (-305 -8 181) (-287 -8 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "64" + side + { + "id" "444" + "plane" "(-128 -39 66) (-240 -39 66) (-240 -39 65)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "443" + "plane" "(-128 -57 65) (-240 -57 65) (-240 -57 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "442" + "plane" "(-128 -57 66) (-240 -57 66) (-240 -39 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "441" + "plane" "(-128 -39 65) (-240 -39 65) (-240 -57 65)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[-1 0 0 -14] 4" + "vaxis" "[0 -1 0 20] 4" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "440" + "plane" "(-240 -57 66) (-240 -57 65) (-240 -39 65)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "439" + "plane" "(-128 -39 66) (-128 -39 65) (-128 -57 65)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "11" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "66" + "classname" "func_detail" + solid + { + "id" "67" + side + { + "id" "510" + "plane" "(-191 186 178) (-191 186 70) (-191 185 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 0 1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "509" + "plane" "(-209 185 178) (-209 185 70) (-209 186 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 0 1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "508" + "plane" "(-209 186 178) (-209 186 70) (-191 186 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -8] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "507" + "plane" "(-209 185 70) (-209 185 178) (-191 185 178)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 -1 -0.5] 2" + "vaxis" "[-1 0 0 -18] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "506" + "plane" "(-209 186 70) (-209 185 70) (-191 185 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "505" + "plane" "(-209 185 178) (-209 186 178) (-191 186 178)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "68" + side + { + "id" "516" + "plane" "(-223 186 54) (-223 186 -58) (-223 185 -58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 0 1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "515" + "plane" "(-241 185 54) (-241 185 -58) (-241 186 -58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 0 1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "514" + "plane" "(-241 186 54) (-241 186 -58) (-223 186 -58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -8] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "513" + "plane" "(-241 185 -58) (-241 185 54) (-223 185 54)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 -1 -32.5] 2" + "vaxis" "[-1 0 0 -26] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "512" + "plane" "(-241 186 -58) (-241 185 -58) (-223 185 -58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "511" + "plane" "(-241 185 54) (-241 186 54) (-223 186 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "69" + side + { + "id" "522" + "plane" "(-223 186 178) (-223 186 70) (-223 185 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 0 1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "521" + "plane" "(-241 185 178) (-241 185 70) (-241 186 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 0 1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "520" + "plane" "(-241 186 178) (-241 186 70) (-223 186 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -8] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "519" + "plane" "(-241 185 70) (-241 185 178) (-223 185 178)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 -1 -0.5] 2" + "vaxis" "[-1 0 0 -26] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "518" + "plane" "(-241 186 70) (-241 185 70) (-223 185 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "517" + "plane" "(-241 185 178) (-241 186 178) (-223 186 178)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "70" + side + { + "id" "528" + "plane" "(-191 186 54) (-191 186 -58) (-191 185 -58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 0 1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "527" + "plane" "(-209 185 54) (-209 185 -58) (-209 186 -58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 0 1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "526" + "plane" "(-209 186 54) (-209 186 -58) (-191 186 -58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -8] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "525" + "plane" "(-209 185 -58) (-209 185 54) (-191 185 54)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 -1 -32.5] 2" + "vaxis" "[-1 0 0 -18] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "524" + "plane" "(-209 186 -58) (-209 185 -58) (-191 185 -58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "523" + "plane" "(-209 185 54) (-209 186 54) (-191 186 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "71" + side + { + "id" "534" + "plane" "(-223 182 181) (-223 70 181) (-223 70 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "533" + "plane" "(-241 70 181) (-241 182 181) (-241 182 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "532" + "plane" "(-241 70 182) (-241 182 182) (-223 182 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -56] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "531" + "plane" "(-241 182 181) (-241 70 181) (-223 70 181)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 1 0 0.499992] 2" + "vaxis" "[-1 0 0 -26] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "530" + "plane" "(-241 182 182) (-241 182 181) (-223 182 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "529" + "plane" "(-241 70 181) (-241 70 182) (-223 70 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "72" + side + { + "id" "540" + "plane" "(-191 182 181) (-191 70 181) (-191 70 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "539" + "plane" "(-209 70 181) (-209 182 181) (-209 182 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "538" + "plane" "(-209 70 182) (-209 182 182) (-191 182 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -56] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "537" + "plane" "(-209 182 181) (-209 70 181) (-191 70 181)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 1 0 0.499992] 2" + "vaxis" "[-1 0 0 -18] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "536" + "plane" "(-209 182 182) (-209 182 181) (-191 182 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "535" + "plane" "(-209 70 181) (-209 70 182) (-191 70 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "73" + side + { + "id" "546" + "plane" "(-223 54 181) (-223 -58 181) (-223 -58 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "545" + "plane" "(-241 -58 181) (-241 54 181) (-241 54 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "544" + "plane" "(-241 -58 182) (-241 54 182) (-223 54 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "543" + "plane" "(-241 54 181) (-241 -58 181) (-223 -58 181)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 1 0 32.5] 2" + "vaxis" "[-1 0 0 -26] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "542" + "plane" "(-241 54 182) (-241 54 181) (-223 54 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "541" + "plane" "(-241 -58 181) (-241 -58 182) (-223 -58 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "74" + side + { + "id" "552" + "plane" "(-320 182 66) (-432 182 66) (-432 182 65)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "551" + "plane" "(-320 167 65) (-432 167 65) (-432 167 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "550" + "plane" "(-320 167 66) (-432 167 66) (-432 182 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "549" + "plane" "(-320 182 65) (-432 182 65) (-432 167 65)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[-1 0 0 2] 2" + "vaxis" "[0 -1 0 12] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "548" + "plane" "(-432 167 66) (-432 167 65) (-432 182 65)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "547" + "plane" "(-320 182 66) (-320 182 65) (-320 167 65)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "75" + side + { + "id" "558" + "plane" "(-320 25 66) (-432 25 66) (-432 25 65)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "557" + "plane" "(-320 7 65) (-432 7.00001 65) (-432 7.00001 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "556" + "plane" "(-320 7 66) (-432 7.00001 66) (-432 25 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "555" + "plane" "(-320 25 65) (-432 25 65) (-432 7.00001 65)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[-1 0 0 2] 2" + "vaxis" "[0 -1 0 36] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "554" + "plane" "(-432 7.00001 66) (-432 7.00001 65) (-432 25 65)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "553" + "plane" "(-320 25 66) (-320 25 65) (-320 7 65)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "76" + side + { + "id" "564" + "plane" "(-320 57 66) (-432 57 66) (-432 57 65)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "563" + "plane" "(-320 39 65) (-432 39 65) (-432 39 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "562" + "plane" "(-320 39 66) (-432 39 66) (-432 57 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "561" + "plane" "(-320 57 65) (-432 57 65) (-432 39 65)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[-1 0 0 2] 2" + "vaxis" "[0 -1 0 44] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "560" + "plane" "(-432 39 66) (-432 39 65) (-432 57 65)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "559" + "plane" "(-320 57 66) (-320 57 65) (-320 39 65)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "12" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "78" + "classname" "func_detail" + solid + { + "id" "79" + side + { + "id" "594" + "plane" "(-249 -68 56) (-249 -68 -56) (-249 -65 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "593" + "plane" "(-231 -65 56) (-231 -65 -56) (-231 -68 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "592" + "plane" "(-249 -68 -56) (-249 -68 56) (-231 -68 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "591" + "plane" "(-249 -65 56) (-249 -65 -56) (-231 -65 -56)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 -1 32] 2" + "vaxis" "[1 0 0 16] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "590" + "plane" "(-249 -65 -56) (-249 -68 -56) (-231 -68 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "589" + "plane" "(-249 -68 56) (-249 -65 56) (-231 -65 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "80" + side + { + "id" "600" + "plane" "(-223 -121 66) (-223 -121 178) (-222 -121 178)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 1 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "599" + "plane" "(-223 -103 178) (-223 -103 66) (-222 -103 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 1 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "598" + "plane" "(-222 -103 178) (-222 -103 66) (-222 -121 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -24] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "597" + "plane" "(-223 -121 178) (-223 -121 66) (-223 -103 66)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 -1 26] 2" + "vaxis" "[0 1 0 16] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "596" + "plane" "(-222 -103 66) (-223 -103 66) (-223 -121 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "595" + "plane" "(-222 -121 178) (-223 -121 178) (-223 -103 178)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "81" + side + { + "id" "606" + "plane" "(-249 -56 181) (-249 56 181) (-249 56 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "605" + "plane" "(-231 56 181) (-231 -56 181) (-231 -56 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "604" + "plane" "(-249 -56 182) (-249 56 182) (-231 56 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "603" + "plane" "(-249 56 181) (-249 -56 181) (-231 -56 181)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 -1 0 32] 2" + "vaxis" "[1 0 0 16] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "602" + "plane" "(-249 -56 181) (-249 -56 182) (-231 -56 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "601" + "plane" "(-249 56 182) (-249 56 181) (-231 56 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "82" + side + { + "id" "612" + "plane" "(-232 121 182) (-344 121 182) (-344 121 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "611" + "plane" "(-232 103 181) (-344 103 181) (-344 103 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "610" + "plane" "(-232 103 182) (-344 103 182) (-344 121 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "609" + "plane" "(-232 121 181) (-344 121 181) (-344 103 181)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[-1 0 0 0] 2" + "vaxis" "[0 -1 0 16] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "608" + "plane" "(-344 103 182) (-344 103 181) (-344 121 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "607" + "plane" "(-232 121 182) (-232 121 181) (-232 103 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "13" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "84" + "classname" "func_detail" + solid + { + "id" "85" + side + { + "id" "678" + "plane" "(-232 121 182) (-344 121 182) (-344 121 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "677" + "plane" "(-232 103 181) (-344 103 181) (-344 103 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "676" + "plane" "(-232 103 182) (-344 103 182) (-344 121 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "675" + "plane" "(-232 121 181) (-344 121 181) (-344 103 181)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[-1 0 0 -40] 2" + "vaxis" "[0 -1 0 60] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "674" + "plane" "(-344 103 182) (-344 103 181) (-344 121 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "673" + "plane" "(-232 121 182) (-232 121 181) (-232 103 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "86" + side + { + "id" "684" + "plane" "(-232 57 182) (-344 57 182) (-344 57 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "683" + "plane" "(-232 39 181) (-344 39 181) (-344 39 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "682" + "plane" "(-232 39 182) (-344 39 182) (-344 57 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "681" + "plane" "(-232 57 181) (-344 57 181) (-344 39 181)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[-1 0 0 -40] 2" + "vaxis" "[0 -1 0 44] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "680" + "plane" "(-344 39 182) (-344 39 181) (-344 57 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "679" + "plane" "(-232 57 182) (-232 57 181) (-232 39 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "87" + side + { + "id" "690" + "plane" "(-232 89 182) (-344 89 182) (-344 89 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "689" + "plane" "(-232 71 181) (-344 71 181) (-344 71 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "688" + "plane" "(-232 71 182) (-344 71 182) (-344 89 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "687" + "plane" "(-232 89 181) (-344 89 181) (-344 71 181)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[-1 0 0 -40] 2" + "vaxis" "[0 -1 0 52] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "686" + "plane" "(-344 71 182) (-344 71 181) (-344 89 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "685" + "plane" "(-232 89 182) (-232 89 181) (-232 71 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "88" + side + { + "id" "696" + "plane" "(-359 120 181) (-359 7.99997 181) (-359 7.99997 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "695" + "plane" "(-377 7.99997 181) (-377 120 181) (-377 120 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "694" + "plane" "(-377 7.99997 182) (-377 120 182) (-359 120 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "693" + "plane" "(-377 120 181) (-377 7.99997 181) (-359 7.99997 181)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 1 0 16] 2" + "vaxis" "[-1 0 0 -60] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "692" + "plane" "(-377 120 182) (-377 120 181) (-359 120 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "691" + "plane" "(-377 7.99997 181) (-377 7.99997 182) (-359 7.99997 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "89" + side + { + "id" "702" + "plane" "(-391 120 181) (-391 7.99997 181) (-391 7.99997 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "701" + "plane" "(-409 7.99996 181) (-409 120 181) (-409 120 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "700" + "plane" "(-409 7.99996 182) (-409 120 182) (-391 120 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "699" + "plane" "(-409 120 181) (-409 7.99996 181) (-391 7.99997 181)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 1 0 16] 2" + "vaxis" "[-1 0 0 -4] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "698" + "plane" "(-409 120 182) (-409 120 181) (-391 120 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "697" + "plane" "(-409 7.99996 181) (-409 7.99996 182) (-391 7.99997 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "90" + side + { + "id" "708" + "plane" "(-423 120 181) (-423 7.99996 181) (-423 7.99996 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "707" + "plane" "(-441 7.99996 181) (-441 120 181) (-441 120 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "706" + "plane" "(-441 7.99996 182) (-441 120 182) (-423 120 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "705" + "plane" "(-441 120 181) (-441 7.99996 181) (-423 7.99996 181)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 1 0 16] 2" + "vaxis" "[-1 0 0 -12] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "704" + "plane" "(-441 120 182) (-441 120 181) (-423 120 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "703" + "plane" "(-441 7.99996 181) (-441 7.99996 182) (-423 7.99996 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "91" + side + { + "id" "714" + "plane" "(-231 130 182) (-231 130 70) (-231 129 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "713" + "plane" "(-249 129 182) (-249 129 70) (-249 130 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "712" + "plane" "(-249 130 182) (-249 130 70) (-231 130 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "711" + "plane" "(-249 129 70) (-249 129 182) (-231 129 182)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 -1 -0.5] 2" + "vaxis" "[-1 0 0 -28] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "710" + "plane" "(-249 130 70) (-249 129 70) (-231 129 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "709" + "plane" "(-249 129 182) (-249 130 182) (-231 130 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "92" + side + { + "id" "720" + "plane" "(-263 130 182) (-263 130 70) (-263 129 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "719" + "plane" "(-281 129 182) (-281 129 70) (-281 130 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "718" + "plane" "(-281 130 182) (-281 130 70) (-263 130 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "717" + "plane" "(-281 129 70) (-281 129 182) (-263 129 182)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 -1 -0.5] 2" + "vaxis" "[-1 0 0 28] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "716" + "plane" "(-281 130 70) (-281 129 70) (-263 129 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "715" + "plane" "(-281 129 182) (-281 130 182) (-263 130 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "93" + side + { + "id" "726" + "plane" "(-231 130 54) (-231 130 -58) (-231 129 -58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "725" + "plane" "(-249 129 54) (-249 129 -58) (-249 130 -58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "724" + "plane" "(-249 130 54) (-249 130 -58) (-231 130 -58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "723" + "plane" "(-249 129 -58) (-249 129 54) (-231 129 54)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 -1 -32.5] 2" + "vaxis" "[-1 0 0 -28] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "722" + "plane" "(-249 130 -58) (-249 129 -58) (-231 129 -58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "721" + "plane" "(-249 129 54) (-249 130 54) (-231 130 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "94" + side + { + "id" "732" + "plane" "(-263 130 54) (-263 130 -58) (-263 129 -58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "731" + "plane" "(-281 129 54) (-281 129 -58) (-281 130 -58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "730" + "plane" "(-281 130 54) (-281 130 -58) (-263 130 -58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "729" + "plane" "(-281 129 -58) (-281 129 54) (-263 129 54)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 -1 -32.5] 2" + "vaxis" "[-1 0 0 28] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "728" + "plane" "(-281 130 -58) (-281 129 -58) (-263 129 -58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "727" + "plane" "(-281 129 54) (-281 130 54) (-263 130 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "14" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "22" + "classname" "func_detail" + solid + { + "id" "23" + side + { + "id" "210" + "plane" "(-249 187 182) (-249 187 70) (-249 188 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "209" + "plane" "(-231 188 182) (-231 188 70) (-231 187 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "208" + "plane" "(-249 188 182) (-249 188 70) (-231 188 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "207" + "plane" "(-249 187 70) (-249 187 182) (-231 187 182)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 1 0.5] 2" + "vaxis" "[1 0 0 28] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "206" + "plane" "(-249 187 182) (-249 188 182) (-231 188 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "205" + "plane" "(-249 188 70) (-249 187 70) (-231 187 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "17" + side + { + "id" "186" + "plane" "(-328 57 70) (-440 57 70) (-440 57 69)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "185" + "plane" "(-328 39 69) (-440 39 69) (-440 39 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "184" + "plane" "(-328 39 70) (-440 39 70) (-440 57 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "183" + "plane" "(-328 57 69) (-440 57 69) (-440 39 69)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[-1 0 0 0] 2" + "vaxis" "[0 -1 0 44] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "182" + "plane" "(-440 39 70) (-440 39 69) (-440 57 69)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "181" + "plane" "(-328 57 70) (-328 57 69) (-328 39 69)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "18" + side + { + "id" "192" + "plane" "(-328 25 70) (-440 25 70) (-440 25 69)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "191" + "plane" "(-328 7.00003 69) (-440 7.00004 69) (-440 7.00004 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "190" + "plane" "(-328 7.00003 70) (-440 7.00004 70) (-440 25 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "189" + "plane" "(-328 25 69) (-440 25 69) (-440 7.00004 69)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[-1 0 0 0] 2" + "vaxis" "[0 -1 0 36] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "188" + "plane" "(-440 7.00004 70) (-440 7.00004 69) (-440 25 69)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "187" + "plane" "(-328 25 70) (-328 25 69) (-328 7.00003 69)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "19" + side + { + "id" "198" + "plane" "(-328 177 70) (-440 177 70) (-440 177 69)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "197" + "plane" "(-328 159 69) (-440 159 69) (-440 159 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "196" + "plane" "(-328 159 70) (-440 159 70) (-440 177 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "195" + "plane" "(-328 177 69) (-440 177 69) (-440 159 69)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[-1 0 0 0] 2" + "vaxis" "[0 -1 0 10] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "194" + "plane" "(-440 159 70) (-440 159 69) (-440 177 69)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "193" + "plane" "(-328 177 70) (-328 177 69) (-328 159 69)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "21" + side + { + "id" "204" + "plane" "(-249 187 53.9999) (-249 187 -58) (-249 188 -58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "203" + "plane" "(-231 188 53.9999) (-231 188 -58) (-231 187 -58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "202" + "plane" "(-249 188 53.9999) (-249 188 -58) (-231 188 -58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "201" + "plane" "(-249 187 -58) (-249 187 53.9999) (-231 187 53.9999)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 1 32.5] 2" + "vaxis" "[1 0 0 28] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "200" + "plane" "(-249 187 53.9999) (-249 188 53.9999) (-231 188 53.9999)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "199" + "plane" "(-249 188 -58) (-249 187 -58) (-231 187 -58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "25" + side + { + "id" "216" + "plane" "(-217 187 53.9999) (-217 187 -58.0001) (-217 188 -58.0001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "215" + "plane" "(-199 188 53.9999) (-199 188 -58.0001) (-199 187 -58.0001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "214" + "plane" "(-217 188 53.9999) (-217 188 -58.0001) (-199 188 -58.0001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "213" + "plane" "(-217 187 -58.0001) (-217 187 53.9999) (-199 187 53.9999)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 1 32.5] 2" + "vaxis" "[1 0 0 20] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "212" + "plane" "(-217 187 53.9999) (-217 188 53.9999) (-199 188 53.9999)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "211" + "plane" "(-217 188 -58.0001) (-217 187 -58.0001) (-199 187 -58.0001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "27" + side + { + "id" "222" + "plane" "(-217 187 182) (-217 187 70) (-217 188 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "221" + "plane" "(-199 188 182) (-199 188 70) (-199 187 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "220" + "plane" "(-217 188 182) (-217 188 70) (-199 188 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219" + "plane" "(-217 187 70) (-217 187 182) (-199 187 182)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 1 0.5] 2" + "vaxis" "[1 0 0 20] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "218" + "plane" "(-217 187 182) (-217 188 182) (-199 188 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217" + "plane" "(-217 188 70) (-217 187 70) (-199 187 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "29" + side + { + "id" "228" + "plane" "(-199 182 183) (-199 70 183) (-199 70 184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227" + "plane" "(-217 70 183) (-217 182 183) (-217 182 184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "226" + "plane" "(-217 70 184) (-217 182 184) (-199 182 184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "225" + "plane" "(-217 182 183) (-217 70 183) (-199 70 183)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 1 0 0.499992] 2" + "vaxis" "[-1 0 0 -20] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "224" + "plane" "(-217 182 184) (-217 182 183) (-199 182 183)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "223" + "plane" "(-217 70 183) (-217 70 184) (-199 70 184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "31" + side + { + "id" "234" + "plane" "(-231 182 183) (-231 70 183) (-231 70 184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "233" + "plane" "(-249 70 183) (-249 182 183) (-249 182 184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232" + "plane" "(-249 70 184) (-249 182 184) (-231 182 184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231" + "plane" "(-249 182 183) (-249 70 183) (-231 70 183)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 1 0 0.499992] 2" + "vaxis" "[-1 0 0 -28] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "230" + "plane" "(-249 182 184) (-249 182 183) (-231 182 183)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229" + "plane" "(-249 70 183) (-249 70 184) (-231 70 184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "33" + side + { + "id" "240" + "plane" "(-231 54 183) (-231 -58 183) (-231 -58 184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "239" + "plane" "(-249 -58 183) (-249 54 183) (-249 54 184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "238" + "plane" "(-249 -58 184) (-249 54 184) (-231 54 184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237" + "plane" "(-249 54 183) (-249 -58 183) (-231 -58 183)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 1 0 32.5] 2" + "vaxis" "[-1 0 0 -28] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "236" + "plane" "(-249 54 184) (-249 54 183) (-231 54 183)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "235" + "plane" "(-249 -58 183) (-249 -58 184) (-231 -58 184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "9" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2" + "classname" "func_detail" + solid + { + "id" "3" + side + { + "id" "66" + "plane" "(-232 89 182) (-344 89 182) (-344 89 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "65" + "plane" "(-232 71 181) (-344 71 181) (-344 71 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "64" + "plane" "(-232 71 182) (-344 71 182) (-344 89 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "63" + "plane" "(-232 89 181) (-344 89 181) (-344 71 181)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[-1 0 0 -32] 2" + "vaxis" "[0 -1 0 32] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "62" + "plane" "(-344 71 182) (-344 71 181) (-344 89 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "61" + "plane" "(-232 89 182) (-232 89 181) (-232 71 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4" + side + { + "id" "72" + "plane" "(-231 130 54) (-231 130 -58) (-231 129 -58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "71" + "plane" "(-249 129 54) (-249 129 -58) (-249 130 -58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "70" + "plane" "(-249 130 54) (-249 130 -58) (-231 130 -58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -8] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "69" + "plane" "(-249 129 -58) (-249 129 54) (-231 129 54)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 -1 24] 2" + "vaxis" "[-1 0 0 -32] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "68" + "plane" "(-249 130 -58) (-249 129 -58) (-231 129 -58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "67" + "plane" "(-249 129 54) (-249 130 54) (-231 130 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5" + side + { + "id" "78" + "plane" "(-263 130 54) (-263 130 -58) (-263 129 -58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "77" + "plane" "(-281 129 54) (-281 129 -58) (-281 130 -58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "76" + "plane" "(-281 130 54) (-281 130 -58) (-263 130 -58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -8] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "75" + "plane" "(-281 129 -58) (-281 129 54) (-263 129 54)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 -1 24] 2" + "vaxis" "[-1 0 0 -32] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "74" + "plane" "(-281 130 -58) (-281 129 -58) (-263 129 -58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "73" + "plane" "(-281 129 54) (-281 130 54) (-263 130 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6" + side + { + "id" "84" + "plane" "(-231 130 182) (-231 130 70) (-231 129 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "83" + "plane" "(-249 129 182) (-249 129 70) (-249 130 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "82" + "plane" "(-249 130 182) (-249 130 70) (-231 130 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -8] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "81" + "plane" "(-249 129 70) (-249 129 182) (-231 129 182)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 -1 24] 2" + "vaxis" "[-1 0 0 -32] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "80" + "plane" "(-249 130 70) (-249 129 70) (-231 129 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "79" + "plane" "(-249 129 182) (-249 130 182) (-231 130 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7" + side + { + "id" "90" + "plane" "(-263 130 182) (-263 130 70) (-263 129 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "89" + "plane" "(-281 129 182) (-281 129 70) (-281 130 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "88" + "plane" "(-281 130 182) (-281 130 70) (-263 130 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -8] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "87" + "plane" "(-281 129 70) (-281 129 182) (-263 129 182)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 -1 24] 2" + "vaxis" "[-1 0 0 -32] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "86" + "plane" "(-281 130 70) (-281 129 70) (-263 129 70)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "85" + "plane" "(-281 129 182) (-281 130 182) (-263 130 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8" + side + { + "id" "96" + "plane" "(-232 57 182) (-344 57 182) (-344 57 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "95" + "plane" "(-232 39 181) (-344 39 181) (-344 39 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "94" + "plane" "(-232 39 182) (-344 39 182) (-344 57 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "93" + "plane" "(-232 57 181) (-344 57 181) (-344 39 181)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[-1 0 0 -32] 2" + "vaxis" "[0 -1 0 32] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "92" + "plane" "(-344 39 182) (-344 39 181) (-344 57 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "91" + "plane" "(-232 57 182) (-232 57 181) (-232 39 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "9" + side + { + "id" "102" + "plane" "(-232 121 182) (-344 121 182) (-344 121 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "101" + "plane" "(-232 103 181) (-344 103 181) (-344 103 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "100" + "plane" "(-232 103 182) (-344 103 182) (-344 121 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "99" + "plane" "(-232 121 181) (-344 121 181) (-344 103 181)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[-1 0 0 -32] 2" + "vaxis" "[0 -1 0 32] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "98" + "plane" "(-344 103 182) (-344 103 181) (-344 121 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "97" + "plane" "(-232 121 182) (-232 121 181) (-232 103 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "10" + side + { + "id" "108" + "plane" "(-391 120 181) (-391 8.00003 181) (-391 8.00003 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "107" + "plane" "(-409 8.00004 181) (-409 120 181) (-409 120 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "106" + "plane" "(-409 8.00004 182) (-409 120 182) (-391 120 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "105" + "plane" "(-409 120 181) (-409 8.00004 181) (-391 8.00003 181)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 1 0 -32] 2" + "vaxis" "[-1 0 0 -32] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "104" + "plane" "(-409 120 182) (-409 120 181) (-391 120 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "103" + "plane" "(-409 8.00004 181) (-409 8.00004 182) (-391 8.00003 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "11" + side + { + "id" "114" + "plane" "(-359 120 181) (-359 8.00003 181) (-359 8.00003 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "113" + "plane" "(-377 8.00003 181) (-377 120 181) (-377 120 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "112" + "plane" "(-377 8.00003 182) (-377 120 182) (-359 120 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "111" + "plane" "(-377 120 181) (-377 8.00003 181) (-359 8.00003 181)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 1 0 -32] 2" + "vaxis" "[-1 0 0 -32] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "110" + "plane" "(-377 120 182) (-377 120 181) (-359 120 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "109" + "plane" "(-377 8.00003 181) (-377 8.00003 182) (-359 8.00003 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "12" + side + { + "id" "120" + "plane" "(-423 120 181) (-423 8.00004 181) (-423 8.00004 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "119" + "plane" "(-441 8.00004 181) (-441 120 181) (-441 120 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "118" + "plane" "(-441 8.00004 182) (-441 120 182) (-423 120 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "117" + "plane" "(-441 120 181) (-441 8.00004 181) (-423 8.00004 181)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 1 0 -32] 2" + "vaxis" "[-1 0 0 -32] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "116" + "plane" "(-441 120 182) (-441 120 181) (-423 120 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "115" + "plane" "(-441 8.00004 181) (-441 8.00004 182) (-423 8.00004 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -48] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "4" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "13" + "classname" "bee2_template_conf" + "debug" "0" + "detail_auto_visgroup" "0" + "discard_brushes" "0" + "temp_type" "detail" + "template_id" "BEE2_CLEAN_SP_ENTRY_CORR_LIGHTS" + "origin" "0 0 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/valve/clean_style/templates/entry_over_corr_lights.vmf b/packages/valve/clean_style/templates/entry_over_corr_lights.vmf new file mode 100644 index 0000000000..16e744a564 --- /dev/null +++ b/packages/valve/clean_style/templates/entry_over_corr_lights.vmf @@ -0,0 +1,1185 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "5" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ + visgroup + { + "name" "small_right" + "visgroupid" "10" + "color" "98 91 88" + } + visgroup + { + "name" "white_left" + "visgroupid" "4" + "color" "185 110 215" + } + visgroup + { + "name" "staircase" + "visgroupid" "5" + "color" "197 218 131" + } + visgroup + { + "name" "right_turn" + "visgroupid" "11" + "color" "222 135 196" + } +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "64" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "5" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" +} +entity +{ + "id" "2" + "classname" "func_detail" + solid + { + "id" "3" + side + { + "id" "30" + "plane" "(-292 -8 103) (-292 -120 103) (-291 -120 103)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 12] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29" + "plane" "(-292 -120 121) (-292 -8 121) (-291 -8 121)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 12] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28" + "plane" "(-292 -120 103) (-292 -8 103) (-292 -8 121)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27" + "plane" "(-291 -8 103) (-291 -120 103) (-291 -120 121)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 -1 0 16] 2" + "vaxis" "[0 0 1 -16] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "26" + "plane" "(-291 -120 103) (-292 -120 103) (-292 -120 121)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 12] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25" + "plane" "(-292 -8 103) (-291 -8 103) (-291 -8 121)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 12] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4" + side + { + "id" "36" + "plane" "(-113 140 -24) (-113 140 88) (-113 139 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35" + "plane" "(-95 140 88) (-95 140 -24) (-95 139 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "34" + "plane" "(-113 140 88) (-113 140 -24) (-95 140 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33" + "plane" "(-113 139 -24) (-113 139 88) (-95 139 88)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 1 32] 2" + "vaxis" "[1 0 0 28] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "32" + "plane" "(-113 139 88) (-113 140 88) (-95 140 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 44] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "31" + "plane" "(-113 140 -24) (-113 139 -24) (-95 139 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 44] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5" + side + { + "id" "42" + "plane" "(-272 121 139) (-160 121 139) (-160 121 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -20] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "41" + "plane" "(-272 103 140) (-160 103 140) (-160 103 139)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -20] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "40" + "plane" "(-272 121 140) (-160 121 140) (-160 103 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "39" + "plane" "(-272 103 139) (-160 103 139) (-160 121 139)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[-1 0 0 -60] 2" + "vaxis" "[0 -1 0 -32] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "38" + "plane" "(-272 121 139) (-272 121 140) (-272 103 140)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -20] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37" + "plane" "(-160 121 140) (-160 121 139) (-160 103 139)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -20] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "10" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "7" + "classname" "bee2_template_conf" + "debug" "0" + "detail_auto_visgroup" "0" + "discard_brushes" "0" + "temp_type" "detail" + "template_id" "BEE2_CLEAN_SP_ENTRY_CORR_OVER_LIGHTS" + "origin" "0 0 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "15" + "classname" "func_detail" + solid + { + "id" "10" + side + { + "id" "84" + "plane" "(-547 -152 71) (-547 -40 71) (-548 -40 71)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 12] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "83" + "plane" "(-548 -152 89) (-548 -40 89) (-547 -40 89)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 12] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "82" + "plane" "(-548 -152 71) (-548 -40 71) (-548 -40 89)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "81" + "plane" "(-547 -40 71) (-547 -152 71) (-547 -152 89)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 -1 0 0] 2" + "vaxis" "[0 0 1 0] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "80" + "plane" "(-547 -152 71) (-548 -152 71) (-548 -152 89)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 12] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "79" + "plane" "(-548 -40 71) (-547 -40 71) (-547 -40 89)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 12] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "11" + side + { + "id" "90" + "plane" "(-416 -171 103) (-528 -171 103) (-528 -172 103)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 44] 0.25" + "vaxis" "[-1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "89" + "plane" "(-416 -172 121) (-528 -172 121) (-528 -171 121)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 44] 0.25" + "vaxis" "[-1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "88" + "plane" "(-416 -172 103) (-528 -172 103) (-528 -172 121)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "87" + "plane" "(-528 -171 103) (-416 -171 103) (-416 -171 121)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[1 0 0 0] 2" + "vaxis" "[0 0 1 0] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "86" + "plane" "(-416 -171 103) (-416 -172 103) (-416 -172 121)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 44] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "85" + "plane" "(-528 -172 103) (-528 -171 103) (-528 -171 121)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 44] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6" + side + { + "id" "96" + "plane" "(-240 139 103) (-128 139 103) (-128 140 103)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -20] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "95" + "plane" "(-240 140 121) (-128 140 121) (-128 139 121)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -20] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "94" + "plane" "(-240 140 103) (-128 140 103) (-128 140 121)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "93" + "plane" "(-128 139 103) (-240 139 103) (-240 139 121)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[-1 0 0 20] 2" + "vaxis" "[0 0 1 -16] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "92" + "plane" "(-240 139 103) (-240 140 103) (-240 140 121)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -20] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "91" + "plane" "(-128 140 103) (-128 139 103) (-128 139 121)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -20] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "4" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "27" + "classname" "func_detail" + solid + { + "id" "28" + side + { + "id" "120" + "plane" "(-471 119 -120) (-471 119 -7.99997) (-471 120 -7.99997)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "119" + "plane" "(-489 119 -7.99997) (-489 119 -120) (-489 120 -120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "118" + "plane" "(-471 120 -120) (-471 120 -7.99997) (-489 120 -7.99997)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "117" + "plane" "(-471 119 -7.99997) (-471 119 -120) (-489 119 -120)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 -1 16] 2" + "vaxis" "[-1 0 0 -24] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "116" + "plane" "(-471 119 -120) (-471 120 -120) (-489 120 -120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "115" + "plane" "(-471 120 -7.99997) (-471 119 -7.99997) (-489 119 -7.99997)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "5" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "29" + "classname" "func_detail" + solid + { + "id" "30" + side + { + "id" "126" + "plane" "(-81 56 71) (-81 -56 71) (-80 -56 71)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "125" + "plane" "(-81 -56 89) (-81 56 89) (-80 56 89)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "124" + "plane" "(-80 56 71) (-80 -56 71) (-80 -56 89)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "123" + "plane" "(-81 -56 71) (-81 56 71) (-81 56 89)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 1 0 32] 2" + "vaxis" "[0 0 1 12] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "122" + "plane" "(-80 56 89) (-81 56 89) (-81 56 71)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -4] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121" + "plane" "(-80 -56 71) (-81 -56 71) (-81 -56 89)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -4] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "5" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "31" + "classname" "func_detail" + solid + { + "id" "32" + side + { + "id" "132" + "plane" "(-112 -167 103) (-224 -167 103) (-224 -168 103)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 28] 0.25" + "vaxis" "[-1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "131" + "plane" "(-112 -168 121) (-224 -168 121) (-224 -167 121)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 28] 0.25" + "vaxis" "[-1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "130" + "plane" "(-112 -168 103) (-224 -168 103) (-224 -168 121)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129" + "plane" "(-112 -167 121) (-224 -167 121) (-224 -167 103)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[1 0 0 10] 2" + "vaxis" "[0 0 1 4] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "128" + "plane" "(-112 -167 103) (-112 -168 103) (-112 -168 121)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 28] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127" + "plane" "(-224 -168 103) (-224 -167 103) (-224 -167 121)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 28] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "5" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "33" + "classname" "func_detail" + solid + { + "id" "34" + side + { + "id" "162" + "plane" "(-128 135 153) (-240 135 153) (-240 136 153)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "161" + "plane" "(-128 136 135) (-240 136 135) (-240 135 135)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "160" + "plane" "(-240 136 135) (-128 136 135) (-128 136 153)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "159" + "plane" "(-128 135 135) (-240 135 135) (-240 135 153)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[1 0 0 6] 2" + "vaxis" "[0 0 -1 52] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "158" + "plane" "(-128 136 135) (-128 135 135) (-128 135 153)" + "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" "157" + "plane" "(-240 135 135) (-240 136 135) (-240 136 153)" + "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" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "11" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "35" + "classname" "func_detail" + solid + { + "id" "36" + side + { + "id" "168" + "plane" "(-384 135 -39) (-496 135 -39) (-496 136 -39)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[-1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "167" + "plane" "(-384 136 -57) (-496 136 -57) (-496 135 -57)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[-1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "166" + "plane" "(-384 136 -39) (-496 136 -39) (-496 136 -57)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "165" + "plane" "(-384 135 -57) (-496 135 -57) (-496 135 -39)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[1 0 0 14] 2" + "vaxis" "[0 0 -1 20] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "164" + "plane" "(-384 136 -57) (-384 135 -57) (-384 135 -39)" + "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" "163" + "plane" "(-496 135 -57) (-496 136 -57) (-496 136 -39)" + "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" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "11" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "37" + "classname" "func_detail" + solid + { + "id" "38" + side + { + "id" "174" + "plane" "(-160 135 -39) (-272 135 -39) (-272 136 -39)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[-1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "173" + "plane" "(-160 136 -57) (-272 136 -57) (-272 135 -57)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[-1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "172" + "plane" "(-160 136 -39) (-272 136 -39) (-272 136 -57)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "171" + "plane" "(-160 135 -57) (-272 135 -57) (-272 135 -39)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[1 0 0 22] 2" + "vaxis" "[0 0 -1 20] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "170" + "plane" "(-160 136 -57) (-160 135 -57) (-160 135 -39)" + "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" "169" + "plane" "(-272 135 -57) (-272 136 -57) (-272 136 -39)" + "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" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "11" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "39" + "classname" "func_detail" + solid + { + "id" "40" + side + { + "id" "180" + "plane" "(-496 -167 153) (-384 -167 153) (-384 -184 153)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -40] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "179" + "plane" "(-496 -184 135) (-384 -184 135) (-384 -167 135)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -40] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "178" + "plane" "(-384 -184 135) (-496 -184 135) (-496 -184 153)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "177" + "plane" "(-496 -167 135) (-384 -167 135) (-384 -167 153)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[-1 0 0 -42] 2" + "vaxis" "[0 0 -1 52] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "176" + "plane" "(-496 -184 135) (-496 -167 135) (-496 -167 153)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "175" + "plane" "(-384 -167 135) (-384 -184 135) (-384 -184 153)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "11" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/valve/clean_style/templates/exit_corr_lights.vmf b/packages/valve/clean_style/templates/exit_corr_lights.vmf new file mode 100644 index 0000000000..d526c95970 --- /dev/null +++ b/packages/valve/clean_style/templates/exit_corr_lights.vmf @@ -0,0 +1,2352 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "7" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ + visgroup + { + "name" "corr_1" + "visgroupid" "8" + "color" "104 169 94" + } + visgroup + { + "name" "corr_2" + "visgroupid" "9" + "color" "143 156 125" + } + visgroup + { + "name" "corr_3" + "visgroupid" "10" + "color" "162 155 88" + } + visgroup + { + "name" "corr_4" + "visgroupid" "11" + "color" "254 247 180" + } + visgroup + { + "name" "up_stair" + "visgroupid" "12" + "color" "195 80 225" + } + visgroup + { + "name" "down_square" + "visgroupid" "13" + "color" "116 85 250" + } +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "64" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "7" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" +} +entity +{ + "id" "86" + "classname" "func_detail" + solid + { + "id" "87" + side + { + "id" "363" + "plane" "(153 135 -408) (135 135 -408) (135 135 -296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 3" + "vaxis" "[0 0 -1 -26.6667] 3" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362" + "plane" "(135 135 -296) (135 135 -408) (135 153 -408)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 1 0 32] 2" + "vaxis" "[0 0 -1 5.33333] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "361" + "plane" "(153 135 -296) (135 135 -296) (135 153 -296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "360" + "plane" "(135 153 -408) (135 135 -408) (153 135 -408)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "359" + "plane" "(135 153 -296) (135 153 -408) (153 135 -408)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "88" + side + { + "id" "369" + "plane" "(-135 -135 -408) (-135 -153 -408) (-135 -153 -296)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 1 0 40] 2" + "vaxis" "[0 0 -1 -26.6667] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "368" + "plane" "(-135 -153 -296) (-135 -153 -408) (-160 -153 -408)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[1 0 0 32] 2" + "vaxis" "[0 0 -1 5.33333] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "367" + "plane" "(-160 -135 -296) (-135 -135 -296) (-135 -153 -296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "366" + "plane" "(-160 -153 -408) (-135 -153 -408) (-135 -135 -408)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "365" + "plane" "(-160 -135 -408) (-135 -135 -408) (-135 -135 -296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364" + "plane" "(-160 -153 -296) (-160 -153 -408) (-160 -135 -408)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "89" + side + { + "id" "375" + "plane" "(-160 153 -408) (-135 153 -408) (-135 153 -296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 4" + "vaxis" "[0 0 -1 -16] 4" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374" + "plane" "(-135 153 -296) (-135 153 -408) (-135 135 -408)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 1 0 -40] 2" + "vaxis" "[0 0 -1 5.33333] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "373" + "plane" "(-160 153 -296) (-135 153 -296) (-135 135 -296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372" + "plane" "(-135 153 -408) (-160 153 -408) (-160 135 -408)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371" + "plane" "(-135 135 -296) (-135 135 -408) (-160 135 -408)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370" + "plane" "(-160 135 -408) (-160 153 -408) (-160 153 -296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "90" + side + { + "id" "380" + "plane" "(135 -153 -408) (135 -135 -408) (135 -135 -296)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 1 0 32] 2" + "vaxis" "[0 0 -1 -26.6667] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "379" + "plane" "(135 -135 -296) (135 -135 -408) (153 -135 -408)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378" + "plane" "(135 -153 -296) (135 -135 -296) (153 -135 -296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377" + "plane" "(153 -135 -408) (135 -135 -408) (135 -153 -408)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376" + "plane" "(153 -135 -296) (153 -135 -408) (135 -153 -408)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "13" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "81" + "classname" "func_detail" + solid + { + "id" "82" + side + { + "id" "330" + "plane" "(-135 -56 263) (-135 56 263) (-136 56 263)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329" + "plane" "(-135 56 281) (-135 -56 281) (-136 -56 281)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "328" + "plane" "(-136 -56 263) (-136 56 263) (-136 56 281)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327" + "plane" "(-135 56 263) (-135 -56 263) (-135 -56 281)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 -1 0 32] 1" + "vaxis" "[0 0 1 -48] 1" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "326" + "plane" "(-135 -56 263) (-136 -56 263) (-136 -56 281)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325" + "plane" "(-136 56 263) (-135 56 263) (-135 56 281)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "83" + side + { + "id" "336" + "plane" "(-135 -56 231) (-135 56 231) (-136 56 231)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335" + "plane" "(-135 56 249) (-135 -56 249) (-136 -56 249)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334" + "plane" "(-136 -56 231) (-136 56 231) (-136 56 249)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333" + "plane" "(-135 56 231) (-135 -56 231) (-135 -56 249)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 -1 0 32] 1" + "vaxis" "[0 0 1 -16] 1" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "332" + "plane" "(-135 -56 231) (-136 -56 231) (-136 -56 249)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "331" + "plane" "(-136 56 231) (-135 56 231) (-135 56 249)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "12" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "68" + "classname" "func_detail" + solid + { + "id" "69" + side + { + "id" "258" + "plane" "(-416 -71 56) (-416 -71 -56) (-416 -72 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "257" + "plane" "(-434 -72 56) (-434 -72 -56) (-434 -71 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256" + "plane" "(-416 -72 56) (-416 -72 -56) (-434 -72 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255" + "plane" "(-434 -71 56) (-434 -71 -56) (-416 -71 -56)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 1 32] 2" + "vaxis" "[-1 0 0 -52.5] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "254" + "plane" "(-434 -72 56) (-434 -71 56) (-416 -71 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253" + "plane" "(-434 -71 -56) (-434 -72 -56) (-416 -72 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "70" + side + { + "id" "264" + "plane" "(-256 -57 71) (-368 -57 71) (-368 -57 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263" + "plane" "(-368 -39 71) (-256 -39 71) (-256 -39 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "262" + "plane" "(-256 -57 72) (-368 -57 72) (-368 -39 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "261" + "plane" "(-256 -39 71) (-368 -39 71) (-368 -57 71)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[1 0 0 60] 2" + "vaxis" "[0 1 0 56] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "260" + "plane" "(-256 -39 72) (-256 -39 71) (-256 -57 71)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259" + "plane" "(-368 -57 72) (-368 -57 71) (-368 -39 71)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "71" + side + { + "id" "270" + "plane" "(-128 -57 71) (-240 -57 71) (-240 -57 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "269" + "plane" "(-240 -39 71) (-128 -39 71) (-128 -39 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "268" + "plane" "(-128 -57 72) (-240 -57 72) (-240 -39 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "267" + "plane" "(-128 -39 71) (-240 -39 71) (-240 -57 71)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[1 0 0 60] 2" + "vaxis" "[0 1 0 56] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "266" + "plane" "(-128 -39 72) (-128 -39 71) (-128 -57 71)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265" + "plane" "(-240 -57 72) (-240 -57 71) (-240 -39 71)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "72" + side + { + "id" "276" + "plane" "(-384 -57 71) (-496 -57 71) (-496 -57 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "275" + "plane" "(-496 -39 71) (-384 -39 71) (-384 -39 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "274" + "plane" "(-384 -57 72) (-496 -57 72) (-496 -39 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "273" + "plane" "(-384 -39 71) (-496 -39 71) (-496 -57 71)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[1 0 0 60] 2" + "vaxis" "[0 1 0 56] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "272" + "plane" "(-384 -39 72) (-384 -39 71) (-384 -57 71)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "271" + "plane" "(-496 -57 72) (-496 -57 71) (-496 -39 71)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "73" + side + { + "id" "282" + "plane" "(-504 -32 71) (-504 -39 71) (-120 -39 71)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -46] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "281" + "plane" "(-504 -39 72) (-504 -32 72) (-120 -32 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280" + "plane" "(-504 -39 71) (-504 -32 71) (-504 -32 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279" + "plane" "(-120 -32 71) (-120 -39 71) (-120 -39 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278" + "plane" "(-120 -39 71) (-504 -39 71) (-504 -39 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "277" + "plane" "(-504 -32 71) (-120 -32 71) (-120 -32 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "74" + side + { + "id" "288" + "plane" "(-504 -39 71) (-504 -57 71) (-496 -57 71)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "287" + "plane" "(-504 -57 72) (-504 -39 72) (-496 -39 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "286" + "plane" "(-496 -39 71) (-496 -57 71) (-496 -57 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "285" + "plane" "(-504 -57 71) (-504 -39 71) (-504 -39 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284" + "plane" "(-504 -39 71) (-496 -39 71) (-496 -39 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "283" + "plane" "(-496 -57 71) (-504 -57 71) (-504 -57 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "75" + side + { + "id" "294" + "plane" "(-128 -39 71) (-128 -57 71) (-120 -57 71)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293" + "plane" "(-128 -57 72) (-128 -39 72) (-120 -39 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "292" + "plane" "(-128 -57 71) (-128 -39 71) (-128 -39 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "291" + "plane" "(-120 -39 71) (-120 -57 71) (-120 -57 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "290" + "plane" "(-120 -57 71) (-128 -57 71) (-128 -57 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "289" + "plane" "(-128 -39 71) (-120 -39 71) (-120 -39 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "76" + side + { + "id" "300" + "plane" "(-504 -57 71) (-504 -64 71) (-120 -64 71)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -17] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299" + "plane" "(-504 -64 72) (-504 -57 72) (-120 -57 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298" + "plane" "(-120 -57 71) (-120 -64 71) (-120 -64 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297" + "plane" "(-504 -64 71) (-504 -57 71) (-504 -57 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296" + "plane" "(-504 -57 71) (-120 -57 71) (-120 -57 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295" + "plane" "(-120 -64 71) (-504 -64 71) (-504 -64 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "77" + side + { + "id" "306" + "plane" "(-256 -57 72) (-256 -39 72) (-240 -39 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305" + "plane" "(-256 -39 71) (-256 -57 71) (-240 -57 71)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304" + "plane" "(-256 -57 71) (-256 -39 71) (-256 -39 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303" + "plane" "(-240 -39 71) (-240 -57 71) (-240 -57 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "302" + "plane" "(-256 -39 71) (-240 -39 71) (-240 -39 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "301" + "plane" "(-240 -57 71) (-256 -57 71) (-256 -57 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "78" + side + { + "id" "312" + "plane" "(-384 -57 72) (-384 -39 72) (-368 -39 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "311" + "plane" "(-384 -39 71) (-384 -57 71) (-368 -57 71)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "310" + "plane" "(-384 -57 71) (-384 -39 71) (-384 -39 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "309" + "plane" "(-368 -39 71) (-368 -57 71) (-368 -57 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "308" + "plane" "(-384 -39 71) (-368 -39 71) (-368 -39 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307" + "plane" "(-368 -57 71) (-384 -57 71) (-384 -57 72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "11" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 9500]" + } +} +entity +{ + "id" "10" + "classname" "bee2_template_conf" + "debug" "0" + "detail_auto_visgroup" "0" + "discard_brushes" "0" + "temp_type" "detail" + "template_id" "BEE2_CLEAN_SP_EXIT_CORR_LIGHTS" + "origin" "0 0 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "31" + "classname" "func_detail" + solid + { + "id" "3" + side + { + "id" "78" + "plane" "(-159 -71 56) (-159 -71 -56) (-159 -72 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "77" + "plane" "(-177 -72 56) (-177 -72 -56) (-177 -71 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "76" + "plane" "(-177 -72 -56) (-177 -72 56) (-159 -72 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "75" + "plane" "(-177 -71 56) (-177 -71 -56) (-159 -71 -56)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 1 32] 2" + "vaxis" "[-1 0 0 -52] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "74" + "plane" "(-177 -72 56) (-177 -71 56) (-159 -71 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "73" + "plane" "(-177 -71 -56) (-177 -72 -56) (-159 -72 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4" + side + { + "id" "84" + "plane" "(-351 -71 56) (-351 -71 -56) (-351 -72 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "83" + "plane" "(-369 -72 56) (-369 -72 -56) (-369 -71 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "82" + "plane" "(-369 -72 -56) (-369 -72 56) (-351 -72 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "81" + "plane" "(-369 -71 56) (-369 -71 -56) (-351 -71 -56)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 1 32] 2" + "vaxis" "[-1 0 0 -20] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "80" + "plane" "(-369 -72 56) (-369 -71 56) (-351 -71 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "79" + "plane" "(-369 -71 -56) (-369 -72 -56) (-351 -72 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5" + side + { + "id" "90" + "plane" "(-255 -71 56) (-255 -71 -56) (-255 -72 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "89" + "plane" "(-273 -72 56) (-273 -72 -56) (-273 -71 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "88" + "plane" "(-273 -72 -56) (-273 -72 56) (-255 -72 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "87" + "plane" "(-273 -71 56) (-273 -71 -56) (-255 -71 -56)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 1 32] 2" + "vaxis" "[-1 0 0 -36] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "86" + "plane" "(-273 -72 56) (-273 -71 56) (-255 -71 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "85" + "plane" "(-273 -71 -56) (-273 -72 -56) (-255 -72 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6" + side + { + "id" "96" + "plane" "(-177 71 56) (-177 71 -56) (-177 72 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "95" + "plane" "(-159 72 56) (-159 72 -56) (-159 71 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "94" + "plane" "(-177 72 56) (-177 72 -56) (-159 72 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "93" + "plane" "(-177 71 -56) (-177 71 56) (-159 71 56)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 1 32] 2" + "vaxis" "[1 0 0 52] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "92" + "plane" "(-177 71 56) (-177 72 56) (-159 72 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "91" + "plane" "(-177 72 -56) (-177 71 -56) (-159 71 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7" + side + { + "id" "102" + "plane" "(-273 71 56) (-273 71 -56) (-273 72 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "101" + "plane" "(-255 72 56) (-255 72 -56) (-255 71 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "100" + "plane" "(-273 72 56) (-273 72 -56) (-255 72 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "99" + "plane" "(-273 71 -56) (-273 71 56) (-255 71 56)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 1 32] 2" + "vaxis" "[1 0 0 36] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "98" + "plane" "(-273 71 56) (-273 72 56) (-255 72 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "97" + "plane" "(-273 72 -56) (-273 71 -56) (-255 71 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8" + side + { + "id" "108" + "plane" "(-369 71 56) (-369 71 -56) (-369 72 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "107" + "plane" "(-351 72 56) (-351 72 -56) (-351 71 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "106" + "plane" "(-369 72 56) (-369 72 -56) (-351 72 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "105" + "plane" "(-369 71 -56) (-369 71 56) (-351 71 56)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 1 32] 2" + "vaxis" "[1 0 0 20] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "104" + "plane" "(-369 71 56) (-369 72 56) (-351 72 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "103" + "plane" "(-369 72 -56) (-369 71 -56) (-351 71 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "47" + "classname" "func_detail" + solid + { + "id" "48" + side + { + "id" "132" + "plane" "(-177 -71 -56) (-177 -87.9999 -56) (-159 -87.9999 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "131" + "plane" "(-177 -87.9999 56) (-177 -71 56) (-159 -71 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "130" + "plane" "(-159 -71 -56) (-159 -87.9999 -56) (-159 -87.9999 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129" + "plane" "(-177 -87.9999 -56) (-177 -71 -56) (-177 -71 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128" + "plane" "(-159 -71 56) (-177 -71 56) (-177 -71 -56)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[-1 0 0 -36] 2" + "vaxis" "[0 0 1 48] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "127" + "plane" "(-159 -87.9999 -56) (-177 -87.9999 -56) (-177 -87.9999 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 0 1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "49" + side + { + "id" "138" + "plane" "(-273 -71.0001 -56) (-273 -88 -56) (-255 -88 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "137" + "plane" "(-273 -88 56) (-273 -71.0001 56) (-255 -71.0001 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "136" + "plane" "(-255 -71.0001 -56) (-255 -88 -56) (-255 -88 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "135" + "plane" "(-273 -88 -56) (-273 -71.0001 -56) (-273 -71.0001 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "134" + "plane" "(-255 -71.0001 56) (-273 -71.0001 56) (-273 -71.0001 -56)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[-1 0 0 -60] 2" + "vaxis" "[0 0 1 48] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "133" + "plane" "(-255 -88 -56) (-273 -88 -56) (-273 -88 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 0 1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "50" + side + { + "id" "144" + "plane" "(-369 88.0001 -56) (-369 71 -56) (-351 71 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "143" + "plane" "(-369 71 56) (-369 88.0001 56) (-351 88.0001 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "142" + "plane" "(-369 71 -56) (-369 88.0001 -56) (-369 88.0001 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "141" + "plane" "(-351 88.0001 -56) (-351 71 -56) (-351 71 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "140" + "plane" "(-351 71 -56) (-369 71 -56) (-369 71 56)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[1 0 0 32] 2" + "vaxis" "[0 0 1 48] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "139" + "plane" "(-351 88.0001 56) (-369 88.0001 56) (-369 88.0001 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "9" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "61" + "classname" "func_detail" + solid + { + "id" "62" + side + { + "id" "174" + "plane" "(-159 -71 56.0001) (-159 -71 -55.9999) (-159 -72 -55.9999)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "173" + "plane" "(-177 -72 56.0001) (-177 -72 -55.9999) (-177 -71 -55.9999)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "172" + "plane" "(-177 -72 -55.9999) (-177 -72 56.0001) (-159 -72 56.0001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "171" + "plane" "(-177 -71 56.0001) (-177 -71 -55.9999) (-159 -71 -55.9999)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 1 32] 2" + "vaxis" "[-1 0 0 -52] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "170" + "plane" "(-177 -72 56.0001) (-177 -71 56.0001) (-159 -71 56.0001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "169" + "plane" "(-177 -71 -55.9999) (-177 -72 -55.9999) (-159 -72 -55.9999)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "63" + side + { + "id" "180" + "plane" "(-415 -56 71.0001) (-415 -56 72.0001) (-415 56 72.0001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "179" + "plane" "(-433 56 71.0001) (-433 56 72.0001) (-433 -56 72.0001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "178" + "plane" "(-433 56 72.0001) (-415 56 72.0001) (-415 -56 72.0001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "177" + "plane" "(-433 -56 71.0001) (-415 -56 71.0001) (-415 56 71.0001)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 1 0 32] 2" + "vaxis" "[-1 0 0 -52] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "176" + "plane" "(-433 56 71.0001) (-415 56 71.0001) (-415 56 72.0001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "175" + "plane" "(-433 -56 72.0001) (-415 -56 72.0001) (-415 -56 71.0001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "64" + side + { + "id" "186" + "plane" "(-415 -71 56.0001) (-415 -71 -55.9999) (-415 -72 -55.9999)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "185" + "plane" "(-433 -72 56.0001) (-433 -72 -55.9999) (-433 -71 -55.9999)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "184" + "plane" "(-433 -72 -55.9999) (-433 -72 56.0001) (-415 -72 56.0001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "183" + "plane" "(-433 -71 56.0001) (-433 -71 -55.9999) (-415 -71 -55.9999)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 1 32] 2" + "vaxis" "[-1 0 0 -52] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "182" + "plane" "(-433 -72 56.0001) (-433 -71 56.0001) (-415 -71 56.0001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "181" + "plane" "(-433 -71 -55.9999) (-433 -72 -55.9999) (-415 -72 -55.9999)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "65" + side + { + "id" "192" + "plane" "(-337 71 56.0001) (-337 71 -55.9999) (-337 72 -55.9999)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "191" + "plane" "(-319 72 56.0001) (-319 72 -55.9999) (-319 71 -55.9999)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "190" + "plane" "(-337 72 56.0001) (-337 72 -55.9999) (-319 72 -55.9999)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "189" + "plane" "(-337 71 -55.9999) (-337 71 56.0001) (-319 71 56.0001)" + "material" "LIGHTS/LIGHT_PANEL_NEUTRAL" + "uaxis" "[0 0 1 32] 2" + "vaxis" "[1 0 0 4] 2" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "188" + "plane" "(-337 71 56.0001) (-337 72 56.0001) (-319 72 56.0001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "187" + "plane" "(-337 72 -55.9999) (-337 71 -55.9999) (-319 71 -55.9999)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "10" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/valve/clean_style/voice/clean.cfg b/packages/valve/clean_style/voice/clean.cfg index a3ddf48126..a1654fa42f 100644 --- a/packages/valve/clean_style/voice/clean.cfg +++ b/packages/valve/clean_style/voice/clean.cfg @@ -184,7 +184,7 @@ "Quote" { - "Has" "CubeNonCompanion" + "Has" "CubeNotCompanion" "Name" "Cube Fizzled (Non-Companion)" "Line" { @@ -338,7 +338,7 @@ "Line_Robot" { "Name" "Excellent Ball Placement, Robots" - "ID" "BALL_BUTTON_PRESSED_PROBO" + "ID" "BALL_BUTTON_PRESSED_ROBO" "Trans" "GLaDOS: You did an excellent job placing the edgeless safety cube in the receptacle, you should be very - oh wait." "Trans" "GLaDOS: That's right. You're not humans." "Trans" "GLaDOS: I can drop the fake praise." @@ -698,9 +698,10 @@ "Name" "Sendificator" "Line_Robot" { + // This is duplicated to raise it in priority. "Name" "Deadly Lasers" - "ID" "LASER_1" - "Trans" "Please proceed into the next test chamber." + "ID" "SENDIFICATOR_LASER" + "Trans" "GLaDOS: Please proceed into the next test chamber." "Trans" "GLaDOS: Which involves deadly lasers and how test subjects react when locked in a room with deadly lasers." "Choreo" { @@ -823,7 +824,7 @@ "Line_SP" { "Name" "Nerve To Call It Broken" - "ID" "DEADLY_1" + "ID" "DEADLY_EXIT_SP" "Trans" "GLaDOS: Congratulations. Your ability to complete this test proves the humans wrong. They described it as impossible, deadly, cruel, and one test subject even had the nerve to call it broken." "Choreo" "scenes/npc/glados/mp_coop_wall_block03.vcd" } @@ -831,7 +832,7 @@ "Line_COOP" { "Name" "You Can Just Keep Trying" - "ID" "DEADLY_1" + "ID" "DEADLY_EXIT_COOP" "Trans" "GLaDOS: Congratulations. Your ability to complete this test proves the humans wrong. They described it as impossible, deadly, cruel, and one test subject even had the nerve to call it broken." "Trans" "GLaDOS: Of course the humans only had one try at it, you can just keep trying." "Choreo" diff --git a/packages/valve/dis_beams/items/emitter/vbsp_config.cfg b/packages/valve/dis_beams/items/emitter/vbsp_config.cfg index a4bf5496f4..eb2c1a715c 100644 --- a/packages/valve/dis_beams/items/emitter/vbsp_config.cfg +++ b/packages/valve/dis_beams/items/emitter/vbsp_config.cfg @@ -58,33 +58,21 @@ } } - // If no inputs, make the light entirely static. "Condition" { - "instvar" "$connectioncount > 0" + "instvar" "$offset_mdl 1" "Result" { - "AddOverlay" "instances/BEE2/logic/laser/light_dynamic.vmf" - } - "ElseCondition" - { - "instvar" "$start_enabled = 1" - "Condition" + "AddOverlay" { - "instvar" "$offset_mdl 1" - "Result" - { - "AddOverlay" - { - "Rotation" "0 $yaw 0" - } - } - "Else" // Regularly centered. - { - "AddOverlay" "instances/BEE2/logic/laser/light_static.vmf" - } + "File" "instances/BEE2/logic/laser/light.vmf" + "Rotation" "0 $yaw 0" + "Offset" "-14 0 0" } - // Else: Permanently off, no light. + } + "Else" // Regularly centered. + { + "AddOverlay" "instances/BEE2/logic/laser/light.vmf" } } } diff --git a/packages/valve/dis_beams/resources/instances/clean/items/laser/emitter_center.vmf b/packages/valve/dis_beams/resources/instances/clean/items/laser/emitter_center.vmf index 4712d0121a..fd86028fc3 100644 --- a/packages/valve/dis_beams/resources/instances/clean/items/laser/emitter_center.vmf +++ b/packages/valve/dis_beams/resources/instances/clean/items/laser/emitter_center.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8973" - "mapversion" "120" + "editorbuild" "9672" + "mapversion" "122" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "120" + "mapversion" "122" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -412,8 +412,8 @@ entity { "id" "673" "classname" "func_instance_parms" - "parm1" "$start_disabled string" - "parm2" "$start_enabled integer" + "parm1" "$autoaim boolean 1" + "parm2" "$start_enabled boolean 1" "origin" "0 0 -40" editor { @@ -527,7 +527,7 @@ entity "rendercolor" "255 255 255" "skin" "0" "solid" "6" - "StartState" "$start_disabled" + "StartState" "!$start_enabled" "targetname" "laser" "origin" "0 0 -80" editor diff --git a/packages/valve/dis_beams/resources/instances/clean/items/laser/emitter_center_floor.vmf b/packages/valve/dis_beams/resources/instances/clean/items/laser/emitter_center_floor.vmf index 6b12493604..71bf9b1326 100644 --- a/packages/valve/dis_beams/resources/instances/clean/items/laser/emitter_center_floor.vmf +++ b/packages/valve/dis_beams/resources/instances/clean/items/laser/emitter_center_floor.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8973" - "mapversion" "117" + "editorbuild" "9672" + "mapversion" "118" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "117" + "mapversion" "118" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -1220,10 +1220,9 @@ entity "model" "models/props/laser_emitter_center.mdl" "renderamt" "255" "rendercolor" "255 255 255" - "scalevalue" "0" "skin" "0" "solid" "6" - "StartState" "$start_disabled" + "StartState" "!$start_enabled" "targetname" "laser" "origin" "0 0 -112" editor diff --git a/packages/valve/dis_beams/resources/instances/clean/items/laser/emitter_offset.vmf b/packages/valve/dis_beams/resources/instances/clean/items/laser/emitter_offset.vmf index 0bccd3c5ee..f661e80621 100644 --- a/packages/valve/dis_beams/resources/instances/clean/items/laser/emitter_offset.vmf +++ b/packages/valve/dis_beams/resources/instances/clean/items/laser/emitter_offset.vmf @@ -2,7 +2,7 @@ versioninfo { "editorversion" "400" "editorbuild" "9672" - "mapversion" "109" + "mapversion" "110" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "109" + "mapversion" "110" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -624,7 +624,7 @@ entity "rendercolor" "255 255 255" "skin" "0" "solid" "6" - "StartState" "$start_disabled" + "StartState" "!$start_enabled" "targetname" "laser" "origin" "0.0999985 0 -80" editor diff --git a/packages/valve/dis_beams/resources/instances/clean/items/laser/emitter_offset_floor.vmf b/packages/valve/dis_beams/resources/instances/clean/items/laser/emitter_offset_floor.vmf index 89f358d274..75f044a1f0 100644 --- a/packages/valve/dis_beams/resources/instances/clean/items/laser/emitter_offset_floor.vmf +++ b/packages/valve/dis_beams/resources/instances/clean/items/laser/emitter_offset_floor.vmf @@ -2,7 +2,7 @@ versioninfo { "editorversion" "400" "editorbuild" "9672" - "mapversion" "131" + "mapversion" "132" "formatversion" "100" "prefab" "0" } @@ -20,7 +20,7 @@ viewsettings world { "id" "1" - "mapversion" "131" + "mapversion" "132" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -1094,7 +1094,7 @@ entity "rendercolor" "255 255 255" "skin" "0" "solid" "6" - "StartState" "$start_disabled" + "StartState" "!$start_enabled" "targetname" "laser" "origin" "0.0999985 0 -112" editor diff --git a/packages/valve/dis_beams/resources/instances/logic/laser/light_static.vmf b/packages/valve/dis_beams/resources/instances/logic/laser/light.vmf similarity index 100% rename from packages/valve/dis_beams/resources/instances/logic/laser/light_static.vmf rename to packages/valve/dis_beams/resources/instances/logic/laser/light.vmf diff --git a/packages/valve/dis_beams/resources/instances/logic/laser/light_dynamic.vmf b/packages/valve/dis_beams/resources/instances/logic/laser/light_dynamic.vmf deleted file mode 100644 index 5e18b72321..0000000000 --- a/packages/valve/dis_beams/resources/instances/logic/laser/light_dynamic.vmf +++ /dev/null @@ -1,89 +0,0 @@ -versioninfo -{ - "editorversion" "400" - "editorbuild" "9672" - "mapversion" "100" - "formatversion" "100" - "prefab" "0" -} -visgroups -{ -} -viewsettings -{ - "bSnapToGrid" "1" - "bShowGrid" "1" - "bShowLogicalGrid" "0" - "nGridSpacing" "8" - "bShow3DGrid" "0" -} -world -{ - "id" "1" - "mapversion" "100" - "classname" "worldspawn" - "detailmaterial" "detail/detailsprites" - "detailvbsp" "detail.vbsp" - "maxblobcount" "250" - "maxpropscreenwidth" "-1" - "skyname" "sky_day01_01" -} -entity -{ - "id" "3552" - "classname" "comp_kv_setter" - "angles" "0 0 0" - "conv_ang" "0" - "ctrl_type" "0" - "ctrl_value" "1" - "invert" "1" - "kv_name" "1" - "kv_value_global" "$start_enabled" - "mode" "flags" - "rotate" "0" - "target" "light" - "origin" "0 0 -24" - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 -15768]" - } -} -entity -{ - "id" "3546" - "classname" "light" - "_constant_attn" "0" - "_distance" "100" - "_fifty_percent_distance" "48" - "_hardfalloff" "1" - "_light" "255 106 106 150" - "_lightHDR" "-1 -1 -1 1" - "_lightscaleHDR" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_shadoworiginoffset" "0 0 0" - "_zero_percent_distance" "96" - "angles" "0 0 0" - "spawnflags" "0" - "style" "0" - "targetname" "light" - "origin" "0 0 -40" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 -15768]" - } -} -cameras -{ - "activecamera" "-1" -} -cordons -{ - "active" "0" -} diff --git a/packages/valve/geometry/info.txt b/packages/valve/geometry/info.txt index 6b2760707c..4d5c91e1da 100644 --- a/packages/valve/geometry/info.txt +++ b/packages/valve/geometry/info.txt @@ -56,6 +56,7 @@ "" "" "" "* Glass only lets through Discouragement Beams." "" "* Grating only blocks player movement, cubes and turrets(but not turret bullets)." + "" "* If the 'Start Reversed' option is checked, the wall will be shifted to the inner pair of tiles instead of the outer pair." } "Version" { @@ -142,6 +143,8 @@ { "" "A platform that moves along a track. It can either move back and forth when enabled or change from one side to another when turned on or off." "" "" + "" "* The Auto Drop option enables or disables player detection. If enabled the platform will only move when players stand on the platform." + "" "* If connections are attached, they must be all active first before the platform will function." "" "* Cube Type allows using Portalable or non-Portalable surfaces on the top of the platform. Sphere and Franken should not be used." } "Version" diff --git a/packages/valve/geometry/items/flip_pan/editoritems.txt b/packages/valve/geometry/items/flip_pan/editoritems.txt index f66b728ff4..8bc2de4abc 100644 --- a/packages/valve/geometry/items/flip_pan/editoritems.txt +++ b/packages/valve/geometry/items/flip_pan/editoritems.txt @@ -66,116 +66,116 @@ } } "Offset" "64 64 64" - "OccupiedVoxels" - { + "OccupiedVoxels" + { "Voxel" - { + { "Pos" "0 0 0" "Surface" - { + { "Normal" "0 0 1" - } + } "Surface" - { + { "Pos" "0 0 0" - } + } "Surface" - { + { "Pos" "0 1 0" - } + } "Surface" - { + { "Pos" "0 2 0" - } + } "Surface" - { + { "Pos" "0 3 0" - } + } "Surface" - { + { "Pos" "1 0 0" - } + } "Surface" - { + { "Pos" "1 1 0" - } + } "Surface" - { + { "Pos" "1 2 0" - } + } "Surface" - { + { "Pos" "1 3 0" - } + } "Surface" - { + { "Pos" "2 0 0" - } + } "Surface" - { + { "Pos" "2 1 0" - } + } "Surface" - { + { "Pos" "2 2 0" - } + } "Surface" - { + { "Pos" "2 3 0" - } + } "Surface" - { + { "Pos" "3 0 0" - } + } "Surface" - { + { "Pos" "3 1 0" - } + } "Surface" - { + { "Pos" "3 2 0" - } + } "Surface" - { + { "Pos" "3 3 0" - } + } // Middle "Surface" - { + { "Pos" "1 0 1" - } + } "Surface" - { + { "Pos" "1 1 1" - } + } "Surface" - { + { "Pos" "1 2 1" - } + } "Surface" - { + { "Pos" "1 3 1" - } + } "Surface" - { + { "Pos" "2 0 1" - } + } "Surface" - { + { "Pos" "2 1 1" - } + } "Surface" - { + { "Pos" "2 2 1" - } + } "Surface" - { + { "Pos" "2 3 1" - } } } + } "EmbeddedVoxels" { "Voxel" diff --git a/packages/valve/geometry/items/flip_pan/editoritems.vmf b/packages/valve/geometry/items/flip_pan/editoritems.vmf new file mode 100644 index 0000000000..11ecd2c3df --- /dev/null +++ b/packages/valve/geometry/items/flip_pan/editoritems.vmf @@ -0,0 +1,384 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "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" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" +} +entity +{ + "id" "12" + "classname" "bee2_collision_volume" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "1" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grating" "0" + "coll_oob" "0" + "coll_solid" "0" + "coll_temporary" "1" + solid + { + "id" "10" + side + { + "id" "45" + "plane" "(64 64 -64) (59 64 -40) (45 64 -19)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "44" + "plane" "(-64 -64 -64) (-59 -64 -40) (-45 -64 -19)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "43" + "plane" "(24 -64 -5) (0 -64 0) (0 64 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "42" + "plane" "(45 -64 -19) (24 -64 -5) (24 64 -5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "41" + "plane" "(45 64 -19) (59 64 -40) (59 -64 -40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "40" + "plane" "(59 64 -40) (64 64 -64) (64 -64 -64)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "39" + "plane" "(-59 -64 -40) (-64 -64 -64) (-64 64 -64)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38" + "plane" "(-45 -64 -19) (-59 -64 -40) (-59 64 -40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37" + "plane" "(-24 -64 -5) (-45 -64 -19) (-45 64 -19)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36" + "plane" "(0 -64 0) (-24 -64 -5) (-24 64 -5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "35" + "plane" "(64 64 -64) (-64 64 -64) (-64 -64 -64)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "25" + "classname" "bee2_collision_bbox" + "coll_antlines" "1" + "coll_bridge" "0" + "coll_decoration" "1" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grating" "0" + "coll_oob" "0" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "21" + side + { + "id" "57" + "plane" "(-64 -64 -64) (-64 64 -64) (64 64 -64)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56" + "plane" "(-64 64 -68) (-64 -64 -68) (64 -64 -68)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55" + "plane" "(-64 -64 -68) (-64 64 -68) (-64 64 -64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "54" + "plane" "(64 64 -68) (64 -64 -68) (64 -64 -64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "53" + "plane" "(-64 64 -68) (64 64 -68) (64 64 -64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "52" + "plane" "(64 -64 -68) (-64 -64 -68) (-64 -64 -64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "35" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grating" "0" + "coll_oob" "1" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "36" + side + { + "id" "69" + "plane" "(-60 -60 -68) (-60 60 -68) (60 60 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "68" + "plane" "(-60 60 -188) (-60 -60 -188) (60 -60 -188)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "67" + "plane" "(-60 -60 -188) (-60 60 -188) (-60 60 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "66" + "plane" "(60 60 -188) (60 -60 -188) (60 -60 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "65" + "plane" "(-60 60 -188) (60 60 -188) (60 60 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "64" + "plane" "(60 -60 -188) (-60 -60 -188) (-60 -60 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/valve/geometry/items/glass/editoritems.txt b/packages/valve/geometry/items/glass/editoritems.txt index 1a7e3d0ebc..37cb60f664 100644 --- a/packages/valve/geometry/items/glass/editoritems.txt +++ b/packages/valve/geometry/items/glass/editoritems.txt @@ -44,6 +44,16 @@ "DefaultValue" "0" "Index" "0" } + "ConnectionCount" + { + "DefaultValue" "0" + "Index" "1" + } + "StartReversed" + { + "DefaultValue" "0" + "index" "2" + } } "Exporting" { @@ -99,6 +109,14 @@ } "TargetName" "g" "Offset" "64 64 64" + "Inputs" + { + // Input used to connect to barrier variant items. + "BEE2" + { + "Force" "input" + } + } } } @@ -122,4 +140,4 @@ "Copyable" "0" "PseudoHandle" "1" } -} \ No newline at end of file +} diff --git a/packages/valve/geometry/items/glass/editoritems.vmf b/packages/valve/geometry/items/glass/editoritems.vmf new file mode 100644 index 0000000000..39f21d0ae6 --- /dev/null +++ b/packages/valve/geometry/items/glass/editoritems.vmf @@ -0,0 +1,242 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "2" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "32" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "2" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" + solid + { + "id" "15" + side + { + "id" "1" + "plane" "(-64 64 64) (-56 64 64) (-56 -64 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2" + "plane" "(-64 -64 -64) (-56 -64 -64) (-56 64 -64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3" + "plane" "(-64 64 64) (-64 -64 64) (-64 -64 -64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4" + "plane" "(-56 64 -64) (-56 -64 -64) (-56 -64 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5" + "plane" "(-56 64 64) (-64 64 64) (-64 64 -64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6" + "plane" "(-56 -64 -64) (-64 -64 -64) (-64 -64 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 157 154" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } +} +entity +{ + "id" "2" + "classname" "bee2_editor_connectionpoint" + "angles" "0 0 0" + "priority" "0" + "skin" "3" + "origin" "-80 -16 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "25" + "classname" "bee2_editor_connectionpoint" + "angles" "0 0 0" + "priority" "0" + "skin" "4" + "origin" "-80 16 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "41" + "classname" "bee2_editor_connectionpoint" + "angles" "0 180 0" + "priority" "0" + "skin" "3" + "origin" "-16 16 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "43" + "classname" "bee2_editor_connectionpoint" + "angles" "0 180 0" + "priority" "0" + "skin" "4" + "origin" "-16 -16 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "81" + "classname" "bee2_editor_connectionpoint" + "angles" "0 0 0" + "priority" "1" + "skin" "3" + "origin" "-80 -48 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "85" + "classname" "bee2_editor_connectionpoint" + "angles" "0 0 0" + "priority" "1" + "skin" "4" + "origin" "-80 48 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "89" + "classname" "bee2_editor_connectionpoint" + "angles" "0 180 0" + "priority" "1" + "skin" "3" + "origin" "-16 48 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "93" + "classname" "bee2_editor_connectionpoint" + "angles" "0 180 0" + "priority" "1" + "skin" "4" + "origin" "-16 -48 -64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/valve/geometry/items/glass/vbsp_config.cfg b/packages/valve/geometry/items/glass/vbsp_config.cfg new file mode 100644 index 0000000000..9efa77f440 --- /dev/null +++ b/packages/valve/geometry/items/glass/vbsp_config.cfg @@ -0,0 +1,238 @@ +"BarrierFrames" + { + "BEE2_MODERN_PETI" + { + // Straight points along the X axis, attached to the Z plane. + "Straight" + { + "length" "60" + "model" "models/props_ingame/window_frame_system_60.mdl" + "angles" "0 90 270" + "offset" "60 -4 4" + } + + "Straight" + { + "length" "64" + "model" "models/props_ingame/window_frame_system_64.mdl" + "angles" "0 90 270" + "offset" "64 -4 4" + } + + "Straight" + { + "length" "24" + "model" "models/bee2/props_clean/window_frame_system/straight_24.mdl" + "angles" "-90 180 0" + "offset" "0 -2 2" + } + "Straight" + { + "length" "28" + "model" "models/bee2/props_clean/window_frame_system/straight_28.mdl" + "angles" "-90 180 0" + "offset" "0 -2 2" + } + "Straight" + { + "length" "32" + "model" "models/bee2/props_clean/window_frame_system/straight_32.mdl" + "angles" "-90 180 0" + "offset" "0 -2 2" + } + "Straight" + { + "length" "120" + "model" "models/bee2/props_clean/window_frame_system/straight_120.mdl" + "angles" "-90 180 0" + "offset" "0 -2 2" + } + "Straight" + { + "length" "128" + "model" "models/bee2/props_clean/window_frame_system/straight_128.mdl" + "angles" "-90 180 0" + "offset" "0 -2 2" + } + "Straight" + { + "length" "256" + "model" "models/bee2/props_clean/window_frame_system/straight_256.mdl" + "angles" "-90 180 0" + "offset" "0 -2 2" + } + + "CornerSize" "4" + + "Corner" + { + "model" "models/props_ingame/window_frame_system_corner_4.mdl" + "offset" "2 2 2" + } + "ConcaveCorner" + { + "model" "models/props_ingame/window_frame_system_corner_4.mdl" + "offset" "2 2 2" + } + } + } + + +"Barriers" + { + "VALVE_GLASS" + { + "Frame" "BEE2_MODERN_PETI" + + "mergeable" "1" // Instance name does not matter. + "error_tex" "glass" + + // If we don't have puzzlemaker frames, try props_test_chamber, then P1. + "HoleVariant" "THIN_MODERN_PETI" + "HoleVariant" "THIN_MODERN_TESTCHAMBER" + "HoleVariant" "THIN_MODERN_P1_PLASTICWALL" + + "Brush" + { + "offset" "0.5" + "thickness" "1" + "carve_by_hole" "1" + + "template" "BEE2_glass_template" + } + "Brush" + { + "offset" "0" + "thickness" "4" + "carve_by_hole" "1" + + "material" "BEE2/glass_player_clip" + "side_mat" "BEE2/glass_player_clip" + "StaticPlayerClip" "1" + } + "Brush" // Cut visleafs along the plane, to help with depth sorting. + { + "offset" "0" + "thickness" "4" + "carve_by_hole" "0" + "world" "1" + + "material" "tools/toolshint" + "side_mat" "tools/toolsskip" + } + + "Collide" + { + "offset" "0" + "thickness" "4" + "carve_by_hole" "1" + + "contents" "glass" + } + } + "VALVE_GRATING" + { + "Frame" "BEE2_MODERN_PETI" + + "mergeable" "1" // Instance name does not matter. + "error_tex" "grating" + + "HoleVariant" "THIN_MODERN_PETI" + "HoleVariant" "THIN_MODERN_TESTCHAMBER" + "HoleVariant" "THIN_MODERN_P1_PLASTICWALL" + + "Brush" + { + "offset" "0.5" + "thickness" "1" + "carve_by_hole" "1" + + "template" "BEE2_GRATING_TEMPLATE" + + "keys" + { + "classname" "func_brush" + "renderfx" "14" // Constant Glow + "solidity" "1" // Never Solid + } + } + "Brush" + { + "offset" "0" + "thickness" "4" + "carve_by_hole" "1" + + "material" "BEE2/grate_player_clip" + "side_mat" "BEE2/grate_player_clip" + "StaticPlayerClip" "1" + } + "Brush" + { + "offset" "0" + "thickness" "4" + "carve_by_hole" "1" + + "material" "tools/toolstrigger" + "side_mat" "tools/toolstrigger" + + "keys" + { + "classname" "func_clip_vphysics" + "filtername" "@grating_filter" + } + } + "Brush" // Cut visleafs along the plane, to help with depth sorting. + { + "offset" "0" + "thickness" "4" + "carve_by_hole" "0" + "world" "1" + + "material" "tools/toolshint" + "side_mat" "tools/toolsskip" + } + + "Collide" + { + "offset" "0" + "thickness" "4" + "carve_by_hole" "1" + + "contents" "grating" + } + } + } + + +"Conditions" + { + "Condition" + { + "instance" "[glass_128]" + "Condition" + { + "instvar" "$barrier_type glass" + "Result" + { + "Has" "glass" + } + } + "Condition" + { + "instvar" "$barrier_type grating" + "Result" + { + "Has" "grating" + } + } + } + "Condition" + { + "Priority" "200" + "instance" "[glass_128]" + "Result" + { + "ChangeInstance" "" + } + } + } diff --git a/packages/valve/geometry/items/obs_room/editoritems.vmf b/packages/valve/geometry/items/obs_room/editoritems.vmf new file mode 100644 index 0000000000..baaa9a0a20 --- /dev/null +++ b/packages/valve/geometry/items/obs_room/editoritems.vmf @@ -0,0 +1,232 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "2" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "8" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "2" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" +} +entity +{ + "id" "7" + "classname" "bee2_collision_bbox" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grating" "0" + "coll_oob" "1" + "coll_solid" "0" + "coll_temporary" "0" + solid + { + "id" "2" + side + { + "id" "1" + "plane" "(-188 188 -68) (188 188 -68) (188 -188 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2" + "plane" "(-188 -188 -316) (188 -188 -316) (188 188 -316)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "3" + "plane" "(-188 188 -68) (-188 -188 -68) (-188 -188 -316)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "4" + "plane" "(188 188 -316) (188 -188 -316) (188 -188 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5" + "plane" "(188 188 -68) (-188 188 -68) (-188 188 -316)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "6" + "plane" "(188 -188 -316) (-188 -188 -316) (-188 -188 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 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" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "40" + "classname" "bee2_collision_bbox" + "coll_antlines" "1" + "coll_bridge" "0" + "coll_decoration" "1" + "coll_fizzler" "0" + "coll_glass" "1" + "coll_grating" "0" + "coll_oob" "1" + "coll_solid" "1" + "coll_temporary" "0" + solid + { + "id" "36" + side + { + "id" "18" + "plane" "(-64 64 -60) (64 64 -60) (64 -64 -60)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "17" + "plane" "(-64 -64 -68) (64 -64 -68) (64 64 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "16" + "plane" "(-64 64 -60) (-64 -64 -60) (-64 -64 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "15" + "plane" "(64 64 -68) (64 -64 -68) (64 -64 -60)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "14" + "plane" "(64 64 -60) (-64 64 -60) (-64 64 -68)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "13" + "plane" "(64 -64 -68) (-64 -64 -68) (-64 -64 -60)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 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" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/valve/geometry/items/stairs/vbsp_config.cfg b/packages/valve/geometry/items/stairs/vbsp_config.cfg index 0c265ef40b..66307ad2ff 100644 --- a/packages/valve/geometry/items/stairs/vbsp_config.cfg +++ b/packages/valve/geometry/items/stairs/vbsp_config.cfg @@ -199,10 +199,10 @@ { "%EDGE_ORIG_TEX%" "%EDGE_PORTAL_TEX%" } - + "visgroup" "%SPACE_PERC%" "forceVisVar" "%FORCE_VAR%" - + "keys" { "classname" "func_brush" @@ -221,12 +221,12 @@ "ID" "%TOP_TEMP%_2" "Replace" { - "%EDGE_ORIG_TEX%" "$edge_tex" + "%EDGE_ORIG_TEX%" "%EDGE_PORTAL_TEX%" } - + "visgroup" "%SPACE_PERC%" "forceVisVar" "%FORCE_VAR%" - + "keys" { "classname" "func_brush" @@ -245,12 +245,12 @@ "ID" "%TOP_TEMP%_3" "Replace" { - "%EDGE_ORIG_TEX%" "$edge_tex" + "%EDGE_ORIG_TEX%" "%EDGE_PORTAL_TEX%" } - + "visgroup" "%SPACE_PERC%" "forceVisVar" "%FORCE_VAR%" - + "keys" { "classname" "func_brush" @@ -269,12 +269,12 @@ "ID" "%TOP_TEMP%_4" "Replace" { - "%EDGE_ORIG_TEX%" "$edge_tex" + "%EDGE_ORIG_TEX%" "%EDGE_PORTAL_TEX%" } - + "visgroup" "%SPACE_PERC%" "forceVisVar" "%FORCE_VAR%" - + "keys" { "classname" "func_brush" diff --git a/packages/valve/geometry/items/track_plat/editoritems.txt b/packages/valve/geometry/items/track_plat/editoritems.txt index d9f230030a..b7a123262f 100644 --- a/packages/valve/geometry/items/track_plat/editoritems.txt +++ b/packages/valve/geometry/items/track_plat/editoritems.txt @@ -7,19 +7,10 @@ "SubTypeProperty" "CubeType" "SubType" { - "Name" "PORTAL2_PuzzleEditor_Item_track_platform" - "Model" - { - "ModelName" "arm_motionplatform.3ds" - } - "Model" - { - "ModelName" "arm_motionplatform_rail.3ds" - } - "Model" - { - "ModelName" "arm_motionplatform_rail_inwater.3ds" - } + "Name" "PORTAL2_PuzzleEditor_Item_track_platform" + "Model" "arm_motionplatform.mdl" + "Model" "arm_motionplatform_rail.mdl" + "Model" "arm_motionplatform_rail_inwater.mdl" "Palette" { "Tooltip" "PORTAL2_PuzzleEditor_Palette_track_platform" @@ -29,26 +20,17 @@ "Sounds" { "SOUND_CREATED" "P2Editor.PlaceOther" - "SOUND_EDITING_ACTIVATE" "P2Editor.ExpandOther" + "SOUND_EDITING_ACTIVATE" "P2Editor.ExpandOther" "SOUND_EDITING_DEACTIVATE" "P2Editor.CollapseOther" "SOUND_DELETED" "P2Editor.RemoveOther" } } "SubType" { - "Name" "Non-Portalable Track Platform" - "Model" - { - "ModelName" "BEE2_track_plat_panel_black.3ds" - } - "Model" - { - "ModelName" "arm_motionplatform_rail.3ds" - } - "Model" - { - "ModelName" "arm_motionplatform_rail_inwater.3ds" - } + "Name" "Non-Portalable Track Platform" + "Model" "BEE2_track_plat_panel_black.mdl" + "Model" "arm_motionplatform_rail.mdl" + "Model" "arm_motionplatform_rail_inwater.mdl" "Sounds" { "SOUND_CREATED" "P2Editor.PlaceOther" @@ -59,69 +41,42 @@ } "SubType" { - "Name" "Portalable Piston Platform" - "Model" - { - "ModelName" "BEE2_track_plat_panel_white.3ds" - } - "Model" - { - "ModelName" "arm_motionplatform_rail.3ds" - } - "Model" - { - "ModelName" "arm_motionplatform_rail_inwater.3ds" - } + "Name" "Portalable Piston Platform" + "Model" "BEE2_track_plat_panel_white.mdl" + "Model" "arm_motionplatform_rail.mdl" + "Model""arm_motionplatform_rail_inwater.mdl" "Sounds" { "SOUND_CREATED" "P2Editor.PlaceOther" - "SOUND_EDITING_ACTIVATE" "P2Editor.ExpandOther" + "SOUND_EDITING_ACTIVATE" "P2Editor.ExpandOther" "SOUND_EDITING_DEACTIVATE" "P2Editor.CollapseOther" "SOUND_DELETED" "P2Editor.RemoveOther" } } "SubType" { - "Name" "PORTAL2_PuzzleEditor_Item_track_platform" - "Model" - { - "ModelName" "arm_motionplatform.3ds" - } - "Model" - { - "ModelName" "arm_motionplatform_rail.3ds" - } - "Model" - { - "ModelName" "arm_motionplatform_rail_inwater.3ds" - } + "Name" "PORTAL2_PuzzleEditor_Item_track_platform" + "Model" "arm_motionplatform.mdl" + "Model" "arm_motionplatform_rail.mdl" + "Model" "arm_motionplatform_rail_inwater.mdl" "Sounds" { "SOUND_CREATED" "P2Editor.PlaceOther" - "SOUND_EDITING_ACTIVATE" "P2Editor.ExpandOther" + "SOUND_EDITING_ACTIVATE" "P2Editor.ExpandOther" "SOUND_EDITING_DEACTIVATE" "P2Editor.CollapseOther" "SOUND_DELETED" "P2Editor.RemoveOther" } } "SubType" { - "Name" "PORTAL2_PuzzleEditor_Item_track_platform" - "Model" - { - "ModelName" "arm_motionplatform.3ds" - } - "Model" - { - "ModelName" "arm_motionplatform_rail.3ds" - } - "Model" - { - "ModelName" "arm_motionplatform_rail_inwater.3ds" - } + "Name" "PORTAL2_PuzzleEditor_Item_track_platform" + "Model" "arm_motionplatform.mdl" + "Model" "arm_motionplatform_rail.mdl" + "Model" "arm_motionplatform_rail_inwater.mdl" "Sounds" { "SOUND_CREATED" "P2Editor.PlaceOther" - "SOUND_EDITING_ACTIVATE" "P2Editor.ExpandOther" + "SOUND_EDITING_ACTIVATE" "P2Editor.ExpandOther" "SOUND_EDITING_DEACTIVATE" "P2Editor.CollapseOther" "SOUND_DELETED" "P2Editor.RemoveOther" } @@ -171,6 +126,11 @@ "DefaultValue" "1" "Index" "6" } + "AutoDrop" + { + "DefaultValue" "0" + "Index" "8" + } } "Exporting" { @@ -232,7 +192,11 @@ { "BEE2" { - "Force" "Input" + "Type" "AND" + "SpawnFire" "always" + "invertVar" "$start_active" + "Enable_Cmd" "platform,TurnOn,,0.00,-1" + "Disable_Cmd" "platform,TurnOff,,0.00,-1" } } "Offset" "64 64 64" @@ -247,10 +211,7 @@ { "SubType" { - "Model" - { - "ModelName" "handle_grip_trianglesmall.3ds" - } + "Model" "handle_grip_trianglesmall.mdl" } "MovementHandle" "HANDLE_NONE" "OccupiesVoxel" "0" diff --git a/packages/valve/geometry/items/track_plat/vbsp_config.cfg b/packages/valve/geometry/items/track_plat/vbsp_config.cfg index 22832114cd..c8bc08e31d 100644 --- a/packages/valve/geometry/items/track_plat/vbsp_config.cfg +++ b/packages/valve/geometry/items/track_plat/vbsp_config.cfg @@ -110,30 +110,31 @@ "instance" "" "Condition" { - "instance" "" + "instance" "" "Result" { - "ChangeIOType" - { - "Type" "AND" - "SpawnFire" "always" - "invertVar" "$start_active" - "Enable_Cmd" "move_rl,Trigger,,0.00,-1" - "Disable_Cmd" "move_rl,FireUser1,,0.00,-1" - } + // Never starts active. + "SetInstVar" "$start_active 0" } } "Condition" { - "instance" "" + "instance" "" + // If autodrop is set, player presence is required. + "InstVar" "$disable_autodrop == 1" "Result" { - "ChangeIOType" + // This adds an item with a virtual input to the platform, + // giving us exactly the behaviour we want. + "AttachInputOverlay" { - "Type" "AND" - "invertVar" "0" - "Enable_Cmd" "track_lift_movelinear,FireUser2,,0.00,-1" - "Disable_Cmd" "track_lift_movelinear,FireUser1,,0.00,-1" + "File" "instances/BEE2/clean/items/track/trigger.vmf" + "name_suffix" "player" + "input_conf" + { + "Out_Activate" "instance:trigger;OnStartTouch" + "Out_Deactivate" "instance:trigger;OnEndTouchAll" + } } } } @@ -167,10 +168,7 @@ "instance" "" "Result" { - "TemplateBrush" - { - "ID" "BEE2_TRACK_PLAT_TOP" - } + "TemplateBrush" "BEE2_TRACK_PLAT_TOP" } } "Condition" @@ -178,10 +176,7 @@ "instance" "" "Result" { - "TemplateBrush" - { - "ID" "BEE2_TRACK_PLAT_BOTTOM" - } + "TemplateBrush" "BEE2_TRACK_PLAT_BOTTOM" } } "Condition" @@ -189,10 +184,7 @@ "instance" "" "Result" { - "TemplateBrush" - { - "ID" "BEE2_TRACK_PLAT_MIDDLE" - } + "TemplateBrush" "BEE2_TRACK_PLAT_MIDDLE" } } "Condition" @@ -200,10 +192,7 @@ "instance" "" "Result" { - "TemplateBrush" - { - "ID" "BEE2_TRACK_PLAT_SINGLE" - } + "TemplateBrush" "BEE2_TRACK_PLAT_SINGLE" } } } @@ -261,5 +250,19 @@ } } } + "Condition" + { + // If this is unset, it's a 1-block platform. + // These are pretty useless, it's fine that the panel will be a func_brush. + "OR" + { + "InstVar" "$travel_distance =" + "instVar" "$travel_distance <= 128" + } + "Result" + { + "ChangeInstance" "instances/BEE2/clean/items/track/platform_static.vmf" + } + } } } diff --git a/packages/valve/geometry/resources/instances/clean/items/stairs.vmf b/packages/valve/geometry/resources/instances/clean/items/stairs.vmf index 71bc4b920a..63590c9524 100644 --- a/packages/valve/geometry/resources/instances/clean/items/stairs.vmf +++ b/packages/valve/geometry/resources/instances/clean/items/stairs.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "7552" - "mapversion" "88" + "editorbuild" "9672" + "mapversion" "89" "formatversion" "100" "prefab" "0" } @@ -14,13 +14,13 @@ viewsettings "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "32" + "nGridSpacing" "4" "bShow3DGrid" "0" } world { "id" "1" - "mapversion" "88" + "mapversion" "89" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -28,6 +28,82 @@ world "maxpropscreenwidth" "-1" "skyname" "sky_day01_01" solid + { + "id" "2717" + side + { + "id" "596" + "plane" "(-60 -60 -64) (188 -60 -64) (188 -60 -128)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 24] 0.266667" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "597" + "plane" "(-60 60 -128) (188 60 -128) (188 60 -64)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 24] 0.266667" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "598" + "plane" "(-60 -60 -64) (-60 -60 -128) (-60 60 -128)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 0 1 -24] 0.266667" + "vaxis" "[0 1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "599" + "plane" "(188 60 -64) (188 60 -128) (188 -60 -128)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[0 0 1 -24] 0.266667" + "vaxis" "[0 1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "600" + "plane" "(188 -60 -64) (-60 -60 -64) (-60 60 -64)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "601" + "plane" "(188 60 -128) (-60 60 -128) (-60 -60 -128)" + "material" "TOOLS/TOOLSINVISIBLE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 132 165" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid { "id" "2671" side @@ -408,6 +484,7 @@ entity "mindxlevel" "0" "model" "models/props_ingame/arm_8panel.mdl" "PerformanceMode" "0" + "physdamagescale" "1.0" "pressuredelay" "0" "RandomAnimation" "0" "renderamt" "255" @@ -447,6 +524,7 @@ entity { "id" "1185" "classname" "math_counter" + "angles" "0 0 0" "max" "$connectioncount" "targetname" "counter" connections @@ -467,6 +545,7 @@ entity { "id" "1187" "classname" "logic_branch" + "angles" "0 0 0" "InitialValue" "$start_deployed" "targetname" "branch_toggle" connections @@ -489,6 +568,7 @@ entity { "id" "15" "classname" "func_door" + "angles" "0 0 0" "disablereceiveshadows" "0" "disableshadows" "0" "dmg" "0" @@ -621,6 +701,7 @@ entity { "id" "712" "classname" "logic_auto" + "angles" "0 0 0" "spawnflags" "1" connections { diff --git a/packages/valve/geometry/resources/instances/clean/items/track/platform.vmf b/packages/valve/geometry/resources/instances/clean/items/track/platform.vmf index 57c32731ae..0992798a15 100644 --- a/packages/valve/geometry/resources/instances/clean/items/track/platform.vmf +++ b/packages/valve/geometry/resources/instances/clean/items/track/platform.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8419" - "mapversion" "125" + "editorbuild" "9672" + "mapversion" "131" "formatversion" "100" "prefab" "0" } @@ -14,13 +14,13 @@ viewsettings "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "16" + "nGridSpacing" "4" "bShow3DGrid" "0" } world { "id" "1" - "mapversion" "125" + "mapversion" "131" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -29,14 +29,44 @@ world "skyname" "sky_black_nofog" } entity +{ + "id" "2035" + "classname" "comp_relay" + "ctrl_type" "0" + "ctrl_value" "1" + "delay" "0.0" + "targetname" "platform" + connections + { + "OnTurnedOn" "cube_enable_motion_triggerDisable0.01-1" + "OnTurnedOn" "track_lift_movelinearSetPosition10-1" + "OnTurnedOn" "cube_enable_motion_triggerEnable0-1" + "OnTurnedOff" "cube_enable_motion_triggerDisable0.01-1" + "OnTurnedOff" "track_lift_movelinearSetPosition00-1" + "OnTurnedOff" "cube_enable_motion_triggerEnable0-1" + } + "origin" "48 0 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "comments" "Either the trigger or inputs control this." + "logicalpos" "[0 1500]" + } +} +entity { "id" "2021" "classname" "comp_kv_setter" "angles" "-90 0 0" "conv_ang" "0" + "ctrl_value" "1" "invert" "0" "kv_name" "model" "kv_value_global" "$model" + "kv_value_mode" "legacy" + "kv_value_pos" "48 0 16" "mode" "kv" "rotate" "0" "target" "track_lift_model" @@ -156,7 +186,7 @@ entity "parm1" "$connectioncount integer 0" "parm2" "$travel_distance integer 128" "parm3" "$speed integer 100" - "parm4" "$travel_direction angle -90 0 0" + "parm4" "$travel_direction angle 0 0 0" "parm5" "$model studio" "parm6" "$skin integer 0" "origin" "48 0 0" @@ -165,6 +195,7 @@ entity "color" "220 30 220" "visgroupshown" "1" "visgroupautoshown" "1" + "comments" "" "logicalpos" "[0 1500]" } } @@ -172,6 +203,7 @@ entity { "id" "2" "classname" "func_movelinear" + "angles" "0 0 0" "blockdamage" "0" "disablereceiveshadows" "0" "movedir" "$travel_direction" @@ -188,134 +220,82 @@ entity "startsound" "World.PlatformStart" "stopsound" "World.PlatformStop" "targetname" "track_lift_movelinear" - connections - { - "OnUser2" "cube_enable_motion_triggerDisable0.01-1" - "OnUser2" "cube_enable_motion_triggerEnable0-1" - "OnUser2" "track_lift_movelinearSetPosition10-1" - "OnUser1" "cube_enable_motion_triggerDisable0.01-1" - "OnUser1" "cube_enable_motion_triggerEnable0-1" - "OnUser1" "track_lift_movelinearSetPosition00-1" - } solid { - "id" "1176" + "id" "2124" side { - "id" "1001" - "plane" "(-56 64 64) (64 18 -64) (0 18 64)" + "id" "1031" + "plane" "(28 -16 -48) (28 -16 -64) (-56 -16 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -47.7822] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1000" - "plane" "(64 -19 -64) (-56.0017 -64 64) (0.00194925 -19 64)" + "id" "1030" + "plane" "(-56 16 64) (-56 16 -64) (28 16 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 43.7822] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "999" - "plane" "(0.00194925 -19 64) (-56.0017 -64 64) (-56 64 64)" + "id" "1029" + "plane" "(-56 -16 64) (-56 -16 -64) (-56 16 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 -55.7822] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "998" - "plane" "(64 -19 -64) (0.00194925 -19 64) (0 18 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-0.351124 0 0.936329 -7.48126] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "997" - "plane" "(64 18 -64) (-56 64 64) (-56.0017 -64 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 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" "1177" - side - { - "id" "1006" - "plane" "(-56 64 -64) (-56 64 64) (-56 -64 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1005" - "plane" "(64 18 -64) (-56 64 64) (-56 64 -64)" + "id" "1028" + "plane" "(28 16 -48) (28 16 -64) (28 -16 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -47.7822] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1004" - "plane" "(-56 -64 64) (63.9985 -19 -64) (-56 -64 -64)" + "id" "1027" + "plane" "(-20 -16 64) (-56 -16 64) (-56 16 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 43.7822] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1003" - "plane" "(-56 -64 -64) (63.9985 -19 -64) (64 18 -64)" + "id" "1026" + "plane" "(28 16 -64) (-56 16 -64) (-56 -16 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 55.7822] 0.25" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1002" - "plane" "(64 18 -64) (63.9985 -19 -64) (-56 -64 64)" + "id" "1025" + "plane" "(-20 16 64) (28 16 -48) (28 -16 -48)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" diff --git a/packages/valve/geometry/resources/instances/clean/items/track/platform_oscillate.vmf b/packages/valve/geometry/resources/instances/clean/items/track/platform_oscillate.vmf index d6160a7b07..4eb76c9506 100644 --- a/packages/valve/geometry/resources/instances/clean/items/track/platform_oscillate.vmf +++ b/packages/valve/geometry/resources/instances/clean/items/track/platform_oscillate.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8419" - "mapversion" "204" + "editorbuild" "9672" + "mapversion" "212" "formatversion" "100" "prefab" "0" } @@ -14,13 +14,13 @@ viewsettings "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "16" + "nGridSpacing" "2" "bShow3DGrid" "0" } world { "id" "1" - "mapversion" "204" + "mapversion" "212" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -29,16 +29,42 @@ world "skyname" "sky_black_nofog" } entity +{ + "id" "3146" + "classname" "comp_relay" + "ctrl_type" "0" + "ctrl_value" "1" + "delay" "0.0" + "targetname" "platform" + connections + { + "OnTurnedOff" "move_rlFireUser10-1" + "OnTurnedOn" "move_rlTrigger0-1" + } + "origin" "32 16 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "comments" "Either the trigger or inputs control this." + "logicalpos" "[0 1500]" + } +} +entity { "id" "3072" "classname" "comp_kv_setter" "angles" "0 0 0" + "ctrl_value" "1" "invert" "0" "kv_name" "model" "kv_value_global" "$model" + "kv_value_mode" "legacy" + "kv_value_pos" "32 -16 16" "mode" "kv" "target" "track_lift_model" - "origin" "48 0 32" + "origin" "32 -16 16" editor { "color" "220 30 220" @@ -54,7 +80,6 @@ entity "filtername" "@is_mbox" "origin" "48 0 0" "parentname" "track_lift_movelinear" - "solid" "6" "spawnflags" "4104" "StartDisabled" "1" "targetname" "cube_enable_motion_trigger" @@ -159,7 +184,7 @@ entity "OnFalse" "track_lift_movelinearSetPosition00-1" "OnTrue" "track_lift_movelinearSetPosition10-1" } - "origin" "48 -16 32" + "origin" "32 -16 32" editor { "color" "0 100 250" @@ -185,7 +210,7 @@ entity "OnUser1" "track_lift_movelinearSetSpeed00-1" "OnUser1" "cube_enable_motion_triggerEnable0-1" } - "origin" "48 16 32" + "origin" "32 16 32" editor { "color" "0 100 250" @@ -202,12 +227,12 @@ entity "parm1" "$connectioncount integer 0" "parm2" "$travel_distance integer 128" "parm3" "$speed integer 100" - "parm4" "$travel_direction angle 0 90 0" + "parm4" "$travel_direction angle 0 0 0" "parm5" "$starting_position float 0" "parm6" "$start_active boolean 0" "parm7" "$model string" "parm8" "$skin integer 0" - "origin" "48 0 16" + "origin" "32 0 16" editor { "color" "220 30 220" @@ -220,18 +245,16 @@ entity { "id" "2" "classname" "func_movelinear" + "angles" "0 0 0" "blockdamage" "0" "disablereceiveshadows" "0" - "fademindist" "-1" - "fadescale" "1" "movedir" "$travel_direction" "movedistance" "$travel_distance" - "origin" "4.05 0 0" + "origin" "0 0 0" "renderamt" "255" "rendercolor" "255 255 255" "renderfx" "0" "rendermode" "10" - "solid" "6" "spawnflags" "0" "speed" "$speed" "startposition" "$starting_position" @@ -247,123 +270,80 @@ entity } solid { - "id" "1176" + "id" "3267" side { - "id" "1001" - "plane" "(0 18 64) (-56 64 64) (64 18 -64)" + "id" "1057" + "plane" "(-56 -14 64) (-56 14 64) (-20 14 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -47.7822] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 8] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1000" - "plane" "(0 -19 64) (64 -19 -64) (-56 -64 64)" + "id" "1056" + "plane" "(-56 14 -64) (-56 -14 -64) (28 -14 -64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 43.7822] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 8] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "999" - "plane" "(0 18 64) (0 -19 64) (-56 -64 64)" + "id" "1055" + "plane" "(-56 -14 -64) (-56 14 -64) (-56 14 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 -55.7822] 0.25" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "998" - "plane" "(64 18 -64) (64 -19 -64) (0 -19 64)" + "id" "1054" + "plane" "(28 14 -64) (28 -14 -64) (28 -14 -52)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-0.351124 0 0.936329 -7.48126] 0.25" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "997" - "plane" "(64 -19 -64) (64 18 -64) (-56 64 64)" + "id" "1053" + "plane" "(-56 14 -64) (28 14 -64) (28 14 -52)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 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" "1177" - side - { - "id" "1006" - "plane" "(-56 -64 -64) (-56 64 -64) (-56 64 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1005" - "plane" "(-56 64 -64) (63.999 18 -64) (-56 64 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -47.7822] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1004" - "plane" "(-56 -64 -64) (-56 -64 64) (63.9974 -19 -64)" + "id" "1052" + "plane" "(28 -14 -64) (-56 -14 -64) (-56 -14 64)" "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 43.7822] 0.25" - "vaxis" "[0 0 1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1003" - "plane" "(-56 64 -64) (-56 -64 -64) (63.9974 -19 -64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 55.7822] 0.25" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1002" - "plane" "(-56 64 64) (63.999 18 -64) (63.9974 -19 -64)" + "id" "1051" + "plane" "(28 14 -52) (28 -14 -52) (-20 -14 64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -411,8 +391,6 @@ entity "rendercolor" "255 255 255" "renderfx" "0" "rendermode" "0" - "SetBodyGroup" "0" - "shadowdepthnocache" "0" "skin" "$skin" "skinset" "$skin" "solid" "6" diff --git a/packages/valve/geometry/resources/instances/clean/items/track/platform_static.vmf b/packages/valve/geometry/resources/instances/clean/items/track/platform_static.vmf new file mode 100644 index 0000000000..d243b27f58 --- /dev/null +++ b/packages/valve/geometry/resources/instances/clean/items/track/platform_static.vmf @@ -0,0 +1,204 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "9672" + "mapversion" "213" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "16" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "213" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxblobcount" "250" + "maxpropscreenwidth" "-1" + "skyname" "sky_black_nofog" +} +entity +{ + "id" "3348" + "classname" "comp_relay" + "ctrl_type" "0" + "ctrl_value" "1" + "delay" "0.0" + "targetname" "platform" + "origin" "16 0 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "comments" "This exists to consume the outputs produced." + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "2" + "classname" "func_detail" + "spawnflags" "0" + connections + { + "OnFullyOpen" "track_lift_movelinearSetPosition00-1" + "OnFullyClosed" "track_lift_movelinearSetPosition10-1" + "OnFullyOpen" "branch_posSetValue00-1" + "OnFullyClosed" "branch_posSetValue10-1" + } + solid + { + "id" "3267" + side + { + "id" "1057" + "plane" "(-56 -14 64) (-56 14 64) (-20 14 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1056" + "plane" "(-56 14 -64) (-56 -14 -64) (28 -14 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1055" + "plane" "(-56 -14 -64) (-56 14 -64) (-56 14 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1054" + "plane" "(28 14 -64) (28 -14 -64) (28 -14 -52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1053" + "plane" "(-56 14 -64) (28 14 -64) (28 14 -52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1052" + "plane" "(28 -14 -64) (-56 -14 -64) (-56 -14 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1051" + "plane" "(28 14 -52) (28 -14 -52) (-20 -14 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 3500]" + } +} +entity +{ + "id" "453" + "classname" "prop_dynamic" + "angles" "-90 0 0" + "DisableBoneFollowers" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "1" + "disableshadows" "1" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "1" + "MaxAnimTime" "10" + "MinAnimTime" "5" + "model" "models/anim_wp/arm_interior_192/arm_interior_128.mdl" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "skin" "$skin" + "skinset" "$skin" + "solid" "6" + "spawnflags" "0" + "targetname" "track_lift_model" + "origin" "-64 0 -2.79753e-006" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/packages/sendificator/resources/instances/logic/hmw/sendtor_exit.vmf b/packages/valve/geometry/resources/instances/clean/items/track/trigger.vmf similarity index 56% rename from packages/sendificator/resources/instances/logic/hmw/sendtor_exit.vmf rename to packages/valve/geometry/resources/instances/clean/items/track/trigger.vmf index ef50532f20..c2f7e7c081 100644 --- a/packages/sendificator/resources/instances/logic/hmw/sendtor_exit.vmf +++ b/packages/valve/geometry/resources/instances/clean/items/track/trigger.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8997" - "mapversion" "303" + "editorbuild" "9672" + "mapversion" "3" "formatversion" "100" "prefab" "0" } @@ -14,98 +14,95 @@ viewsettings "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "64" + "nGridSpacing" "32" "bShow3DGrid" "0" } world { "id" "1" - "mapversion" "303" + "mapversion" "3" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" "maxblobcount" "250" "maxpropscreenwidth" "-1" - "skyname" "sky_day01_01" + "skyname" "sky_black_nofog" } entity { - "id" "18218" + "id" "2" "classname" "trigger_multiple" - "origin" "-350 0 0" - "solid" "6" - "spawnflags" "4104" + "origin" "0 0 0" + "parentname" "track_lift_movelinear" + "spawnflags" "1" "StartDisabled" "0" + "targetname" "trigger" "wait" "1" - connections - { - "OnStartTouch" "!activatorFireUser10-1" - } solid { - "id" "12866" + "id" "3" side { - "id" "3588" - "plane" "(-128 188 -188) (-128 -188 -188) (-128 -188 188)" + "id" "1" + "plane" "(-144 -48 -48) (-144 48 -48) (-144 48 48)" "material" "TOOLS/TOOLSTRIGGER" "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3587" - "plane" "(-572 -188 -188) (-572 188 -188) (-572 188 188)" + "id" "2" + "plane" "(-64 48 -48) (-64 -48 -48) (-64 -48 48)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 16] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3586" - "plane" "(-572 188 -188) (-572 -188 -188) (-128 -188 -188)" + "id" "3" + "plane" "(-144 48 -48) (-144 -48 -48) (-64 -48 -48)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 1 0 16] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3585" - "plane" "(-572 -188 188) (-572 188 188) (-128 188 188)" + "id" "4" + "plane" "(-144 -48 48) (-144 48 48) (-64 48 48)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 -1 0 -16] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3584" - "plane" "(-572 -188 -188) (-572 -188 188) (-128 -188 188)" + "id" "5" + "plane" "(-144 48 48) (-144 48 -48) (-64 48 -48)" "material" "TOOLS/TOOLSTRIGGER" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "3583" - "plane" "(-572 188 188) (-572 188 -188) (-128 188 -188)" + "id" "6" + "plane" "(-64 -48 48) (-64 -48 -48) (-144 -48 -48)" "material" "TOOLS/TOOLSTRIGGER" "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -122,8 +119,7 @@ entity "color" "220 30 220" "visgroupshown" "1" "visgroupautoshown" "1" - "comments" "Stop cubes from being sendtored into the exit room." - "logicalpos" "[0 0]" + "logicalpos" "[0 500]" } } cameras diff --git a/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_120.dx90.vtx b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_120.dx90.vtx new file mode 100644 index 0000000000..98565c84df Binary files /dev/null and b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_120.dx90.vtx differ diff --git a/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_120.mdl b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_120.mdl new file mode 100644 index 0000000000..5bfa0bad50 Binary files /dev/null and b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_120.mdl differ diff --git a/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_120.phy b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_120.phy new file mode 100644 index 0000000000..e9edd8edb5 Binary files /dev/null and b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_120.phy differ diff --git a/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_120.vvd b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_120.vvd new file mode 100644 index 0000000000..ff6f6280b6 Binary files /dev/null and b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_120.vvd differ diff --git a/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_128.dx90.vtx b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_128.dx90.vtx new file mode 100644 index 0000000000..11c7f281c6 Binary files /dev/null and b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_128.dx90.vtx differ diff --git a/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_128.mdl b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_128.mdl new file mode 100644 index 0000000000..f307b24d63 Binary files /dev/null and b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_128.mdl differ diff --git a/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_128.phy b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_128.phy new file mode 100644 index 0000000000..6094dcfa48 Binary files /dev/null and b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_128.phy differ diff --git a/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_128.vvd b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_128.vvd new file mode 100644 index 0000000000..74f6c7cc34 Binary files /dev/null and b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_128.vvd differ diff --git a/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_24.dx90.vtx b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_24.dx90.vtx new file mode 100644 index 0000000000..7bc48183ac Binary files /dev/null and b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_24.dx90.vtx differ diff --git a/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_24.mdl b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_24.mdl new file mode 100644 index 0000000000..046fb30ba6 Binary files /dev/null and b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_24.mdl differ diff --git a/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_24.phy b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_24.phy new file mode 100644 index 0000000000..37f4d5900a Binary files /dev/null and b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_24.phy differ diff --git a/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_24.vvd b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_24.vvd new file mode 100644 index 0000000000..10e66c8655 Binary files /dev/null and b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_24.vvd differ diff --git a/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_256.dx90.vtx b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_256.dx90.vtx new file mode 100644 index 0000000000..36feb3c029 Binary files /dev/null and b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_256.dx90.vtx differ diff --git a/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_256.mdl b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_256.mdl new file mode 100644 index 0000000000..3648cc66a6 Binary files /dev/null and b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_256.mdl differ diff --git a/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_256.phy b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_256.phy new file mode 100644 index 0000000000..bed8bb9313 Binary files /dev/null and b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_256.phy differ diff --git a/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_256.vvd b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_256.vvd new file mode 100644 index 0000000000..7ced32c654 Binary files /dev/null and b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_256.vvd differ diff --git a/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_28.dx90.vtx b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_28.dx90.vtx new file mode 100644 index 0000000000..e33b5f8f2d Binary files /dev/null and b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_28.dx90.vtx differ diff --git a/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_28.mdl b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_28.mdl new file mode 100644 index 0000000000..fc77852d95 Binary files /dev/null and b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_28.mdl differ diff --git a/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_28.phy b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_28.phy new file mode 100644 index 0000000000..ab528bb126 Binary files /dev/null and b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_28.phy differ diff --git a/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_28.vvd b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_28.vvd new file mode 100644 index 0000000000..849e530425 Binary files /dev/null and b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_28.vvd differ diff --git a/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_32.dx90.vtx b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_32.dx90.vtx new file mode 100644 index 0000000000..be0108e8dc Binary files /dev/null and b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_32.dx90.vtx differ diff --git a/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_32.mdl b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_32.mdl new file mode 100644 index 0000000000..649c5f2b0d Binary files /dev/null and b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_32.mdl differ diff --git a/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_32.phy b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_32.phy new file mode 100644 index 0000000000..05485e9400 Binary files /dev/null and b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_32.phy differ diff --git a/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_32.vvd b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_32.vvd new file mode 100644 index 0000000000..732245b091 Binary files /dev/null and b/packages/valve/geometry/resources/models/BEE2/props_clean/window_frame_system/straight_32.vvd differ diff --git a/packages/valve/geometry/templates/angled_pan_coll.vmf b/packages/valve/geometry/templates/angled_pan_coll.vmf index e7db6f83b2..570a9bf11a 100644 --- a/packages/valve/geometry/templates/angled_pan_coll.vmf +++ b/packages/valve/geometry/templates/angled_pan_coll.vmf @@ -1,19 +1,13 @@ versioninfo { "editorversion" "400" - "editorbuild" "8973" - "mapversion" "45" + "editorbuild" "9672" + "mapversion" "54" "formatversion" "100" "prefab" "0" } visgroups { - visgroup - { - "name" "static_45" - "visgroupid" "1" - "color" "117 234 179" - } visgroup { "name" "static_30" @@ -21,6 +15,12 @@ visgroups "color" "250 243 160" } visgroup + { + "name" "static_45" + "visgroupid" "1" + "color" "117 234 179" + } + visgroup { "name" "static_60" "visgroupid" "4" @@ -34,27 +34,27 @@ visgroups } visgroup { - "name" "dynamic_90" - "visgroupid" "14" - "color" "253 178 123" + "name" "dynamic_30" + "visgroupid" "17" + "color" "86 239 204" } visgroup { - "name" "dynamic_60" - "visgroupid" "13" - "color" "123 232 121" + "name" "dynamic_45" + "visgroupid" "15" + "color" "82 91 152" } visgroup { - "name" "dynamic_45" - "visgroupid" "15" - "color" "201 238 151" + "name" "dynamic_60" + "visgroupid" "13" + "color" "123 232 121" } visgroup { - "name" "dynamic_30" - "visgroupid" "17" - "color" "86 239 204" + "name" "dynamic_90" + "visgroupid" "14" + "color" "253 178 123" } } viewsettings @@ -62,13 +62,13 @@ viewsettings "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "8" + "nGridSpacing" "32" "bShow3DGrid" "0" } world { "id" "1" - "mapversion" "45" + "mapversion" "54" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -76,6 +76,479 @@ world "maxpropscreenwidth" "-1" "skyname" "sky_black_nofog" } +hidden +{ + entity + { + "id" "1737" + "classname" "bee2_collision_volume" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grating" "0" + "coll_oob" "0" + "coll_solid" "1" + "coll_temporary" "0" + hidden + { + solid + { + "id" "1738" + side + { + "id" "1061" + "plane" "(-48 40 14) (-48 -40 14) (-48 -40 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1060" + "plane" "(8 -40 -10) (8 40 -10) (-2 40 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1059" + "plane" "(-48 40 4) (-48 -40 4) (-2 -40 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1058" + "plane" "(-48 -40 14) (-48 40 14) (8 40 -10)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1057" + "plane" "(-48 40 14) (-48 40 4) (-2 40 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1056" + "plane" "(-48 -40 4) (-48 -40 14) (8 -40 -10)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + editor + { + "color" "220 30 220" + "visgroupid" "5" + "visgroupshown" "0" + "visgroupautoshown" "1" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "1991" + "classname" "bee2_collision_volume" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_solid" "0" + "coll_temporary" "1" + hidden + { + solid + { + "id" "2034" + side + { + "id" "1357" + "plane" "(-64 -64 -64) (64 -64 -64) (64 64 -64)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1356" + "plane" "(64 -64 -64) (64 -64 -46) (64 64 -46)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1355" + "plane" "(64 64 -64) (64 64 -46) (55 64 -14)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1354" + "plane" "(-64 -64 -64) (2.86102e-006 -64 47) (14 -64 39)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1353" + "plane" "(14 64 39) (14 -64 39) (2.86102e-006 -64 47)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1352" + "plane" "(14 -64 39) (14 64 39) (38 64 15)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1351" + "plane" "(38 -64 15) (38 64 15) (55 64 -14)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1350" + "plane" "(64 -64 -46) (55 -64 -14) (55 64 -14)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1349" + "plane" "(-64 64 -64) (0 64 47) (2.86102e-006 -64 47)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + editor + { + "color" "220 30 220" + "visgroupid" "13" + "visgroupshown" "0" + "visgroupautoshown" "1" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "2036" + "classname" "bee2_collision_volume" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_solid" "0" + "coll_temporary" "1" + hidden + { + solid + { + "id" "2054" + side + { + "id" "1387" + "plane" "(-64 64 -64) (-64 -64 -64) (64 -64 -64)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1386" + "plane" "(64 64 -64) (64 -64 -64) (64 -64 -46)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1385" + "plane" "(-64 64 -64) (64 64 -64) (64 64 -46)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1384" + "plane" "(64 -64 -64) (-64 -64 -64) (26.5 -64 26.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1383" + "plane" "(38 -64 15) (26.5 -64 26.5) (26.5 64 26.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1382" + "plane" "(55 -64 -14) (38 -64 15) (38 64 15)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1381" + "plane" "(64 64 -46) (64 -64 -46) (55 -64 -14)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1380" + "plane" "(-64 -64 -64) (-64 64 -64) (26.5 64 26.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + editor + { + "color" "220 30 220" + "visgroupid" "15" + "visgroupshown" "0" + "visgroupautoshown" "1" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "2057" + "classname" "bee2_collision_volume" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_solid" "0" + "coll_temporary" "1" + hidden + { + solid + { + "id" "2220" + side + { + "id" "1416" + "plane" "(-64 64 -64) (-64 -64 -64) (64 -64 -64)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1415" + "plane" "(64 64 -64) (64 -64 -64) (64 -64 -46)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1414" + "plane" "(-64 64 -64) (64 64 -64) (64 64 -46)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1413" + "plane" "(64 -64 -64) (-64 -64 -64) (46.7772 -64 0.0271711)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1412" + "plane" "(55 -64 -14) (46.7769 -64 0.0270081) (46.7769 64 0.0270052)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1411" + "plane" "(64 64 -46) (64 -64 -46) (55 -64 -14)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1410" + "plane" "(-64 -64 -64) (-64 64 -64) (46.7773 64 0.0269699)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + editor + { + "color" "220 30 220" + "visgroupid" "17" + "visgroupshown" "0" + "visgroupautoshown" "1" + "logicalpos" "[0 4500]" + } + } +} entity { "id" "1581" @@ -84,17 +557,12 @@ entity "disableflashlight" "0" "disablereceiveshadows" "0" "disableshadowdepth" "0" - "effects" "0" "invert_exclusion" "0" - "maxdxlevel" "0" - "mindxlevel" "0" - "origin" "-7.57 0 -1.73" + "origin" "0 0 0" "renderamt" "255" "rendercolor" "255 255 255" "renderfx" "0" "rendermode" "0" - "shadowdepthnocache" "0" - "solid" "6" "solidbsp" "0" "solidity" "0" "spawnflags" "2" @@ -415,22 +883,20 @@ entity entity { "id" "1218" - "classname" "bee2_collision_bbox" - "coll_antline" "0" + "classname" "bee2_collision_volume" "coll_bridge" "0" "coll_decoration" "0" "coll_fizzler" "0" "coll_glass" "0" - "coll_grate" "0" "coll_solid" "0" "coll_temporary" "1" solid { - "id" "1219" + "id" "1977" side { - "id" "612" - "plane" "(-64 -64 64) (-64 64 64) (-24 64 64)" + "id" "1326" + "plane" "(-64 64 64) (-52 64 64) (-52 -64 64)" "material" "TOOLS/TOOLSCLIP" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -440,8 +906,8 @@ entity } side { - "id" "611" - "plane" "(-64 64 -64) (-64 -64 -64) (-24 -64 -64)" + "id" "1325" + "plane" "(-64 -64 -64) (64 -64 -64) (64 64 -64)" "material" "TOOLS/TOOLSCLIP" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -451,8 +917,8 @@ entity } side { - "id" "610" - "plane" "(-64 -64 -64) (-64 64 -64) (-64 64 64)" + "id" "1324" + "plane" "(-64 64 -64) (-64 64 64) (-64 -64 64)" "material" "TOOLS/TOOLSCLIP" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -462,8 +928,8 @@ entity } side { - "id" "609" - "plane" "(-24 64 -64) (-24 -64 -64) (-24 -64 64)" + "id" "1323" + "plane" "(64 -64 -64) (64 -64 -46) (64 64 -46)" "material" "TOOLS/TOOLSCLIP" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -473,8 +939,8 @@ entity } side { - "id" "608" - "plane" "(-64 64 -64) (-24 64 -64) (-24 64 64)" + "id" "1322" + "plane" "(64 64 -64) (64 64 -46) (55 64 -14)" "material" "TOOLS/TOOLSCLIP" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -484,8 +950,8 @@ entity } side { - "id" "607" - "plane" "(-24 -64 -64) (-64 -64 -64) (-64 -64 64)" + "id" "1321" + "plane" "(-64 -64 -64) (-64 -64 64) (-52 -64 64)" "material" "TOOLS/TOOLSCLIP" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -493,43 +959,12 @@ entity "lightmapscale" "16" "smoothing_groups" "0" } - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "14" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "1289" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "1" - solid - { - "id" "1290" side { - "id" "636" - "plane" "(-24 -64 56) (-24 64 56) (1.90735e-006 64 56)" + "id" "1320" + "plane" "(-52 64 64) (-16 64 56) (-16 -64 56)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -537,10 +972,10 @@ entity } side { - "id" "635" - "plane" "(-24 64 -64) (-24 -64 -64) (1.90735e-006 -64 -64)" + "id" "1319" + "plane" "(14 64 39) (14 -64 39) (-16 -64 56)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -548,19 +983,8 @@ entity } side { - "id" "634" - "plane" "(-24 -64 -64) (-24 64 -64) (-24 64 56)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "633" - "plane" "(1.90735e-006 64 -64) (1.90735e-006 -64 -64) (1.90735e-006 -64 56)" + "id" "1318" + "plane" "(14 -64 39) (14 64 39) (38 64 15)" "material" "TOOLS/TOOLSCLIP" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -570,10 +994,10 @@ entity } side { - "id" "632" - "plane" "(-24 64 -64) (1.90735e-006 64 -64) (1.90735e-006 64 56)" + "id" "1317" + "plane" "(38 -64 15) (38 64 15) (55 64 -14)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 -32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -581,10 +1005,10 @@ entity } side { - "id" "631" - "plane" "(1.90735e-006 -64 -64) (-24 -64 -64) (-24 -64 56)" + "id" "1316" + "plane" "(64 -64 -46) (55 -64 -14) (55 64 -14)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 32] 0.25" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -608,144 +1032,471 @@ entity } entity { - "id" "1338" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "1" - solid + "id" "1571" + "classname" "bee2_template_conf" + "detail_auto_visgroup" "0" + "discard_brushes" "0" + "temp_type" "default" + "template_id" "BEE2_ANGLED_PAN_CLEAN_COLL" + "origin" "0 0 64" + editor { - "id" "1339" - side - { - "id" "682" - "plane" "(0 -64 48) (0 64 48) (16 64 48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "681" - "plane" "(0 64 -64) (0 -64 -64) (16 -64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "680" - "plane" "(0 -64 -64) (0 64 -64) (0 64 48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "679" - "plane" "(16 64 -64) (16 -64 -64) (16 -64 48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "544" + "classname" "bee2_collision_volume" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_solid" "1" + "coll_temporary" "0" + hidden + { + solid + { + "id" "508" + side + { + "id" "216" + "plane" "(-47 -64 -64) (-64 -64 -64) (27 -64 27)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "215" + "plane" "(-64 64 -64) (-47 64 -64) (36 64 18)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "214" + "plane" "(-64 -64 -64) (-64 64 -64) (27 64 27)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "213" + "plane" "(-47 64 -64) (-47 -64 -64) (36 -64 18)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "212" + "plane" "(27 -64 27) (27 64 27) (36 64 18)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "211" + "plane" "(-64 64 -64) (-64 -64 -64) (-47 -64 -64)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } } - side + editor { - "id" "678" - "plane" "(0 64 -64) (16 64 -64) (16 64 48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "220 30 220" + "visgroupid" "1" + "visgroupshown" "0" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } + } +} +hidden +{ + entity + { + "id" "729" + "classname" "bee2_collision_volume" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_solid" "1" + "coll_temporary" "0" + hidden + { + solid + { + "id" "730" + side + { + "id" "312" + "plane" "(-64 62 -64) (47 62 0) (47 -62 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "311" + "plane" "(-42 -62 -64) (53 -62 -11) (53 62 -11)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "310" + "plane" "(-42 62 -64) (-64 62 -64) (-64 -62 -64)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "309" + "plane" "(53 -62 -11) (47 -62 0) (47 62 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "308" + "plane" "(53 62 -11) (47 62 0) (-64 62 -64)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307" + "plane" "(-42 -62 -64) (-64 -62 -64) (47 -62 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } + } + hidden + { + solid + { + "id" "911" + side + { + "id" "456" + "plane" "(0 40 -40) (8 40 -36) (8 -40 -36)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "455" + "plane" "(21 -40 -64) (32 -40 -64) (32 40 -64)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "454" + "plane" "(21 40 -64) (0 40 -40) (0 -40 -40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "453" + "plane" "(32 -40 -64) (8 -40 -36) (8 40 -36)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "452" + "plane" "(32 40 -64) (8 40 -36) (0 40 -40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "451" + "plane" "(21 -40 -64) (0 -40 -40) (8 -40 -36)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } } - side + editor { - "id" "677" - "plane" "(16 -64 -64) (0 -64 -64) (0 -64 48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "220 30 220" + "visgroupid" "3" + "visgroupshown" "0" + "visgroupautoshown" "1" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "801" + "classname" "bee2_collision_bbox" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_solid" "1" + "coll_temporary" "0" + hidden + { + solid + { + "id" "802" + side + { + "id" "444" + "plane" "(-64 64 64) (-48 64 64) (-48 -64 64)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "443" + "plane" "(-64 -64 -64) (-48 -64 -64) (-48 64 -64)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "442" + "plane" "(-64 64 64) (-64 -64 64) (-64 -64 -64)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "441" + "plane" "(-48 64 -64) (-48 -64 -64) (-48 -64 64)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "440" + "plane" "(-48 64 64) (-64 64 64) (-64 64 -64)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "439" + "plane" "(-48 -64 -64) (-64 -64 -64) (-64 -64 64)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } } editor { "color" "220 30 220" - "visgroupshown" "1" + "visgroupid" "5" + "visgroupshown" "0" "visgroupautoshown" "1" + "logicalpos" "[0 4500]" } } +} +entity +{ + "id" "862" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/bee2/panels/static_norm_45.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "origin" "0 0 -64" editor { - "color" "220 30 220" - "visgroupid" "14" + "color" "255 255 0" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 4500]" + "logicalpos" "[0 7500]" } } entity { - "id" "1346" + "id" "950" "classname" "bee2_collision_bbox" - "coll_antline" "0" "coll_bridge" "0" "coll_decoration" "0" "coll_fizzler" "0" "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "1" + "coll_solid" "1" + "coll_temporary" "0" solid { - "id" "1347" + "id" "951" side { - "id" "694" - "plane" "(16 -64 32) (16 64 32) (40 64 32)" + "id" "468" + "plane" "(-64 48 -64) (48 48 -64) (48 -48 -64)" "material" "TOOLS/TOOLSCLIP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "693" - "plane" "(16 64 -64) (16 -64 -64) (40 -64 -64)" + "id" "467" + "plane" "(-64 -48 -128) (48 -48 -128) (48 48 -128)" "material" "TOOLS/TOOLSCLIP" "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "692" - "plane" "(16 -64 -64) (16 64 -64) (16 64 32)" + "id" "466" + "plane" "(-64 48 -64) (-64 -48 -64) (-64 -48 -128)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0 -1 0 -8] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -753,10 +1504,10 @@ entity } side { - "id" "691" - "plane" "(40 64 -64) (40 -64 -64) (40 -64 32)" + "id" "465" + "plane" "(48 48 -128) (48 -48 -128) (48 -48 -64)" "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 8] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -764,8 +1515,8 @@ entity } side { - "id" "690" - "plane" "(16 64 -64) (40 64 -64) (40 64 32)" + "id" "464" + "plane" "(48 48 -64) (-64 48 -64) (-64 48 -128)" "material" "TOOLS/TOOLSCLIP" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -775,8 +1526,8 @@ entity } side { - "id" "689" - "plane" "(40 -64 -64) (16 -64 -64) (16 -64 32)" + "id" "463" + "plane" "(48 -48 -128) (-64 -48 -128) (-64 -48 -64)" "material" "TOOLS/TOOLSCLIP" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -794,5396 +1545,540 @@ entity editor { "color" "220 30 220" - "visgroupid" "14" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 4500]" } } -entity -{ - "id" "1352" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "1" - solid - { - "id" "1353" - side - { - "id" "706" - "plane" "(40 -64 16) (40 64 16) (48 64 16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" +hidden +{ + entity + { + "id" "993" + "classname" "bee2_collision_volume" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_solid" "1" + "coll_temporary" "0" + hidden + { + solid + { + "id" "2280" + side + { + "id" "1423" + "plane" "(-7 -40 -24) (-1 -40 -18) (43.6948 -40 -57.5422)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1422" + "plane" "(35 40 -64) (48 40 -64) (43.6931 40 -57.5397)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1421" + "plane" "(35 -40 -64) (35 40 -64) (-7 40 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1420" + "plane" "(-1 -40 -18) (-1 40 -18) (43.6931 40 -57.5397)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1419" + "plane" "(-7 -40 -24) (-7 40 -24) (-1 40 -18)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1418" + "plane" "(35 40 -64) (35 -40 -64) (48 -40 -64)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1417" + "plane" "(48 40 -64) (48 -40 -64) (43.6948 -40 -57.5422)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } } - side + editor { - "id" "705" - "plane" "(40 64 -64) (40 -64 -64) (48 -64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "704" - "plane" "(40 -64 -64) (40 64 -64) (40 64 16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "703" - "plane" "(48 64 -64) (48 -64 -64) (48 -64 16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "702" - "plane" "(40 64 -64) (48 64 -64) (48 64 16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "701" - "plane" "(48 -64 -64) (40 -64 -64) (40 -64 16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 -32] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "14" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "1366" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "1" - solid - { - "id" "1367" - side - { - "id" "718" - "plane" "(48 -64 -8) (48 64 -8) (64 64 -8)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "717" - "plane" "(48 64 -64) (48 -64 -64) (64 -64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "716" - "plane" "(48 -64 -64) (48 64 -64) (48 64 -8)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "715" - "plane" "(64 64 -64) (64 -64 -64) (64 -64 -8)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "714" - "plane" "(48 64 -64) (64 64 -64) (64 64 -8)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "713" - "plane" "(64 -64 -64) (48 -64 -64) (48 -64 -8)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "14" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "1372" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "1" - solid - { - "id" "1373" - side - { - "id" "730" - "plane" "(-64 -64 -32) (-64 64 -32) (-48 64 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "729" - "plane" "(-64 64 -64) (-64 -64 -64) (-48 -64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "728" - "plane" "(-64 -64 -64) (-64 64 -64) (-64 64 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "727" - "plane" "(-48 64 -64) (-48 -64 -64) (-48 -64 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "726" - "plane" "(-64 64 -64) (-48 64 -64) (-48 64 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "725" - "plane" "(-48 -64 -64) (-64 -64 -64) (-64 -64 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "13" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "1397" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "1" - solid - { - "id" "1398" - side - { - "id" "742" - "plane" "(-48 -64 -16) (-48 64 -16) (-32 64 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "741" - "plane" "(-48 64 -64) (-48 -64 -64) (-32 -64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "740" - "plane" "(-48 -64 -64) (-48 64 -64) (-48 64 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "739" - "plane" "(-32 64 -64) (-32 -64 -64) (-32 -64 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "738" - "plane" "(-48 64 -64) (-32 64 -64) (-32 64 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "737" - "plane" "(-32 -64 -64) (-48 -64 -64) (-48 -64 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "13" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "1403" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "1" - solid - { - "id" "1404" - side - { - "id" "754" - "plane" "(-32 -64 8) (-32 64 8) (-16 64 8)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "753" - "plane" "(-32 64 -64) (-32 -64 -64) (-16 -64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "752" - "plane" "(-32 -64 -64) (-32 64 -64) (-32 64 8)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "751" - "plane" "(-16 64 -64) (-16 -64 -64) (-16 -64 8)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "750" - "plane" "(-32 64 -64) (-16 64 -64) (-16 64 8)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "749" - "plane" "(-16 -64 -64) (-32 -64 -64) (-32 -64 8)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "13" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "1409" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "1" - solid - { - "id" "1410" - side - { - "id" "766" - "plane" "(-16 -64 32) (-16 64 32) (0 64 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "765" - "plane" "(-16 64 -64) (-16 -64 -64) (0 -64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "764" - "plane" "(-16 -64 -64) (-16 64 -64) (-16 64 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "763" - "plane" "(0 64 -64) (0 -64 -64) (0 -64 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "762" - "plane" "(-16 64 -64) (0 64 -64) (0 64 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "761" - "plane" "(0 -64 -64) (-16 -64 -64) (-16 -64 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "13" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "1415" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "1" - solid - { - "id" "1416" - side - { - "id" "778" - "plane" "(0 -64 48) (0 64 48) (16 64 48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "777" - "plane" "(0 64 -64) (0 -64 -64) (16 -64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "776" - "plane" "(0 -64 -64) (0 64 -64) (0 64 48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "775" - "plane" "(16 64 -64) (16 -64 -64) (16 -64 48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "774" - "plane" "(0 64 -64) (16 64 -64) (16 64 48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "773" - "plane" "(16 -64 -64) (0 -64 -64) (0 -64 48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "13" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "1421" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "1" - solid - { - "id" "1422" - side - { - "id" "790" - "plane" "(16 -64 40) (16 64 40) (32 64 40)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "789" - "plane" "(16 64 -64) (16 -64 -64) (32 -64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "788" - "plane" "(16 -64 -64) (16 64 -64) (16 64 40)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "787" - "plane" "(32 64 -64) (32 -64 -64) (32 -64 40)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "786" - "plane" "(16 64 -64) (32 64 -64) (32 64 40)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "785" - "plane" "(32 -64 -64) (16 -64 -64) (16 -64 40)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "13" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "1427" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "1" - solid - { - "id" "1428" - side - { - "id" "802" - "plane" "(32 -64 16) (32 64 16) (48 64 16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "801" - "plane" "(32 64 -64) (32 -64 -64) (48 -64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "800" - "plane" "(32 -64 -64) (32 64 -64) (32 64 16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "799" - "plane" "(48 64 -64) (48 -64 -64) (48 -64 16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "798" - "plane" "(32 64 -64) (48 64 -64) (48 64 16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "797" - "plane" "(48 -64 -64) (32 -64 -64) (32 -64 16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "13" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "1433" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "1" - solid - { - "id" "1434" - side - { - "id" "814" - "plane" "(48 -64 -9.53674e-007) (48 64 -9.53674e-007) (56 64 -9.53674e-007)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "813" - "plane" "(48 64 -64) (48 -64 -64) (56 -64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "812" - "plane" "(48 -64 -64) (48 64 -64) (48 64 -9.53674e-007)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "811" - "plane" "(56 64 -64) (56 -64 -64) (56 -64 -9.53674e-007)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "810" - "plane" "(48 64 -64) (56 64 -64) (56 64 -9.53674e-007)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "809" - "plane" "(56 -64 -64) (48 -64 -64) (48 -64 -9.53674e-007)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "13" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "1441" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "1" - solid - { - "id" "1442" - side - { - "id" "826" - "plane" "(56 -64 -16) (56 64 -16) (64 64 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "825" - "plane" "(56 64 -64) (56 -64 -64) (64 -64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "824" - "plane" "(56 -64 -64) (56 64 -64) (56 64 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "823" - "plane" "(64 64 -64) (64 -64 -64) (64 -64 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "822" - "plane" "(56 64 -64) (64 64 -64) (64 64 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "821" - "plane" "(64 -64 -64) (56 -64 -64) (56 -64 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 -32] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "13" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "1456" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "1" - solid - { - "id" "1457" - side - { - "id" "838" - "plane" "(-64 -64 -48) (-64 64 -48) (-48 64 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "837" - "plane" "(-64 64 -64) (-64 -64 -64) (-48 -64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "836" - "plane" "(-64 -64 -64) (-64 64 -64) (-64 64 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "835" - "plane" "(-48 64 -64) (-48 -64 -64) (-48 -64 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "834" - "plane" "(-64 64 -64) (-48 64 -64) (-48 64 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "833" - "plane" "(-48 -64 -64) (-64 -64 -64) (-64 -64 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "15" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "1464" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "1" - solid - { - "id" "1465" - side - { - "id" "850" - "plane" "(-48 -64 -32) (-48 64 -32) (-32 64 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "849" - "plane" "(-48 64 -64) (-48 -64 -64) (-32 -64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "848" - "plane" "(-48 -64 -64) (-48 64 -64) (-48 64 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "847" - "plane" "(-32 64 -64) (-32 -64 -64) (-32 -64 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "846" - "plane" "(-48 64 -64) (-32 64 -64) (-32 64 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "845" - "plane" "(-32 -64 -64) (-48 -64 -64) (-48 -64 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "15" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "1470" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "1" - solid - { - "id" "1471" - side - { - "id" "862" - "plane" "(-32 -64 -16) (-32 64 -16) (-16 64 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "861" - "plane" "(-32 64 -64) (-32 -64 -64) (-16 -64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "860" - "plane" "(-32 -64 -64) (-32 64 -64) (-32 64 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "859" - "plane" "(-16 64 -64) (-16 -64 -64) (-16 -64 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "858" - "plane" "(-32 64 -64) (-16 64 -64) (-16 64 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "857" - "plane" "(-16 -64 -64) (-32 -64 -64) (-32 -64 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "15" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "1476" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "1" - solid - { - "id" "1477" - side - { - "id" "874" - "plane" "(-16 -64 1.90735e-006) (-16 64 1.90735e-006) (0 64 1.90735e-006)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "873" - "plane" "(-16 64 -64) (-16 -64 -64) (0 -64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "872" - "plane" "(-16 -64 -64) (-16 64 -64) (-16 64 1.90735e-006)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "871" - "plane" "(0 64 -64) (0 -64 -64) (0 -64 1.90735e-006)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "870" - "plane" "(-16 64 -64) (0 64 -64) (0 64 1.90735e-006)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "869" - "plane" "(0 -64 -64) (-16 -64 -64) (-16 -64 1.90735e-006)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "15" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "1482" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "1" - solid - { - "id" "1483" - side - { - "id" "886" - "plane" "(0 -64 16) (0 64 16) (16 64 16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "885" - "plane" "(0 64 -64) (0 -64 -64) (16 -64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "884" - "plane" "(0 -64 -64) (0 64 -64) (0 64 16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "883" - "plane" "(16 64 -64) (16 -64 -64) (16 -64 16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "882" - "plane" "(0 64 -64) (16 64 -64) (16 64 16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "881" - "plane" "(16 -64 -64) (0 -64 -64) (0 -64 16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "15" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "1488" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "1" - solid - { - "id" "1489" - side - { - "id" "898" - "plane" "(16 -64 32) (16 64 32) (32 64 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "897" - "plane" "(16 64 -64) (16 -64 -64) (32 -64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "896" - "plane" "(16 -64 -64) (16 64 -64) (16 64 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "895" - "plane" "(32 64 -64) (32 -64 -64) (32 -64 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "894" - "plane" "(16 64 -64) (32 64 -64) (32 64 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "893" - "plane" "(32 -64 -64) (16 -64 -64) (16 -64 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "15" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "1494" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "1" - solid - { - "id" "1495" - side - { - "id" "910" - "plane" "(32 -64 16) (32 64 16) (48 64 16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "909" - "plane" "(32 64 -64) (32 -64 -64) (48 -64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "908" - "plane" "(32 -64 -64) (32 64 -64) (32 64 16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "907" - "plane" "(48 64 -64) (48 -64 -64) (48 -64 16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "906" - "plane" "(32 64 -64) (48 64 -64) (48 64 16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "905" - "plane" "(48 -64 -64) (32 -64 -64) (32 -64 16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "15" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "1500" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "1" - solid - { - "id" "1501" - side - { - "id" "922" - "plane" "(48 -64 -9.53674e-007) (48 64 -9.53674e-007) (56 64 -9.53674e-007)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "921" - "plane" "(48 64 -64) (48 -64 -64) (56 -64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "920" - "plane" "(48 -64 -64) (48 64 -64) (48 64 -9.53674e-007)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "919" - "plane" "(56 64 -64) (56 -64 -64) (56 -64 -9.53674e-007)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "918" - "plane" "(48 64 -64) (56 64 -64) (56 64 -9.53674e-007)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "917" - "plane" "(56 -64 -64) (48 -64 -64) (48 -64 -9.53674e-007)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "15" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "1506" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "1" - solid - { - "id" "1507" - side - { - "id" "934" - "plane" "(56 -64 -24) (56 64 -24) (64 64 -24)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "933" - "plane" "(56 64 -64) (56 -64 -64) (64 -64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "932" - "plane" "(56 -64 -64) (56 64 -64) (56 64 -24)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "931" - "plane" "(64 64 -64) (64 -64 -64) (64 -64 -24)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "930" - "plane" "(56 64 -64) (64 64 -64) (64 64 -24)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "929" - "plane" "(64 -64 -64) (56 -64 -64) (56 -64 -24)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 -32] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "15" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "1510" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "1" - solid - { - "id" "1511" - side - { - "id" "946" - "plane" "(-64 -64 -48) (-64 64 -48) (-32 64 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "945" - "plane" "(-64 64 -64) (-64 -64 -64) (-32 -64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "944" - "plane" "(-64 -64 -64) (-64 64 -64) (-64 64 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "943" - "plane" "(-32 64 -64) (-32 -64 -64) (-32 -64 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "942" - "plane" "(-64 64 -64) (-32 64 -64) (-32 64 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "941" - "plane" "(-32 -64 -64) (-64 -64 -64) (-64 -64 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "17" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "1527" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "1" - solid - { - "id" "1528" - side - { - "id" "958" - "plane" "(-32 -64 -32) (-32 64 -32) (0 64 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "957" - "plane" "(-32 64 -64) (-32 -64 -64) (0 -64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "956" - "plane" "(-32 -64 -64) (-32 64 -64) (-32 64 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "955" - "plane" "(0 64 -64) (0 -64 -64) (0 -64 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "954" - "plane" "(-32 64 -64) (0 64 -64) (0 64 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "953" - "plane" "(0 -64 -64) (-32 -64 -64) (-32 -64 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "17" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "1537" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "1" - solid - { - "id" "1538" - side - { - "id" "970" - "plane" "(0 -64 -16) (0 64 -16) (24 64 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "969" - "plane" "(0 64 -64) (0 -64 -64) (24 -64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "968" - "plane" "(0 -64 -64) (0 64 -64) (0 64 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "967" - "plane" "(24 64 -64) (24 -64 -64) (24 -64 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "966" - "plane" "(0 64 -64) (24 64 -64) (24 64 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "965" - "plane" "(24 -64 -64) (0 -64 -64) (0 -64 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "17" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "1547" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "1" - solid - { - "id" "1548" - side - { - "id" "982" - "plane" "(24 -64 -8) (24 64 -8) (40 64 -8)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "981" - "plane" "(24 64 -64) (24 -64 -64) (40 -64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "980" - "plane" "(24 -64 -64) (24 64 -64) (24 64 -8)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "979" - "plane" "(40 64 -64) (40 -64 -64) (40 -64 -8)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "978" - "plane" "(24 64 -64) (40 64 -64) (40 64 -8)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "977" - "plane" "(40 -64 -64) (24 -64 -64) (24 -64 -8)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 -32] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "17" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "1555" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "1" - solid - { - "id" "1556" - side - { - "id" "994" - "plane" "(40 -64 1.90735e-006) (40 64 1.90735e-006) (48 64 1.90735e-006)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "993" - "plane" "(40 64 -64) (40 -64 -64) (48 -64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "992" - "plane" "(40 -64 -64) (40 64 -64) (40 64 1.90735e-006)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "991" - "plane" "(48 64 -64) (48 -64 -64) (48 -64 1.90735e-006)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "990" - "plane" "(40 64 -64) (48 64 -64) (48 64 1.90735e-006)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "989" - "plane" "(48 -64 -64) (40 -64 -64) (40 -64 1.90735e-006)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 -32] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "17" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "1561" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "1" - solid - { - "id" "1562" - side - { - "id" "1006" - "plane" "(48 -64 -8) (48 64 -8) (56 64 -8)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1005" - "plane" "(48 64 -64) (48 -64 -64) (56 -64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1004" - "plane" "(48 -64 -64) (48 64 -64) (48 64 -8)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1003" - "plane" "(56 64 -64) (56 -64 -64) (56 -64 -8)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1002" - "plane" "(48 64 -64) (56 64 -64) (56 64 -8)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1001" - "plane" "(56 -64 -64) (48 -64 -64) (48 -64 -8)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "17" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "1565" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "0" - "coll_temporary" "1" - solid - { - "id" "1566" - side - { - "id" "1018" - "plane" "(56 -64 -24) (56 64 -24) (64 64 -24)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1017" - "plane" "(56 64 -64) (56 -64 -64) (64 -64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1016" - "plane" "(56 -64 -64) (56 64 -64) (56 64 -24)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1015" - "plane" "(64 64 -64) (64 -64 -64) (64 -64 -24)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1014" - "plane" "(56 64 -64) (64 64 -64) (64 64 -24)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1013" - "plane" "(64 -64 -64) (56 -64 -64) (56 -64 -24)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 -32] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "17" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "1571" - "classname" "bee2_template_conf" - "detail_auto_visgroup" "0" - "discard_brushes" "0" - "temp_type" "default" - "template_id" "BEE2_ANGLED_PAN_CLEAN_COLL" - "origin" "0 0 64" - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 500]" - } -} -entity -{ - "id" "524" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "1" - "coll_temporary" "0" - solid - { - "id" "499" - side - { - "id" "186" - "plane" "(16 64 32) (32 64 32) (32 -64 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "185" - "plane" "(16 -64 -1.90735e-006) (32 -64 -1.90735e-006) (32 64 -1.90735e-006)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "184" - "plane" "(16 64 32) (16 -64 32) (16 -64 -1.90735e-006)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "183" - "plane" "(32 64 -1.90735e-006) (32 -64 -1.90735e-006) (32 -64 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "182" - "plane" "(32 64 32) (16 64 32) (16 64 -1.90735e-006)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "181" - "plane" "(32 -64 -1.90735e-006) (16 -64 -1.90735e-006) (16 -64 32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "1" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "528" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "1" - "coll_temporary" "0" - solid - { - "id" "498" - side - { - "id" "192" - "plane" "(0 -64 16) (16 -64 16) (16 -64 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "191" - "plane" "(0 64 -16) (16 64 -16) (16 64 16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "190" - "plane" "(0 -64 16) (0 -64 -16) (0 64 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "189" - "plane" "(16 64 16) (16 64 -16) (16 -64 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "188" - "plane" "(16 -64 16) (0 -64 16) (0 64 16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "187" - "plane" "(16 64 -16) (0 64 -16) (0 -64 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "1" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 5000]" - } -} -entity -{ - "id" "532" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "1" - "coll_temporary" "0" - solid - { - "id" "503" - side - { - "id" "198" - "plane" "(-16 -64 -4.76837e-007) (0 -64 -4.76837e-007) (0 -64 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "197" - "plane" "(-16 64 -32) (0 64 -32) (0 64 2.38419e-006)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "196" - "plane" "(-16 -64 -4.76837e-007) (-16 -64 -32) (-16 64 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "195" - "plane" "(0 64 2.38419e-006) (0 64 -32) (0 -64 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "194" - "plane" "(0 -64 -4.76837e-007) (-16 -64 -4.76837e-007) (-16 64 2.38419e-006)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "193" - "plane" "(0 64 -32) (-16 64 -32) (-16 -64 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "1" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 5500]" - } -} -entity -{ - "id" "536" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "1" - "coll_temporary" "0" - solid - { - "id" "505" - side - { - "id" "204" - "plane" "(-32 -64 -16) (-16 -64 -16) (-16 -64 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "203" - "plane" "(-32 64 -48) (-16 64 -48) (-16 64 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "202" - "plane" "(-32 -64 -16) (-32 -64 -48) (-32 64 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "201" - "plane" "(-16 64 -16) (-16 64 -48) (-16 -64 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "200" - "plane" "(-16 -64 -16) (-32 -64 -16) (-32 64 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "199" - "plane" "(-16 64 -48) (-32 64 -48) (-32 -64 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "1" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 6000]" - } -} -entity -{ - "id" "540" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "1" - "coll_temporary" "0" - solid - { - "id" "497" - side - { - "id" "210" - "plane" "(-48 -64 -32) (-32 -64 -32) (-32 -64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "209" - "plane" "(-48 64 -64) (-32 64 -64) (-32 64 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "208" - "plane" "(-48 -64 -32) (-48 -64 -64) (-48 64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "207" - "plane" "(-32 64 -32) (-32 64 -64) (-32 -64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "206" - "plane" "(-32 -64 -32) (-48 -64 -32) (-48 64 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "205" - "plane" "(-32 64 -64) (-48 64 -64) (-48 -64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "1" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 6500]" - } -} -entity -{ - "id" "544" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "1" - "coll_temporary" "0" - solid - { - "id" "508" - side - { - "id" "216" - "plane" "(-64 -64 -48) (-48 -64 -48) (-48 -64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "215" - "plane" "(-64 64 -64) (-48 64 -64) (-48 64 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "214" - "plane" "(-64 -64 -48) (-64 -64 -64) (-64 64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "213" - "plane" "(-48 64 -48) (-48 64 -64) (-48 -64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "212" - "plane" "(-48 -64 -48) (-64 -64 -48) (-64 64 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "211" - "plane" "(-48 64 -64) (-64 64 -64) (-64 -64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "1" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 7000]" - } -} -entity -{ - "id" "729" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "1" - "coll_temporary" "0" - solid - { - "id" "730" - side - { - "id" "312" - "plane" "(16 62 0) (52 62 0) (52 -62 0)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "311" - "plane" "(16 -62 -16) (52 -62 -16) (52 62 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "310" - "plane" "(16 62 0) (16 -62 0) (16 -62 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 -8] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "309" - "plane" "(52 62 -16) (52 -62 -16) (52 -62 0)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 8] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "308" - "plane" "(52 62 0) (16 62 0) (16 62 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "307" - "plane" "(52 -62 -16) (16 -62 -16) (16 -62 0)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "3" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "745" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "1" - "coll_temporary" "0" - solid - { - "id" "746" - side - { - "id" "336" - "plane" "(-16 62 -16) (40 62 -16) (40 -62 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "335" - "plane" "(-16 -62 -32) (40 -62 -32) (40 62 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "334" - "plane" "(-16 62 -16) (-16 -62 -16) (-16 -62 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 -8] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "333" - "plane" "(40 62 -32) (40 -62 -32) (40 -62 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 8] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "332" - "plane" "(40 62 -16) (-16 62 -16) (-16 62 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "331" - "plane" "(40 -62 -32) (-16 -62 -32) (-16 -62 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "3" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "755" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "1" - "coll_temporary" "0" - solid - { - "id" "756" - side - { - "id" "372" - "plane" "(-64 62 -48) (-16 62 -48) (-16 -62 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "371" - "plane" "(-64 -62 -64) (-16 -62 -64) (-16 62 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "370" - "plane" "(-64 62 -48) (-64 -62 -48) (-64 -62 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 -8] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "369" - "plane" "(-16 62 -64) (-16 -62 -64) (-16 -62 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 8] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "368" - "plane" "(-16 62 -48) (-64 62 -48) (-64 62 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "367" - "plane" "(-16 -62 -64) (-64 -62 -64) (-64 -62 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "3" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "763" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "1" - "coll_temporary" "0" - solid - { - "id" "764" - side - { - "id" "384" - "plane" "(-64 64 -32) (-48 64 -32) (-48 -64 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "383" - "plane" "(-64 -64 -64) (-48 -64 -64) (-48 64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "382" - "plane" "(-64 64 -32) (-64 -64 -32) (-64 -64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "381" - "plane" "(-48 64 -64) (-48 -64 -64) (-48 -64 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "380" - "plane" "(-48 64 -32) (-64 64 -32) (-64 64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "379" - "plane" "(-48 -64 -64) (-64 -64 -64) (-64 -64 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "4" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "771" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "1" - "coll_temporary" "0" - solid - { - "id" "772" - side - { - "id" "396" - "plane" "(-48 64 -16) (-32 64 -16) (-32 -64 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "395" - "plane" "(-48 -64 -48) (-32 -64 -48) (-32 64 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "394" - "plane" "(-48 64 -16) (-48 -64 -16) (-48 -64 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "393" - "plane" "(-32 64 -48) (-32 -64 -48) (-32 -64 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "392" - "plane" "(-32 64 -16) (-48 64 -16) (-48 64 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "391" - "plane" "(-32 -64 -48) (-48 -64 -48) (-48 -64 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "4" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "775" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "1" - "coll_temporary" "0" - solid - { - "id" "776" - side - { - "id" "408" - "plane" "(-32 64 16) (-16 64 16) (-16 -64 16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "407" - "plane" "(-32 -64 -32) (-16 -64 -32) (-16 64 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "406" - "plane" "(-32 64 16) (-32 -64 16) (-32 -64 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "405" - "plane" "(-16 64 -32) (-16 -64 -32) (-16 -64 16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "404" - "plane" "(-16 64 16) (-32 64 16) (-32 64 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "403" - "plane" "(-16 -64 -32) (-32 -64 -32) (-32 -64 16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "4" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "781" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "1" - "coll_temporary" "0" - solid - { - "id" "782" - side - { - "id" "420" - "plane" "(-16 64 48) (0 64 48) (0 -64 48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "419" - "plane" "(-16 -64 0) (0 -64 0) (0 64 0)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "418" - "plane" "(-16 64 48) (-16 -64 48) (-16 -64 0)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "417" - "plane" "(0 64 0) (0 -64 0) (0 -64 48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "416" - "plane" "(0 64 48) (-16 64 48) (-16 64 0)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "415" - "plane" "(0 -64 0) (-16 -64 0) (-16 -64 48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "4" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "787" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "1" - "coll_temporary" "0" - solid - { - "id" "788" - side - { - "id" "432" - "plane" "(-32 62 -32) (16 62 -32) (16 -62 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "431" - "plane" "(-32 -62 -48) (16 -62 -48) (16 62 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "430" - "plane" "(-32 62 -32) (-32 -62 -32) (-32 -62 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 -8] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "429" - "plane" "(16 62 -48) (16 -62 -48) (16 -62 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 8] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "428" - "plane" "(16 62 -32) (-32 62 -32) (-32 62 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "427" - "plane" "(16 -62 -48) (-32 -62 -48) (-32 -62 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "3" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "801" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "1" - "coll_temporary" "0" - solid - { - "id" "802" - side - { - "id" "444" - "plane" "(-64 64 64) (-48 64 64) (-48 -64 64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "443" - "plane" "(-64 -64 -64) (-48 -64 -64) (-48 64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "442" - "plane" "(-64 64 64) (-64 -64 64) (-64 -64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "441" - "plane" "(-48 64 -64) (-48 -64 -64) (-48 -64 64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "440" - "plane" "(-48 64 64) (-64 64 64) (-64 64 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "439" - "plane" "(-48 -64 -64) (-64 -64 -64) (-64 -64 64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "5" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "862" - "classname" "prop_static" - "angles" "0 180 0" - "disableselfshadowing" "0" - "disableshadows" "0" - "disablevertexlighting" "0" - "disablex360" "0" - "drawinfastreflection" "0" - "fademaxdist" "0" - "fademindist" "-1" - "fadescale" "1" - "ignorenormals" "0" - "maxcpulevel" "0" - "maxdxlevel" "0" - "maxgpulevel" "0" - "mincpulevel" "0" - "mindxlevel" "0" - "mingpulevel" "0" - "model" "models/bee2/panels/static_norm_30.mdl" - "renderamt" "255" - "rendercolor" "255 255 255" - "skin" "0" - "solid" "6" - "origin" "0 0 -64" - editor - { - "color" "255 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 7500]" - } -} -entity -{ - "id" "910" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "1" - "coll_temporary" "0" - solid - { - "id" "911" - side - { - "id" "456" - "plane" "(0 48 -48) (32 48 -48) (32 -48 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "455" - "plane" "(0 -48 -64) (32 -48 -64) (32 48 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "454" - "plane" "(0 48 -48) (0 -48 -48) (0 -48 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "453" - "plane" "(32 48 -64) (32 -48 -64) (32 -48 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "452" - "plane" "(32 48 -48) (0 48 -48) (0 48 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "451" - "plane" "(32 -48 -64) (0 -48 -64) (0 -48 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "3" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "950" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "1" - "coll_temporary" "0" - solid - { - "id" "951" - side - { - "id" "468" - "plane" "(-64 48 -64) (48 48 -64) (48 -48 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "467" - "plane" "(-64 -48 -128) (48 -48 -128) (48 48 -128)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -8] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "466" - "plane" "(-64 48 -64) (-64 -48 -64) (-64 -48 -128)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 -8] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "465" - "plane" "(48 48 -128) (48 -48 -128) (48 -48 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 8] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "464" - "plane" "(48 48 -64) (-64 48 -64) (-64 48 -128)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "463" - "plane" "(48 -48 -128) (-64 -48 -128) (-64 -48 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "973" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "1" - "coll_temporary" "0" - solid - { - "id" "974" - side - { - "id" "480" - "plane" "(0 -40 -16) (16 -40 -16) (16 -40 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "479" - "plane" "(0 40 -48) (16 40 -48) (16 40 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "478" - "plane" "(0 -40 -16) (0 -40 -48) (0 40 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "477" - "plane" "(16 40 -16) (16 40 -48) (16 -40 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "476" - "plane" "(16 -40 -16) (0 -40 -16) (0 40 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "475" - "plane" "(16 40 -48) (0 40 -48) (0 -40 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "1" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 5500]" - } -} -entity -{ - "id" "985" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "1" - "coll_temporary" "0" - solid - { - "id" "986" - side - { - "id" "492" - "plane" "(16 -40 -32) (32 -40 -32) (32 -40 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "491" - "plane" "(16 40 -64) (32 40 -64) (32 40 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "490" - "plane" "(16 -40 -32) (16 -40 -64) (16 40 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "489" - "plane" "(32 40 -32) (32 40 -64) (32 -40 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "488" - "plane" "(32 -40 -32) (16 -40 -32) (16 40 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "487" - "plane" "(32 40 -64) (16 40 -64) (16 -40 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "1" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 5500]" - } -} -entity -{ - "id" "993" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "1" - "coll_temporary" "0" - solid - { - "id" "994" - side - { - "id" "504" - "plane" "(32 -40 -48) (48 -40 -48) (48 -40 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "503" - "plane" "(32 40 -64) (48 40 -64) (48 40 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "502" - "plane" "(32 -40 -48) (32 -40 -64) (32 40 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 -1 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "501" - "plane" "(48 40 -48) (48 40 -64) (48 -40 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "500" - "plane" "(48 -40 -48) (32 -40 -48) (32 40 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "499" - "plane" "(48 40 -64) (32 40 -64) (32 -40 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "1" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 5500]" - } -} -entity -{ - "id" "1022" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "1" - "coll_temporary" "0" - solid - { - "id" "1023" - side - { - "id" "516" - "plane" "(-16 40 0) (0 40 0) (0 -40 0)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "515" - "plane" "(-16 -40 -32) (0 -40 -32) (0 40 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "514" - "plane" "(-16 40 0) (-16 -40 0) (-16 -40 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "513" - "plane" "(0 40 -32) (0 -40 -32) (0 -40 0)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "512" - "plane" "(0 40 0) (-16 40 0) (-16 40 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "511" - "plane" "(0 -40 -32) (-16 -40 -32) (-16 -40 0)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "4" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "1034" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "1" - "coll_temporary" "0" - solid - { - "id" "1035" - side - { - "id" "528" - "plane" "(0 40 -16) (16 40 -16) (16 -40 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "527" - "plane" "(0 -40 -40) (16 -40 -40) (16 40 -40)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "526" - "plane" "(0 40 -16) (0 -40 -16) (0 -40 -40)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "525" - "plane" "(16 40 -40) (16 -40 -40) (16 -40 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "524" - "plane" "(16 40 -16) (0 40 -16) (0 40 -40)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "523" - "plane" "(16 -40 -40) (0 -40 -40) (0 -40 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "4" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "1038" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "1" - "coll_temporary" "0" - solid - { - "id" "1039" - side - { - "id" "540" - "plane" "(16 40 -32) (40 40 -32) (40 -40 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "539" - "plane" "(16 -40 -64) (40 -40 -64) (40 40 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "538" - "plane" "(16 40 -32) (16 -40 -32) (16 -40 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "537" - "plane" "(40 40 -64) (40 -40 -64) (40 -40 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "536" - "plane" "(40 40 -32) (16 40 -32) (16 40 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "535" - "plane" "(40 -40 -64) (16 -40 -64) (16 -40 -32)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "4" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "1046" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "1" - "coll_temporary" "0" - solid - { - "id" "1047" - side - { - "id" "552" - "plane" "(0 64 48) (8 64 48) (8 -64 48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "551" - "plane" "(0 -64 24) (8 -64 24) (8 64 24)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "550" - "plane" "(0 64 48) (0 -64 48) (0 -64 24)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "549" - "plane" "(8 64 24) (8 -64 24) (8 -64 48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "548" - "plane" "(8 64 48) (0 64 48) (0 64 24)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "547" - "plane" "(8 -64 24) (0 -64 24) (0 -64 48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 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" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "4" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "1067" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "1" - "coll_temporary" "0" - solid - { - "id" "1068" - side - { - "id" "564" - "plane" "(-48 40 16) (-8 40 16) (-8 -40 16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "563" - "plane" "(-48 -40 -16) (-8 -40 -16) (-8 40 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "562" - "plane" "(-48 40 16) (-48 -40 16) (-48 -40 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "561" - "plane" "(-8 40 -16) (-8 -40 -16) (-8 -40 16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "560" - "plane" "(-8 40 16) (-48 40 16) (-48 40 -16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "559" - "plane" "(-8 -40 -16) (-48 -40 -16) (-48 -40 16)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "color" "220 30 220" + "visgroupid" "1" + "visgroupshown" "0" + "visgroupautoshown" "1" + "logicalpos" "[0 5500]" + } + } +} +hidden +{ + entity + { + "id" "1038" + "classname" "bee2_collision_volume" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_solid" "1" + "coll_temporary" "0" + hidden + { + solid + { + "id" "1655" + side + { + "id" "1049" + "plane" "(-19 40 -10) (-15 40 -3) (-15 -40 -3)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1048" + "plane" "(28 -40 -64) (42 -40 -64) (42 40 -64)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1047" + "plane" "(28 40 -64) (-19 40 -10) (-19 -40 -10)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1046" + "plane" "(-15 40 -3) (33.9835 40 -42.9568) (33.9835 -40 -42.9568)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1045" + "plane" "(-19 40 -10) (28 40 -64) (42 40 -64)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1044" + "plane" "(28 -40 -64) (-19 -40 -10) (-15 -40 -3)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1043" + "plane" "(42 -40 -64) (33.9835 -40 -42.9568) (33.9835 40 -42.9568)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } } editor { "color" "220 30 220" - "visgroupshown" "1" + "visgroupid" "4" + "visgroupshown" "0" "visgroupautoshown" "1" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "5" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "1079" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "1" - "coll_temporary" "0" - solid - { - "id" "1080" - side - { - "id" "576" - "plane" "(-8 40 0) (32 40 0) (32 -40 0)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "575" - "plane" "(-8 -40 -40) (32 -40 -40) (32 40 -40)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "574" - "plane" "(-8 40 0) (-8 -40 0) (-8 -40 -40)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "573" - "plane" "(32 40 -40) (32 -40 -40) (32 -40 0)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "572" - "plane" "(32 40 0) (-8 40 0) (-8 40 -40)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "571" - "plane" "(32 -40 -40) (-8 -40 -40) (-8 -40 0)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 -32] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "1046" + "classname" "bee2_collision_volume" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_solid" "1" + "coll_temporary" "0" + hidden + { + solid + { + "id" "1047" + side + { + "id" "552" + "plane" "(0 64 47) (11 64 41) (11 -64 41)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "551" + "plane" "(-64 -64 -64) (-49 -64 -64) (-49 64 -64)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "550" + "plane" "(-64 64 -64) (0 64 47) (0 -64 47)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "549" + "plane" "(-49 -64 -64) (11 -64 41) (11 64 41)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "548" + "plane" "(-49 64 -64) (11 64 41) (0 64 47)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "547" + "plane" "(-64 -64 -64) (0 -64 47) (11 -64 41)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } } editor { "color" "220 30 220" - "visgroupshown" "1" + "visgroupid" "4" + "visgroupshown" "0" "visgroupautoshown" "1" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "5" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "1091" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "1" - "coll_temporary" "0" - solid - { - "id" "1092" - side - { - "id" "588" - "plane" "(0 40 -40) (40 40 -40) (40 -40 -40)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "587" - "plane" "(0 -40 -64) (40 -40 -64) (40 40 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "586" - "plane" "(0 40 -40) (0 -40 -40) (0 -40 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "585" - "plane" "(40 40 -64) (40 -40 -64) (40 -40 -40)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "584" - "plane" "(40 40 -40) (0 40 -40) (0 40 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "583" - "plane" "(40 -40 -64) (0 -40 -64) (0 -40 -40)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "1079" + "classname" "bee2_collision_volume" + "coll_antlines" "0" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_grating" "0" + "coll_oob" "0" + "coll_solid" "1" + "coll_temporary" "0" + hidden + { + solid + { + "id" "1080" + side + { + "id" "576" + "plane" "(-2 40 -16) (8 40 -10) (8 -40 -10)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "575" + "plane" "(10 -40 -38) (22 -40 -30) (22 40 -30)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "574" + "plane" "(10 40 -38) (-2 40 -16) (-2 -40 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "573" + "plane" "(22 -40 -30) (8 -40 -10) (8 40 -10)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "572" + "plane" "(22 40 -30) (8 40 -10) (-2 40 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "571" + "plane" "(10 -40 -38) (-2 -40 -16) (8 -40 -10)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } } editor { "color" "220 30 220" - "visgroupshown" "1" + "visgroupid" "5" + "visgroupshown" "0" "visgroupautoshown" "1" - } - } - editor - { - "color" "220 30 220" - "visgroupid" "5" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } -} -entity -{ - "id" "1099" - "classname" "bee2_collision_bbox" - "coll_antline" "0" - "coll_bridge" "0" - "coll_decoration" "0" - "coll_fizzler" "0" - "coll_glass" "0" - "coll_grate" "0" - "coll_solid" "1" - "coll_temporary" "0" - solid - { - "id" "1100" - side - { - "id" "600" - "plane" "(-48 40 -48) (-32 40 -48) (-32 -40 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "599" - "plane" "(-48 -40 -64) (-32 -40 -64) (-32 40 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "598" - "plane" "(-48 40 -48) (-48 -40 -48) (-48 -40 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "597" - "plane" "(-32 40 -64) (-32 -40 -64) (-32 -40 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "596" - "plane" "(-32 40 -48) (-48 40 -48) (-48 40 -64)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "595" - "plane" "(-32 -40 -64) (-48 -40 -64) (-48 -40 -48)" - "material" "TOOLS/TOOLSCLIP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "1091" + "classname" "bee2_collision_volume" + "coll_bridge" "0" + "coll_decoration" "0" + "coll_fizzler" "0" + "coll_glass" "0" + "coll_solid" "1" + "coll_temporary" "0" + hidden + { + solid + { + "id" "1092" + side + { + "id" "588" + "plane" "(0 40 -44) (22 40 -30) (22 -40 -30)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "587" + "plane" "(12 -40 -64) (44 -40 -64) (44 40 -64)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "586" + "plane" "(12 40 -64) (0 40 -44) (0 -40 -44)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "585" + "plane" "(44 -40 -64) (22 -40 -30) (22 40 -30)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "584" + "plane" "(44 40 -64) (22 40 -30) (0 40 -44)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "583" + "plane" "(12 -40 -64) (0 -40 -44) (22 -40 -30)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "0" + "visgroupautoshown" "1" + } + } } editor { "color" "220 30 220" - "visgroupshown" "1" + "visgroupid" "5" + "visgroupshown" "0" "visgroupautoshown" "1" + "logicalpos" "[0 4500]" } } - editor - { - "color" "220 30 220" - "visgroupid" "5" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 4500]" - } } cameras { diff --git a/packages/valve/music/info.txt b/packages/valve/music/info.txt index 36e5ac775e..de1d16e327 100644 --- a/packages/valve/music/info.txt +++ b/packages/valve/music/info.txt @@ -1060,12 +1060,18 @@ "snd" "music/sp_a4_tb_catch_c1c.wav" } } + "Volume" + { + "Base" "0.75" + "SpeedGel" "1.0" + "BounceGel" "1.0" + } "Children" { "tBeam" "VALVE_EXC_FUNNEL" } } - + "Music" { "ID" "VALVE_WHAT_HAS_HE_DONE" @@ -1085,7 +1091,7 @@ "SpeedGel" "VALVE_GEL_FINALE" } } - + "Music" { "ID" "VALVE_EXC_FUNNEL_FINALE" @@ -1104,7 +1110,7 @@ "sync_funnel" "1" } } - + "Music" { "ID" "VALVE_GEL_FINALE" @@ -1127,7 +1133,7 @@ "SpeedGel" "music/sp_a4_finale4_z2.wav" } } - + "Music" { "ID" "VALVE_LOVE_CONSTRUCT" diff --git a/packages/valve/test_elements/info.txt b/packages/valve/test_elements/info.txt index b6db744b80..5763eed1b2 100644 --- a/packages/valve/test_elements/info.txt +++ b/packages/valve/test_elements/info.txt @@ -36,6 +36,7 @@ This also includes Reflection Gel (since this is implemented in the original Gel "Min" "0" "Max" "5" "Step" "0.1" + "zeroOff" "1" "Label" "Laser Cube Wakeup Timer" "Tooltip" "Periodically wake up Laser Cubes, to prevent the laser cube floating glitch. This however will cause all laser cubes to \"jump\" around, potentially knocking them out of alignment with targets." @@ -80,6 +81,8 @@ This doesn't affect cube nudging. When the bomb explodes like this, it does not "" "" "" "* Place Propulsion or Repulsion Gel splats on top of Cubes or Droppers to make them spawn already painted with that color. " "" " Repulsion Gel will be applied as it leaves the dropper." + "" " The splatter is removed automatically, place a second to also paint the surface." + "" " Splats on the dropper are prioritised over the cube. A Cleansing Gel splat can be used on the ceiling to get a non-painted cube to drop onto a gelled floor." "" "* Set the `Timer Delay` on a dropperless Cube and Dropper to the same value to link them together. " "" " The cube will then respawn from the dropper." "" " This is useful to precisely position cubes, or respawn at a more convenient location. " diff --git a/packages/valve/test_elements/items/cube/editoritems.txt b/packages/valve/test_elements/items/cube/editoritems.txt index e92874700c..e68f073b32 100644 --- a/packages/valve/test_elements/items/cube/editoritems.txt +++ b/packages/valve/test_elements/items/cube/editoritems.txt @@ -258,6 +258,10 @@ } "TargetName" "cu" + "Collisions" + { + // Nothing. + } "OccupiedVoxels" { "Voxel" diff --git a/packages/valve/test_elements/resources/instances/clean/items/cube/dropper_shaft_long.vmf b/packages/valve/test_elements/resources/instances/clean/items/cube/dropper_shaft_long.vmf index 7ec4056dfa..5b924e9424 100644 --- a/packages/valve/test_elements/resources/instances/clean/items/cube/dropper_shaft_long.vmf +++ b/packages/valve/test_elements/resources/instances/clean/items/cube/dropper_shaft_long.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8973" - "mapversion" "362" + "editorbuild" "9672" + "mapversion" "363" "formatversion" "100" "prefab" "0" } @@ -26,7 +26,7 @@ viewsettings world { "id" "1" - "mapversion" "362" + "mapversion" "363" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -2673,7 +2673,7 @@ entity "OnEndTouchAll" "cube_dropper_modelSetAnimationitem_dropper_close0.1-1" "OnEndTouchAll" "cube_dropper_box_reenter_clipEnable0-1" "OnEndTouchAll" "spawn_manFireUser20.2-1" - "OnEndTouchAll" "close_trigDisable0.2-1" + "OnEndTouchAll" "close_trigDisable0-1" "OnEndTouchAll" "cube_fadeEnable0.7-1" "OnEndTouchAll" "cube_dropper_box_settle_triggerEnable0-1" "OnEndTouchAll" "cube_dropper_modelSkin00.1-1" diff --git a/packages/valve/test_elements/resources/instances/clean/items/cube/dropper_shaft_short.vmf b/packages/valve/test_elements/resources/instances/clean/items/cube/dropper_shaft_short.vmf index cd41a3e92e..c04bc4d48d 100644 --- a/packages/valve/test_elements/resources/instances/clean/items/cube/dropper_shaft_short.vmf +++ b/packages/valve/test_elements/resources/instances/clean/items/cube/dropper_shaft_short.vmf @@ -1,8 +1,8 @@ versioninfo { "editorversion" "400" - "editorbuild" "8973" - "mapversion" "354" + "editorbuild" "9672" + "mapversion" "356" "formatversion" "100" "prefab" "0" } @@ -26,7 +26,7 @@ viewsettings world { "id" "1" - "mapversion" "354" + "mapversion" "356" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -2597,7 +2597,7 @@ entity "OnEndTouchAll" "cube_dropper_modelSetAnimationitem_dropper_close0.1-1" "OnEndTouchAll" "cube_dropper_box_reenter_clipEnable0-1" "OnEndTouchAll" "spawn_manFireUser20.2-1" - "OnEndTouchAll" "close_trigDisable0.2-1" + "OnEndTouchAll" "close_trigDisable0-1" "OnEndTouchAll" "cube_fadeEnable1.36-1" "OnEndTouchAll" "cube_dropper_box_settle_triggerEnable0-1" "OnEndTouchAll" "cube_dropper_modelSkin00.1-1"