From: Terri00 Date: Fri, 15 Mar 2019 14:57:51 +0000 (+0000) Subject: ao, shadows, height override entities, vdf multiple keyvalue patch, cover visgroup X-Git-Url: https://skaterift.com/git/?a=commitdiff_plain;h=4c4dcf4938e4b6ba8adac2516e4bc4c68b8fe755;p=tar-legacy.git ao, shadows, height override entities, vdf multiple keyvalue patch, cover visgroup --- diff --git a/MCDV/buyzone-bombtargets.png b/MCDV/buyzone-bombtargets.png index 6c2aa16..182f545 100644 Binary files a/MCDV/buyzone-bombtargets.png and b/MCDV/buyzone-bombtargets.png differ diff --git a/MCDV/main.cpp b/MCDV/main.cpp index ffe4afb..4fd51d7 100644 --- a/MCDV/main.cpp +++ b/MCDV/main.cpp @@ -63,9 +63,22 @@ std::string m_mapfile_name; std::string m_overviews_folder; std::string m_resources_folder; +#ifdef _DEBUG bool m_outputMasks = true; bool m_onlyOutputMasks; +bool m_comp_shadows_enable = true; +bool m_comp_ao_enable = true; +#endif + +#ifndef _DEBUG +bool m_outputMasks; +bool m_onlyOutputMasks; + +bool m_comp_shadows_enable; +bool m_comp_ao_enable; +#endif + uint32_t m_renderWidth = 1024; uint32_t m_renderHeight = 1024; @@ -81,6 +94,9 @@ int app(int argc, const char** argv) { ("d,dumpMasks", "Toggles whether auto radar should output mask images (resources/map_file.resources/)") ("o,onlyMasks", "Specift whether auto radar should only output mask images and do nothing else (resources/map_file.resources)") + ("ao", "Turn on AO in the compisotor") + ("shadows", "Turn on Shadows in the compositor") + ("w,width", "Render width in pixels (experimental)", cxxopts::value()->default_value("1024")) ("h,height", "Render height in pixels (experimental)", cxxopts::value()->default_value("1024")) @@ -121,6 +137,9 @@ int app(int argc, const char** argv) { m_renderWidth = result["width"].as(); m_renderHeight = result["height"].as(); + m_comp_ao_enable = result["ao"].as(); + m_comp_shadows_enable = result["shadows"].as(); + #endif //Derive the ones @@ -135,6 +154,9 @@ int app(int argc, const char** argv) { std::cout << " Output to game? " << (!m_onlyOutputMasks ? "YES" : "NO") << "\n\n"; std::cout << " Game path: " << m_game_path << "\n"; std::cout << " Map path: " << m_mapfile_path << "\n"; + std::cout << "\n -------- RENDER SETTINGS -------\n"; + std::cout << " AO: " << (m_comp_ao_enable ? "YES" : "NO") << "\n"; + std::cout << " Shadows: " << (m_comp_shadows_enable ? "YES" : "NO") << "\n"; std::cout << "Initializing OpenGL\n"; @@ -248,10 +270,15 @@ int app(int argc, const char** argv) { std::vector tavr_solids = vmf_main.getAllBrushesInVisGroup("tavr_layout"); std::vector tavr_solids_negative = vmf_main.getAllBrushesInVisGroup("tavr_negative"); std::vector tavr_entire_brushlist = vmf_main.getAllRenderBrushes(); + std::vector tavr_cover = vmf_main.getAllBrushesInVisGroup("tavr_cover"); for (auto && v : tavr_cover) v->temp_mark = true; + //std::vector tavr_solids_funcbrush = vmf_main.getAllBrushesByClassName("func_brush"); std::vector tavr_buyzones = vmf_main.getAllBrushesByClassName("func_buyzone"); std::vector tavr_bombtargets = vmf_main.getAllBrushesByClassName("func_bomb_target"); + std::vector tavr_ent_tavr_height_min = vmf_main.findEntitiesByClassName("tavr_height_min"); + std::vector tavr_ent_tavr_height_max = vmf_main.findEntitiesByClassName("tavr_height_max"); + std::cout << "done!\n"; #pragma region bounds @@ -261,6 +288,10 @@ int app(int argc, const char** argv) { float z_render_min = limits.SEL.y; float z_render_max = limits.NWU.y; + // Overide entity heights + if (tavr_ent_tavr_height_min.size()) z_render_min = tavr_ent_tavr_height_min[0]->origin.z; + if (tavr_ent_tavr_height_max.size()) z_render_max = tavr_ent_tavr_height_max[0]->origin.z; + float padding = 128.0f; float x_bounds_min = -limits.NWU.x - padding; //inflate distances slightly @@ -312,13 +343,17 @@ int app(int argc, const char** argv) { shader_depth.setFloat("write_playable", 0.0f); // Render entire map first - for (auto && brush : tavr_entire_brushlist) brush->mesh->Draw(); + for (auto && brush : tavr_entire_brushlist) { + shader_depth.setFloat("write_cover", brush->temp_mark ? 1.0f : 0.0f); + brush->mesh->Draw(); + } glClear(GL_DEPTH_BUFFER_BIT); // Render playable area over it shader_depth.setFloat("write_playable", 1.0f); for (auto && s_solid : tavr_solids) { - if(!s_solid->containsDisplacements) + shader_depth.setFloat("write_cover", s_solid->temp_mark ? 1.0f : 0.0f); + if (!s_solid->containsDisplacements) s_solid->mesh->Draw(); else { for (auto && f : s_solid->faces) { @@ -332,6 +367,7 @@ int app(int argc, const char** argv) { // Re render subtractive brushes shader_depth.setFloat("write_playable", 0.0f); for (auto && s_solid : tavr_solids_negative) { + shader_depth.setFloat("write_cover", s_solid->temp_mark ? 1.0f : 0.0f); if (!s_solid->containsDisplacements) s_solid->mesh->Draw(); else { @@ -406,7 +442,7 @@ int app(int argc, const char** argv) { glEnable(GL_DEPTH_TEST); if(m_outputMasks) - render_to_png(1024, 1024, "playable-space.png"); + render_to_png(1024, 1024, std::string(m_overviews_folder + m_mapfile_name + ".resources.playable_space.png").c_str()); std::cout << "done!\n"; #pragma endregion @@ -453,7 +489,7 @@ int app(int argc, const char** argv) { mesh_screen_quad->Draw(); if (m_outputMasks) - render_to_png(1024, 1024, "buyzone-bombtargets.png"); + render_to_png(1024, 1024, std::string(m_overviews_folder + m_mapfile_name + ".resources.buyzone_bombtargets.png").c_str()); glEnable(GL_DEPTH_TEST); std::cout << "done!\n"; @@ -469,6 +505,26 @@ int app(int argc, const char** argv) { shader_comp_main.use(); + /* Fill out shader uniforms */ + /* + vec3 bounds_NWU North-West-Upper coordinate of the playspace (worldspace) + vec3 bounds_SEL South-East-Lower coordinate of the playspace (worldspace) + **vec2 bounds_NWU_SS North-West coordinate of the playspace (screen space) + **vec2 bounds_SEL_SS South-East coordinate of the playspace (screen space) + + **vec2 pos_spawn_ct Location of the CT Spawn (0-1) + **vec2 pos_spawn_t Location of the T Spawn (0-1) + **vec2 bombsite_a Location of bomsite A (0-1) + **vec2 bombsite_b Location of bombsite B (0-1) + */ + shader_comp_main.setVec3("bounds_NWU", glm::vec3(x_bounds_min, y_bounds_max, z_render_max)); + shader_comp_main.setVec3("bounds_SEL", glm::vec3(x_bounds_max, y_bounds_min, z_render_min)); + + /* Render flags */ + shader_comp_main.setInt("cmdl_shadows_enable", m_comp_shadows_enable ? 1 : 0); + shader_comp_main.setInt("cmdl_ao_enable", m_comp_ao_enable ? 1 : 0); + + /* Bind texture samplers */ tex_background.bindOnSlot(0); shader_comp_main.setInt("tex_background", 0); @@ -495,7 +551,7 @@ int app(int argc, const char** argv) { } if (m_outputMasks) - render_to_png(1024, 1024, "test.png"); + render_to_png(1024, 1024, std::string(m_overviews_folder + m_mapfile_name + ".resources.final_raw.png").c_str()); #pragma region generate_radar_txt diff --git a/MCDV/playable-space.png b/MCDV/playable-space.png index e8b832d..67e9eee 100644 Binary files a/MCDV/playable-space.png and b/MCDV/playable-space.png differ diff --git a/MCDV/sample_stuff/de_tavr_test.vmx b/MCDV/sample_stuff/de_tavr_test.vmx index 8296fb1..607f42c 100644 --- a/MCDV/sample_stuff/de_tavr_test.vmx +++ b/MCDV/sample_stuff/de_tavr_test.vmx @@ -2,7 +2,7 @@ versioninfo { "editorversion" "400" "editorbuild" "8075" - "mapversion" "38" + "mapversion" "51" "formatversion" "100" "prefab" "0" } @@ -20,19 +20,31 @@ visgroups "visgroupid" "9" "color" "135 196 85" } + visgroup + { + "name" "tavr_negative" + "visgroupid" "13" + "color" "223 124 205" + } + visgroup + { + "name" "tavr_cover" + "visgroupid" "14" + "color" "198 223 188" + } } viewsettings { "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "8" + "nGridSpacing" "16" "bShow3DGrid" "0" } world { "id" "1" - "mapversion" "38" + "mapversion" "51" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -40,35 +52,35 @@ world "skyname" "sky_dust" solid { - "id" "346" + "id" "472" side { - "id" "429" - "plane" "(-1024 -896 29) (0 -896 232) (0 -1280 232)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "591" + "plane" "(-64 176 128) (-64 272 128) (32 272 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 -192] 0.25" + "vaxis" "[0 -1 0 320] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "428" - "plane" "(-1024 -1280 0) (0 -1280 192) (0 -896 192)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "590" + "plane" "(-64 272 0) (-64 176 0) (32 176 0)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 -192] 0.25" + "vaxis" "[0 -1 0 320] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "427" - "plane" "(-1024 -896 0) (-1024 -896 29) (-1024 -1280 29)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 0] 0.25" + "id" "589" + "plane" "(-64 176 0) (-64 272 0) (-64 272 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 -320] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -76,10 +88,10 @@ world } side { - "id" "426" - "plane" "(0 -1280 192) (0 -1280 232) (0 -896 232)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 0] 0.25" + "id" "588" + "plane" "(32 272 0) (32 176 0) (32 176 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 -320] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -87,10 +99,10 @@ world } side { - "id" "425" - "plane" "(-1024 -896 29) (-1024 -896 0) (0 -896 192)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" + "id" "587" + "plane" "(-64 272 0) (32 272 0) (32 272 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 -192] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -98,10 +110,10 @@ world } side { - "id" "424" - "plane" "(-1024 -1280 0) (-1024 -1280 29) (0 -1280 232)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" + "id" "586" + "plane" "(32 176 0) (-64 176 0) (-64 176 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 -192] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -109,43 +121,198 @@ world } editor { - "color" "0 145 202" + "color" "0 175 108" "visgroupid" "8" + "visgroupid" "14" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "347" + "id" "443" side { - "id" "435" - "plane" "(0 -1280 232) (0 -896 232) (640 -896 232)" - "material" "DEV/GRAYGRID" + "id" "507" + "plane" "(320 0 64) (320 256 64) (352 256 64)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "506" + "plane" "(320 256 0) (320 0 0) (352 0 0)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "505" + "plane" "(320 0 0) (320 256 0) (320 256 64)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 -128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "504" + "plane" "(352 256 0) (352 0 0) (352 0 64)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 -128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "503" + "plane" "(320 256 0) (352 256 0) (352 256 64)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "502" + "plane" "(352 0 0) (320 0 0) (320 0 64)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 108" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "450" + side + { + "id" "519" + "plane" "(352 0 80) (352 256 80) (384 256 80)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "518" + "plane" "(352 256 0) (352 0 0) (384 0 0)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "517" + "plane" "(352 0 0) (352 256 0) (352 256 80)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 -128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "516" + "plane" "(384 256 0) (384 0 0) (384 0 80)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 -128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "515" + "plane" "(352 256 0) (384 256 0) (384 256 80)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "514" + "plane" "(384 0 0) (352 0 0) (352 0 80)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 108" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "452" + side + { + "id" "531" + "plane" "(384 0 96) (384 256 96) (416 256 96)" + "material" "TERRI/DEV/BSP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 -1 0 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "434" - "plane" "(0 -896 188.5) (0 -1280 188.5) (640 -1280 188.5)" - "material" "DEV/GRAYGRID" + "id" "530" + "plane" "(384 256 0) (384 0 0) (416 0 0)" + "material" "TERRI/DEV/BSP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 -1 0 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "433" - "plane" "(0 -1280 188.5) (0 -896 188.5) (0 -896 232)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 0] 0.25" + "id" "529" + "plane" "(384 0 0) (384 256 0) (384 256 96)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 -128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -153,10 +320,10 @@ world } side { - "id" "432" - "plane" "(640 -896 188.5) (640 -1280 188.5) (640 -1280 232)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 0] 0.25" + "id" "528" + "plane" "(416 256 0) (416 0 0) (416 0 96)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 -128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -164,9 +331,9 @@ world } side { - "id" "431" - "plane" "(0 -896 188.5) (640 -896 188.5) (640 -896 232)" - "material" "DEV/GRAYGRID" + "id" "527" + "plane" "(384 256 0) (416 256 0) (416 256 96)" + "material" "TERRI/DEV/BSP" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -175,9 +342,9 @@ world } side { - "id" "430" - "plane" "(640 -1280 188.5) (0 -1280 188.5) (0 -1280 232)" - "material" "DEV/GRAYGRID" + "id" "526" + "plane" "(416 0 0) (384 0 0) (384 0 96)" + "material" "TERRI/DEV/BSP" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -186,7 +353,7 @@ world } editor { - "color" "0 145 202" + "color" "0 175 108" "visgroupid" "8" "visgroupshown" "1" "visgroupautoshown" "1" @@ -194,35 +361,266 @@ world } solid { - "id" "355" + "id" "454" side { - "id" "447" - "plane" "(640 -1280 232) (640 -384 232) (1088 -384 232)" - "material" "DEV/GRAYGRID" + "id" "543" + "plane" "(416 0 112) (416 256 112) (448 256 112)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "542" + "plane" "(416 256 0) (416 0 0) (448 0 0)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "541" + "plane" "(416 0 0) (416 256 0) (416 256 112)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 -128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "540" + "plane" "(448 256 0) (448 0 0) (448 0 112)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 -128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "539" + "plane" "(416 256 0) (448 256 0) (448 256 112)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "538" + "plane" "(448 0 0) (416 0 0) (416 0 112)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 108" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "456" + side + { + "id" "555" + "plane" "(448 0 128) (448 256 128) (480 256 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "554" + "plane" "(448 256 0) (448 0 0) (480 0 0)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "553" + "plane" "(448 0 0) (448 256 0) (448 256 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 -128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "552" + "plane" "(480 256 0) (480 0 0) (480 0 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 -128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "551" + "plane" "(448 256 0) (480 256 0) (480 256 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "550" + "plane" "(480 0 0) (448 0 0) (448 0 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 108" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "458" + side + { + "id" "567" + "plane" "(480 0 144) (480 256 144) (512 256 144)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "566" + "plane" "(480 256 0) (480 0 0) (512 0 0)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 -1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "565" + "plane" "(480 0 0) (480 256 0) (480 256 144)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 -128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "564" + "plane" "(512 256 0) (512 0 0) (512 0 144)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 -128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "563" + "plane" "(480 256 0) (512 256 0) (512 256 144)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "562" + "plane" "(512 0 0) (480 0 0) (480 0 144)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 108" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "460" + side + { + "id" "579" + "plane" "(512 0 160) (512 256 160) (752 256 160)" + "material" "TERRI/DEV/BSP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 -1 0 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "446" - "plane" "(640 -384 188.5) (640 -1280 188.5) (1088 -1280 188.5)" - "material" "DEV/GRAYGRID" + "id" "578" + "plane" "(512 256 0) (512 0 0) (752 0 0)" + "material" "TERRI/DEV/BSP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 -1 0 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "445" - "plane" "(640 -1280 188.5) (640 -384 188.5) (640 -384 232)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 0] 0.25" + "id" "577" + "plane" "(512 0 0) (512 256 0) (512 256 160)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 -128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -230,10 +628,10 @@ world } side { - "id" "444" - "plane" "(1088 -384 188.5) (1088 -1280 188.5) (1088 -1280 232)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 0] 0.25" + "id" "576" + "plane" "(752 256 0) (752 0 0) (752 0 160)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 -128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -241,9 +639,9 @@ world } side { - "id" "443" - "plane" "(640 -384 188.5) (1088 -384 188.5) (1088 -384 232)" - "material" "DEV/GRAYGRID" + "id" "575" + "plane" "(512 256 0) (752 256 0) (752 256 160)" + "material" "TERRI/DEV/BSP" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -252,9 +650,9 @@ world } side { - "id" "442" - "plane" "(1088 -1280 188.5) (640 -1280 188.5) (640 -1280 232)" - "material" "DEV/GRAYGRID" + "id" "574" + "plane" "(752 0 0) (512 0 0) (512 0 160)" + "material" "TERRI/DEV/BSP" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -263,7 +661,7 @@ world } editor { - "color" "0 145 202" + "color" "0 175 108" "visgroupid" "8" "visgroupshown" "1" "visgroupautoshown" "1" @@ -271,195 +669,190 @@ world } solid { - "id" "364" + "id" "409" side { - "id" "459" - "plane" "(88 -1776 40) (88 -496 40) (536 -496 40)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 160] 0.25" - "vaxis" "[0 -1 0 -448] 0.25" + "id" "477" + "plane" "(532.717 360 128) (425.048 761.825 128) (1012.33 919.187 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0.965926 0.258819 0 -382.96] 0.25" + "vaxis" "[0.258819 -0.965926 0 455.424] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" - dispinfo - { - "power" "3" - "startposition" "[88 -1776 40]" - "flags" "0" - "elevation" "0" - "subdiv" "0" - normals - { - "row0" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1" - "row1" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1" - "row2" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1" - "row3" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" - "row4" "0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" - "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" - "row6" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" - "row7" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" - "row8" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" - } - distances - { - "row0" "28.5641 29.367 28.0358 24.6081 16.0778 7.54846 0.3125 5.48589 8.21252" - "row1" "38.5866 38.7276 36.3806 30.903 23.6889 14.4912 2.20114 10.9428 20.1528" - "row2" "39.9487 39.4828 37.1057 33.867 29.7344 22.4416 10.8467 0.557701 9.93951" - "row3" "16.4893 20.1311 18.2943 15.0892 11.0577 7.65746 5.77108 4.72449 1.48034" - "row4" "7.34191 1.49294 3.21162 6.85134 6.44022 6.87125 9.5973 13.0968 12.2005" - "row5" "20.3329 17.4989 11.1015 5.82806 0.796417 3.77695 6.79787 6.98206 2.95658" - "row6" "2.43473 2.53638 1.74496 1.62716 3.54679 5.38161 4.67983 6.38845 7.14895" - "row7" "22.492 23.8103 26.6173 28.3238 28.0682 25.8498 21.666 17.7569 15.0155" - "row8" "26.9892 30.9842 34.6238 36.3283 36.0735 33.8587 29.6814 23.6073 19.5358" - } - offsets - { - "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" - } - offset_normals - { - "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" - } - alphas - { - "row0" "0 0 0 0 0 0 0 0 0" - "row1" "0 0 0 0 0 0 0 0 0" - "row2" "0 0 0 0 0 0 0 0 0" - "row3" "0 0 0 0 0 0 0 0 0" - "row4" "0 0 0 0 0 0 0 0 0" - "row5" "0 0 0 0 0 0 0 0 0" - "row6" "0 0 0 0 0 0 0 0 0" - "row7" "0 0 0 0 0 0 0 0 0" - "row8" "0 0 0 0 0 0 0 0 0" - } - triangle_tags - { - "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" - } - allowed_verts - { - "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" - } - } } side { - "id" "458" - "plane" "(88 -496 -3.5) (88 -1776 -3.5) (536 -1776 -3.5)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 160] 0.25" - "vaxis" "[0 -1 0 -448] 0.25" + "id" "476" + "plane" "(425.048 761.825 64) (532.717 360 64) (1120 517.362 64)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0.965926 0.258819 0 -382.96] 0.25" + "vaxis" "[0.258819 -0.965926 0 455.424] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "475" + "plane" "(532.717 360 64) (425.048 761.825 64) (425.048 761.825 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[-0.258819 0.965926 0 -455.424] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "474" + "plane" "(1012.33 919.187 64) (1120 517.362 64) (1120 517.362 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[-0.258819 0.965926 0 -455.424] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "473" + "plane" "(425.048 761.825 64) (1012.33 919.187 64) (1012.33 919.187 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0.965926 0.258819 0 -382.96] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "472" + "plane" "(1120 517.362 64) (532.717 360 64) (532.717 360 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0.965926 0.258819 0 -382.96] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 108" + "visgroupid" "13" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "416" + side + { + "id" "478" + "plane" "(-616 352 464) (-616 416 464) (-528 416 464)" + "material" "AR_DIZZY/DIZZY_INSULATION_BACK_COLOR" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "457" - "plane" "(88 -1776 -3.5) (88 -496 -3.5) (88 -496 40)" - "material" "DEV/GRAYGRID" + "id" "479" + "plane" "(-616 416 0) (-616 352 0) (-528 352 0)" + "material" "AR_DIZZY/DIZZY_INSULATION_BACK_COLOR" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 -1 0 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "480" + "plane" "(-616 352 0) (-616 416 0) (-616 416 464)" + "material" "AR_DIZZY/DIZZY_INSULATION_BACK_COLOR" "uaxis" "[0 1 0 448] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "456" - "plane" "(536 -496 -3.5) (536 -1776 -3.5) (536 -1776 40)" - "material" "DEV/GRAYGRID" + "id" "481" + "plane" "(-528 416 0) (-528 352 0) (-528 352 464)" + "material" "AR_DIZZY/DIZZY_INSULATION_BACK_COLOR" "uaxis" "[0 1 0 448] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "455" - "plane" "(88 -496 -3.5) (536 -496 -3.5) (536 -496 40)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 160] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" + "id" "482" + "plane" "(-616 416 0) (-528 416 0) (-528 416 464)" + "material" "AR_DIZZY/DIZZY_INSULATION_BACK_COLOR" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "454" - "plane" "(536 -1776 -3.5) (88 -1776 -3.5) (88 -1776 40)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 160] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" + "id" "483" + "plane" "(-528 352 0) (-616 352 0) (-616 352 464)" + "material" "AR_DIZZY/DIZZY_INSULATION_BACK_COLOR" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 145 202" + "color" "0 249 138" "visgroupid" "8" + "visgroupid" "14" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "343" + "id" "431" side { - "id" "411" - "plane" "(-1603.08 -874 16) (-2236.65 -240.432 16) (-1512.57 483.645 16)" - "material" "DEV/GRAYGRID" - "uaxis" "[0.707107 0.707107 0 350.233] 0.25" - "vaxis" "[0.707107 -0.707107 0 14.1422] 0.25" + "id" "495" + "plane" "(-896 1080 424) (-808 1080 424) (-808 696 424)" + "material" "AR_DIZZY/DIZZY_INSULATION_BACK_COLOR" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 1440] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "410" - "plane" "(-2236.65 -240.432 0) (-1603.08 -874 0) (-879 -149.923 0)" - "material" "DEV/GRAYGRID" - "uaxis" "[0.707107 0.707107 0 350.233] 0.25" - "vaxis" "[0.707107 -0.707107 0 14.1422] 0.25" + "id" "494" + "plane" "(-896 696 0) (-808 696 0) (-808 1080 0)" + "material" "AR_DIZZY/DIZZY_INSULATION_BACK_COLOR" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 1440] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "409" - "plane" "(-1603.08 -874 0) (-2236.65 -240.432 0) (-2236.65 -240.432 16)" - "material" "DEV/GRAYGRID" - "uaxis" "[-0.707107 0.707107 0 -14.1422] 0.25" + "id" "493" + "plane" "(-896 1080 424) (-896 696 424) (-896 696 0)" + "material" "AR_DIZZY/DIZZY_INSULATION_BACK_COLOR" + "uaxis" "[0 1 0 96] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -467,10 +860,10 @@ world } side { - "id" "408" - "plane" "(-1512.57 483.645 0) (-879 -149.923 0) (-879 -149.923 16)" - "material" "DEV/GRAYGRID" - "uaxis" "[-0.707107 0.707107 0 -14.1422] 0.25" + "id" "492" + "plane" "(-808 1080 0) (-808 696 0) (-808 696 424)" + "material" "AR_DIZZY/DIZZY_INSULATION_BACK_COLOR" + "uaxis" "[0 1 0 96] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -478,10 +871,10 @@ world } side { - "id" "407" - "plane" "(-2236.65 -240.432 0) (-1512.57 483.645 0) (-1512.57 483.645 16)" - "material" "DEV/GRAYGRID" - "uaxis" "[0.707107 0.707107 0 350.233] 0.25" + "id" "491" + "plane" "(-808 1080 424) (-896 1080 424) (-896 1080 0)" + "material" "AR_DIZZY/DIZZY_INSULATION_BACK_COLOR" + "uaxis" "[1 0 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -489,10 +882,10 @@ world } side { - "id" "406" - "plane" "(-879 -149.923 0) (-1603.08 -874 0) (-1603.08 -874 16)" - "material" "DEV/GRAYGRID" - "uaxis" "[0.707107 0.707107 0 350.233] 0.25" + "id" "490" + "plane" "(-808 696 0) (-896 696 0) (-896 696 424)" + "material" "AR_DIZZY/DIZZY_INSULATION_BACK_COLOR" + "uaxis" "[1 0 0 -32] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -500,7 +893,7 @@ world } editor { - "color" "0 145 202" + "color" "0 249 138" "visgroupid" "8" "visgroupshown" "1" "visgroupautoshown" "1" @@ -508,12 +901,12 @@ world } solid { - "id" "185" + "id" "346" side { - "id" "298" - "plane" "(-512 768 64) (96 768 64) (96 352 64)" - "material" "TERRI/DEV/BSP" + "id" "429" + "plane" "(-1024 -896 29) (0 -896 232) (0 -1280 232)" + "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -522,9 +915,9 @@ world } side { - "id" "299" - "plane" "(-512 352 0) (96 352 0) (96 768 0)" - "material" "TERRI/DEV/BSP" + "id" "428" + "plane" "(-1024 -1280 0) (0 -1280 192) (0 -896 192)" + "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -533,9 +926,9 @@ world } side { - "id" "300" - "plane" "(-512 768 64) (-512 352 64) (-512 352 0)" - "material" "TERRI/DEV/BSP" + "id" "427" + "plane" "(-1024 -896 0) (-1024 -896 29) (-1024 -1280 29)" + "material" "DEV/GRAYGRID" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -544,9 +937,9 @@ world } side { - "id" "301" - "plane" "(96 768 0) (96 352 0) (96 352 64)" - "material" "TERRI/DEV/BSP" + "id" "426" + "plane" "(0 -1280 192) (0 -1280 232) (0 -896 232)" + "material" "DEV/GRAYGRID" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -555,9 +948,9 @@ world } side { - "id" "302" - "plane" "(96 768 64) (-512 768 64) (-512 768 0)" - "material" "TERRI/DEV/BSP" + "id" "425" + "plane" "(-1024 -896 29) (-1024 -896 0) (0 -896 192)" + "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -566,9 +959,9 @@ world } side { - "id" "303" - "plane" "(96 352 0) (-512 352 0) (-512 352 64)" - "material" "TERRI/DEV/BSP" + "id" "424" + "plane" "(-1024 -1280 0) (-1024 -1280 29) (0 -1280 232)" + "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -577,19 +970,20 @@ world } editor { - "color" "0 175 108" + "color" "0 145 202" + "visgroupid" "8" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "40" + "id" "347" side { - "id" "105" - "plane" "(-4128 4128 544) (4128 4128 544) (4128 -4128 544)" - "material" "TOOLS/TOOLSSKYBOX" + "id" "435" + "plane" "(0 -1280 232) (0 -896 232) (640 -896 232)" + "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -598,20 +992,20 @@ world } side { - "id" "104" - "plane" "(-4128 4128 544) (-4128 -4128 544) (-4128 -4128 -160)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "434" + "plane" "(0 -896 188.5) (0 -1280 188.5) (640 -1280 188.5)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "103" - "plane" "(4128 4128 -160) (4128 -4128 -160) (4128 -4128 544)" - "material" "TOOLS/TOOLSSKYBOX" + "id" "433" + "plane" "(0 -1280 188.5) (0 -896 188.5) (0 -896 232)" + "material" "DEV/GRAYGRID" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -620,10 +1014,10 @@ world } side { - "id" "102" - "plane" "(4128 4128 544) (-4128 4128 544) (-4128 4128 -160)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" + "id" "432" + "plane" "(640 -896 188.5) (640 -1280 188.5) (640 -1280 232)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -631,9 +1025,9 @@ world } side { - "id" "101" - "plane" "(4128 -4128 -160) (-4128 -4128 -160) (-4128 -4128 544)" - "material" "TOOLS/TOOLSSKYBOX" + "id" "431" + "plane" "(0 -896 188.5) (640 -896 188.5) (640 -896 232)" + "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -642,31 +1036,31 @@ world } side { - "id" "100" - "plane" "(4096 -4096 512) (4096 4096 512) (-4096 4096 512)" - "material" "TOOLS/TOOLSSKYBOX" + "id" "430" + "plane" "(640 -1280 188.5) (0 -1280 188.5) (0 -1280 232)" + "material" "DEV/GRAYGRID" "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 220 220" - "groupid" "52" + "color" "0 145 202" + "visgroupid" "8" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "42" + "id" "355" side { - "id" "111" - "plane" "(-4128 -4128 -160) (4128 -4128 -160) (4128 4128 -160)" - "material" "TOOLS/TOOLSSKYBOX" + "id" "447" + "plane" "(640 -1280 232) (640 -384 232) (1088 -384 232)" + "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -675,20 +1069,20 @@ world } side { - "id" "110" - "plane" "(-4128 4128 544) (-4128 -4128 544) (-4128 -4128 -160)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "446" + "plane" "(640 -384 188.5) (640 -1280 188.5) (1088 -1280 188.5)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "109" - "plane" "(4128 4128 -160) (4128 -4128 -160) (4128 -4128 544)" - "material" "TOOLS/TOOLSSKYBOX" + "id" "445" + "plane" "(640 -1280 188.5) (640 -384 188.5) (640 -384 232)" + "material" "DEV/GRAYGRID" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -697,10 +1091,10 @@ world } side { - "id" "108" - "plane" "(4128 4128 544) (-4128 4128 544) (-4128 4128 -160)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" + "id" "444" + "plane" "(1088 -384 188.5) (1088 -1280 188.5) (1088 -1280 232)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -708,9 +1102,9 @@ world } side { - "id" "107" - "plane" "(4128 -4128 -160) (-4128 -4128 -160) (-4128 -4128 544)" - "material" "TOOLS/TOOLSSKYBOX" + "id" "443" + "plane" "(640 -384 188.5) (1088 -384 188.5) (1088 -384 232)" + "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -719,131 +1113,214 @@ world } side { - "id" "106" - "plane" "(4096 4096 -128) (4096 -4096 -128) (-4096 -4096 -128)" - "material" "TOOLS/TOOLSSKYBOX" + "id" "442" + "plane" "(1088 -1280 188.5) (640 -1280 188.5) (640 -1280 232)" + "material" "DEV/GRAYGRID" "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 220 220" - "groupid" "52" + "color" "0 145 202" + "visgroupid" "8" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "44" + "id" "364" side { - "id" "117" - "plane" "(-4128 4128 544) (-4128 -4128 544) (-4128 -4128 -160)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "459" + "plane" "(88 -1776 40) (88 -496 40) (536 -496 40)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 160] 0.25" + "vaxis" "[0 -1 0 -448] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[88 -1776 40]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1" + "row1" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1" + "row2" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1" + "row3" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row4" "0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row6" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row7" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row8" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + } + distances + { + "row0" "28.5641 29.367 28.0358 24.6081 16.0778 7.54846 0.3125 5.48589 8.21252" + "row1" "38.5866 38.7276 36.3806 30.903 23.6889 14.4912 2.20114 10.9428 20.1528" + "row2" "39.9487 39.4828 37.1057 33.867 29.7344 22.4416 10.8467 0.557701 9.93951" + "row3" "16.4893 20.1311 18.2943 15.0892 11.0577 7.65746 5.77108 4.72449 1.48034" + "row4" "7.34191 1.49294 3.21162 6.85134 6.44022 6.87125 9.5973 13.0968 12.2005" + "row5" "20.3329 17.4989 11.1015 5.82806 0.796417 3.77695 6.79787 6.98206 2.95658" + "row6" "2.43473 2.53638 1.74496 1.62716 3.54679 5.38161 4.67983 6.38845 7.14895" + "row7" "22.492 23.8103 26.6173 28.3238 28.0682 25.8498 21.666 17.7569 15.0155" + "row8" "26.9892 30.9842 34.6238 36.3283 36.0735 33.8587 29.6814 23.6073 19.5358" + } + offsets + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + offset_normals + { + "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row5" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row7" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + "row8" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1" + } + alphas + { + "row0" "0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0" + } + triangle_tags + { + "row0" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row1" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row2" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row3" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row4" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row5" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row6" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } } side { - "id" "116" - "plane" "(4128 4128 544) (-4128 4128 544) (-4128 4128 -160)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "458" + "plane" "(88 -496 -3.5) (88 -1776 -3.5) (536 -1776 -3.5)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 160] 0.25" + "vaxis" "[0 -1 0 -448] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "115" - "plane" "(4128 -4128 -160) (-4128 -4128 -160) (-4128 -4128 544)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "457" + "plane" "(88 -1776 -3.5) (88 -496 -3.5) (88 -496 40)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 448] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "114" - "plane" "(-4096 4096 512) (4096 4096 512) (4096 -4096 512)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "456" + "plane" "(536 -496 -3.5) (536 -1776 -3.5) (536 -1776 40)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 448] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "113" - "plane" "(-4096 -4096 -128) (4096 -4096 -128) (4096 4096 -128)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "455" + "plane" "(88 -496 -3.5) (536 -496 -3.5) (536 -496 40)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 160] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "112" - "plane" "(-4096 -4096 -128) (-4096 -4096 512) (-4096 4096 512)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "454" + "plane" "(536 -1776 -3.5) (88 -1776 -3.5) (88 -1776 40)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 160] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 220 220" - "groupid" "52" + "color" "0 145 202" + "visgroupid" "8" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "46" + "id" "343" side { - "id" "123" - "plane" "(4128 4128 -160) (4128 -4128 -160) (4128 -4128 544)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "411" + "plane" "(-1603.08 -874 16) (-2236.65 -240.432 16) (-1512.57 483.645 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[0.707107 0.707107 0 350.233] 0.25" + "vaxis" "[0.707107 -0.707107 0 14.1422] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "122" - "plane" "(4128 4128 544) (-4128 4128 544) (-4128 4128 -160)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "410" + "plane" "(-2236.65 -240.432 0) (-1603.08 -874 0) (-879 -149.923 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[0.707107 0.707107 0 350.233] 0.25" + "vaxis" "[0.707107 -0.707107 0 14.1422] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "121" - "plane" "(4128 -4128 -160) (-4128 -4128 -160) (-4128 -4128 544)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" + "id" "409" + "plane" "(-1603.08 -874 0) (-2236.65 -240.432 0) (-2236.65 -240.432 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[-0.707107 0.707107 0 -14.1422] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -851,32 +1328,32 @@ world } side { - "id" "120" - "plane" "(-4096 4096 512) (4096 4096 512) (4096 -4096 512)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "408" + "plane" "(-1512.57 483.645 0) (-879 -149.923 0) (-879 -149.923 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[-0.707107 0.707107 0 -14.1422] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "119" - "plane" "(-4096 -4096 -128) (4096 -4096 -128) (4096 4096 -128)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "407" + "plane" "(-2236.65 -240.432 0) (-1512.57 483.645 0) (-1512.57 483.645 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[0.707107 0.707107 0 350.233] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "118" - "plane" "(4096 -4096 512) (4096 -4096 -128) (4096 4096 -128)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" + "id" "406" + "plane" "(-879 -149.923 0) (-1603.08 -874 0) (-1603.08 -874 16)" + "material" "DEV/GRAYGRID" + "uaxis" "[0.707107 0.707107 0 350.233] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -884,31 +1361,31 @@ world } editor { - "color" "220 220 220" - "groupid" "52" + "color" "0 145 202" + "visgroupid" "8" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "48" + "id" "185" side { - "id" "129" - "plane" "(4128 4128 544) (-4128 4128 544) (-4128 4128 -160)" - "material" "TOOLS/TOOLSSKYBOX" + "id" "298" + "plane" "(-512 768 64) (96 768 64) (96 352 64)" + "material" "TERRI/DEV/BSP" "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" "128" - "plane" "(-4096 4096 512) (4096 4096 512) (4096 -4096 512)" - "material" "TOOLS/TOOLSSKYBOX" + "id" "299" + "plane" "(-512 352 0) (96 352 0) (96 768 0)" + "material" "TERRI/DEV/BSP" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -917,20 +1394,20 @@ world } side { - "id" "127" - "plane" "(-4096 -4096 -128) (4096 -4096 -128) (4096 4096 -128)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "300" + "plane" "(-512 768 64) (-512 352 64) (-512 352 0)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "126" - "plane" "(-4096 4096 512) (-4096 -4096 512) (-4096 -4096 -128)" - "material" "TOOLS/TOOLSSKYBOX" + "id" "301" + "plane" "(96 768 0) (96 352 0) (96 352 64)" + "material" "TERRI/DEV/BSP" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -939,10 +1416,10 @@ world } side { - "id" "125" - "plane" "(4096 4096 -128) (4096 -4096 -128) (4096 -4096 512)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" + "id" "302" + "plane" "(96 768 64) (-512 768 64) (-512 768 0)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -950,9 +1427,9 @@ world } side { - "id" "124" - "plane" "(-4096 4096 -128) (-4096 4096 512) (4096 4096 512)" - "material" "TOOLS/TOOLSSKYBOX" + "id" "303" + "plane" "(96 352 0) (-512 352 0) (-512 352 64)" + "material" "TERRI/DEV/BSP" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -961,87 +1438,489 @@ world } editor { - "color" "220 220 220" - "groupid" "52" + "color" "0 175 108" "visgroupshown" "1" "visgroupautoshown" "1" } } - solid + hidden { - "id" "50" - side - { - "id" "135" - "plane" "(4128 -4128 -160) (-4128 -4128 -160) (-4128 -4128 544)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side + solid { - "id" "134" - "plane" "(-4096 4096 512) (4096 4096 512) (4096 -4096 512)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "id" "40" + side + { + "id" "105" + "plane" "(-4128 4128 544) (4128 4128 544) (4128 -4128 544)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "104" + "plane" "(-4128 4128 544) (-4128 -4128 544) (-4128 -4128 -160)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "103" + "plane" "(4128 4128 -160) (4128 -4128 -160) (4128 -4128 544)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "102" + "plane" "(4128 4128 544) (-4128 4128 544) (-4128 4128 -160)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "101" + "plane" "(4128 -4128 -160) (-4128 -4128 -160) (-4128 -4128 544)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "100" + "plane" "(4096 -4096 512) (4096 4096 512) (-4096 4096 512)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "52" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } - side + } + hidden + { + solid { - "id" "133" - "plane" "(-4096 -4096 -128) (4096 -4096 -128) (4096 4096 -128)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "id" "42" + side + { + "id" "111" + "plane" "(-4128 -4128 -160) (4128 -4128 -160) (4128 4128 -160)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "110" + "plane" "(-4128 4128 544) (-4128 -4128 544) (-4128 -4128 -160)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "109" + "plane" "(4128 4128 -160) (4128 -4128 -160) (4128 -4128 544)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "108" + "plane" "(4128 4128 544) (-4128 4128 544) (-4128 4128 -160)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "107" + "plane" "(4128 -4128 -160) (-4128 -4128 -160) (-4128 -4128 544)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "106" + "plane" "(4096 4096 -128) (4096 -4096 -128) (-4096 -4096 -128)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "52" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } - side + } + hidden + { + solid { - "id" "132" - "plane" "(-4096 4096 512) (-4096 -4096 512) (-4096 -4096 -128)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "id" "44" + side + { + "id" "117" + "plane" "(-4128 4128 544) (-4128 -4128 544) (-4128 -4128 -160)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "116" + "plane" "(4128 4128 544) (-4128 4128 544) (-4128 4128 -160)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "115" + "plane" "(4128 -4128 -160) (-4128 -4128 -160) (-4128 -4128 544)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "114" + "plane" "(-4096 4096 512) (4096 4096 512) (4096 -4096 512)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "113" + "plane" "(-4096 -4096 -128) (4096 -4096 -128) (4096 4096 -128)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "112" + "plane" "(-4096 -4096 -128) (-4096 -4096 512) (-4096 4096 512)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "52" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } - side + } + hidden + { + solid { - "id" "131" - "plane" "(4096 4096 -128) (4096 -4096 -128) (4096 -4096 512)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "id" "46" + side + { + "id" "123" + "plane" "(4128 4128 -160) (4128 -4128 -160) (4128 -4128 544)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "122" + "plane" "(4128 4128 544) (-4128 4128 544) (-4128 4128 -160)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121" + "plane" "(4128 -4128 -160) (-4128 -4128 -160) (-4128 -4128 544)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120" + "plane" "(-4096 4096 512) (4096 4096 512) (4096 -4096 512)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "119" + "plane" "(-4096 -4096 -128) (4096 -4096 -128) (4096 4096 -128)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "118" + "plane" "(4096 -4096 512) (4096 -4096 -128) (4096 4096 -128)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "52" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } - side + } + hidden + { + solid { - "id" "130" - "plane" "(-4096 -4096 512) (-4096 -4096 -128) (4096 -4096 -128)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" + "id" "48" + side + { + "id" "129" + "plane" "(4128 4128 544) (-4128 4128 544) (-4128 4128 -160)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128" + "plane" "(-4096 4096 512) (4096 4096 512) (4096 -4096 512)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127" + "plane" "(-4096 -4096 -128) (4096 -4096 -128) (4096 4096 -128)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "126" + "plane" "(-4096 4096 512) (-4096 -4096 512) (-4096 -4096 -128)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "125" + "plane" "(4096 4096 -128) (4096 -4096 -128) (4096 -4096 512)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "124" + "plane" "(-4096 4096 -128) (-4096 4096 512) (4096 4096 512)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "52" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } - editor + } + hidden + { + solid { - "color" "220 220 220" - "groupid" "52" - "visgroupshown" "1" - "visgroupautoshown" "1" + "id" "50" + side + { + "id" "135" + "plane" "(4128 -4128 -160) (-4128 -4128 -160) (-4128 -4128 544)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "134" + "plane" "(-4096 4096 512) (4096 4096 512) (4096 -4096 512)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "133" + "plane" "(-4096 -4096 -128) (4096 -4096 -128) (4096 4096 -128)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "132" + "plane" "(-4096 4096 512) (-4096 -4096 512) (-4096 -4096 -128)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "131" + "plane" "(4096 4096 -128) (4096 -4096 -128) (4096 -4096 512)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "130" + "plane" "(-4096 -4096 512) (-4096 -4096 -128) (4096 -4096 -128)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "52" + "visgroupshown" "1" + "visgroupautoshown" "1" + } } } solid @@ -2285,3 +3164,7 @@ cordons { "active" "0" } +quickhide +{ + "count" "7" +} diff --git a/MCDV/sample_stuff/map_01.vmx b/MCDV/sample_stuff/map_01.vmx index 99464c8..3c9ad69 100644 --- a/MCDV/sample_stuff/map_01.vmx +++ b/MCDV/sample_stuff/map_01.vmx @@ -2,7 +2,7 @@ versioninfo { "editorversion" "400" "editorbuild" "8075" - "mapversion" "729" + "mapversion" "739" "formatversion" "100" "prefab" "0" } @@ -26,6 +26,12 @@ visgroups "visgroupid" "23" "color" "220 237 130" } + visgroup + { + "name" "tavr_cover" + "visgroupid" "24" + "color" "227 240 129" + } } viewsettings { @@ -38,7 +44,7 @@ viewsettings world { "id" "1" - "mapversion" "729" + "mapversion" "739" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -10747,6 +10753,8 @@ world editor { "color" "0 112 213" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -76433,7 +76441,7 @@ world "id" "180158" side { - "id" "62709" + "id" "101437" "plane" "(2064 176 192) (2064 400 192) (2080 416 192)" "material" "DE_CBBLE/GRASSFLOOR01" "uaxis" "[-1 0 0 -64] 0.25" @@ -76444,7 +76452,7 @@ world } side { - "id" "62708" + "id" "101436" "plane" "(2064 400 96) (2064 176 96) (2080 160 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" @@ -76455,7 +76463,7 @@ world } side { - "id" "62707" + "id" "101435" "plane" "(2256 400 96) (2256 176 96) (2256 176 192)" "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" "uaxis" "[0 1 0 83] 0.2" @@ -76466,7 +76474,7 @@ world } side { - "id" "62706" + "id" "101434" "plane" "(2064 176 96) (2064 400 96) (2064 400 192)" "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" "uaxis" "[0 -1 0 -428.999] 0.2" @@ -76477,7 +76485,7 @@ world } side { - "id" "62705" + "id" "101433" "plane" "(2240 160 96) (2080 160 96) (2080 160 192)" "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" "uaxis" "[1 0 0 -284.998] 0.2" @@ -76488,7 +76496,7 @@ world } side { - "id" "62704" + "id" "101432" "plane" "(2080 416 96) (2240 416 96) (2240 416 192)" "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" "uaxis" "[-1 0 0 131] 0.2" @@ -76499,7 +76507,7 @@ world } side { - "id" "62703" + "id" "101431" "plane" "(2256 176 96) (2240 160 96) (2240 160 192)" "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" "uaxis" "[0 -1 0 83] 0.2" @@ -76510,7 +76518,7 @@ world } side { - "id" "62702" + "id" "101430" "plane" "(2240 416 96) (2256 400 96) (2256 400 192)" "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" "uaxis" "[-0.707107 0.707107 0 452.949] 0.2" @@ -76521,7 +76529,7 @@ world } side { - "id" "62701" + "id" "101429" "plane" "(2064 400 96) (2080 416 96) (2080 416 192)" "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" "uaxis" "[-0.707107 -0.707107 0 -420.304] 0.2" @@ -76532,7 +76540,7 @@ world } side { - "id" "62700" + "id" "101428" "plane" "(2080 160 96) (2064 176 96) (2064 176 192)" "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" "uaxis" "[0.707107 -0.707107 0 -304.085] 0.2" @@ -76545,6 +76553,8 @@ world { "color" "107 188 0" "groupid" "187231" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -76554,7 +76564,7 @@ world "id" "180163" side { - "id" "62710" + "id" "101443" "plane" "(2248 176 216) (2248 400 216) (2256 400 216)" "material" "DEV/REFLECTIVITY_60B" "uaxis" "[-1 0 0 27] 0.25" @@ -76565,7 +76575,7 @@ world } side { - "id" "62711" + "id" "101442" "plane" "(2248 400 192) (2248 176 192) (2256 176 192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" @@ -76576,7 +76586,7 @@ world } side { - "id" "62712" + "id" "101441" "plane" "(2256 400 192) (2256 176 192) (2256 176 216)" "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" "uaxis" "[0 1 0 83] 0.2" @@ -76587,7 +76597,7 @@ world } side { - "id" "62713" + "id" "101440" "plane" "(2248 176 192) (2248 400 192) (2248 400 216)" "material" "DEV/REFLECTIVITY_60B" "uaxis" "[0 -1 0 -4.99854] 0.25" @@ -76598,7 +76608,7 @@ world } side { - "id" "62714" + "id" "101439" "plane" "(2256 176 192) (2248 176 192) (2248 176 216)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" @@ -76609,7 +76619,7 @@ world } side { - "id" "62715" + "id" "101438" "plane" "(2248 400 192) (2256 400 192) (2256 400 216)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" @@ -76622,6 +76632,8 @@ world { "color" "107 188 0" "groupid" "187231" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -76631,7 +76643,7 @@ world "id" "180170" side { - "id" "62739" + "id" "101449" "plane" "(2064 176 216) (2064 400 216) (2072 400 216)" "material" "DEV/REFLECTIVITY_60B" "uaxis" "[-1 0 0 27] 0.25" @@ -76642,7 +76654,7 @@ world } side { - "id" "62738" + "id" "101448" "plane" "(2064 400 192) (2064 176 192) (2072 176 192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 32] 0.25" @@ -76653,7 +76665,7 @@ world } side { - "id" "62737" + "id" "101447" "plane" "(2072 400 192) (2072 176 192) (2072 176 216)" "material" "DEV/REFLECTIVITY_60B" "uaxis" "[0 -1 0 -4.99854] 0.25" @@ -76664,7 +76676,7 @@ world } side { - "id" "62736" + "id" "101446" "plane" "(2064 176 192) (2064 400 192) (2064 400 216)" "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" "uaxis" "[0 -1 0 -428.999] 0.2" @@ -76675,7 +76687,7 @@ world } side { - "id" "62735" + "id" "101445" "plane" "(2072 176 192) (2064 176 192) (2064 176 216)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 32] 0.25" @@ -76686,7 +76698,7 @@ world } side { - "id" "62734" + "id" "101444" "plane" "(2064 400 192) (2072 400 192) (2072 400 216)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 32] 0.25" @@ -76699,6 +76711,8 @@ world { "color" "107 188 0" "groupid" "187231" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -76708,7 +76722,7 @@ world "id" "180171" side { - "id" "62751" + "id" "101455" "plane" "(2080 408 216) (2080 416 216) (2240 416 216)" "material" "DEV/REFLECTIVITY_60B" "uaxis" "[-1 0 0 27] 0.25" @@ -76719,7 +76733,7 @@ world } side { - "id" "62750" + "id" "101454" "plane" "(2080 416 192) (2080 408 192) (2240 408 192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" @@ -76730,7 +76744,7 @@ world } side { - "id" "62749" + "id" "101453" "plane" "(2240 416 192) (2240 408 192) (2240 408 216)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0.00146484] 0.25" @@ -76741,7 +76755,7 @@ world } side { - "id" "62748" + "id" "101452" "plane" "(2080 408 192) (2080 416 192) (2080 416 216)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0.00146484] 0.25" @@ -76752,7 +76766,7 @@ world } side { - "id" "62747" + "id" "101451" "plane" "(2240 408 192) (2080 408 192) (2080 408 216)" "material" "DEV/REFLECTIVITY_60B" "uaxis" "[-1 0 0 27] 0.25" @@ -76763,7 +76777,7 @@ world } side { - "id" "62746" + "id" "101450" "plane" "(2080 416 192) (2240 416 192) (2240 416 216)" "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" "uaxis" "[-1 0 0 131] 0.2" @@ -76776,6 +76790,8 @@ world { "color" "107 188 0" "groupid" "187231" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -76785,7 +76801,7 @@ world "id" "180173" side { - "id" "62763" + "id" "101461" "plane" "(2080 160 216) (2080 168 216) (2240 168 216)" "material" "DEV/REFLECTIVITY_60B" "uaxis" "[-1 0 0 27] 0.25" @@ -76796,7 +76812,7 @@ world } side { - "id" "62762" + "id" "101460" "plane" "(2080 168 192) (2080 160 192) (2240 160 192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" @@ -76807,7 +76823,7 @@ world } side { - "id" "62761" + "id" "101459" "plane" "(2240 168 192) (2240 160 192) (2240 160 216)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 32.0015] 0.25" @@ -76818,7 +76834,7 @@ world } side { - "id" "62760" + "id" "101458" "plane" "(2080 160 192) (2080 168 192) (2080 168 216)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 32.0015] 0.25" @@ -76829,7 +76845,7 @@ world } side { - "id" "62759" + "id" "101457" "plane" "(2240 160 192) (2080 160 192) (2080 160 216)" "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" "uaxis" "[1 0 0 -284.998] 0.2" @@ -76840,7 +76856,7 @@ world } side { - "id" "62758" + "id" "101456" "plane" "(2080 168 192) (2240 168 192) (2240 168 216)" "material" "DEV/REFLECTIVITY_60B" "uaxis" "[-1 0 0 27] 0.25" @@ -76853,6 +76869,8 @@ world { "color" "107 188 0" "groupid" "187231" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -76862,7 +76880,7 @@ world "id" "180174" side { - "id" "62775" + "id" "101467" "plane" "(2064 176 216) (2072 176 216) (2080 168 216)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[-1 0 0 0] 0.25" @@ -76873,7 +76891,7 @@ world } side { - "id" "62774" + "id" "101466" "plane" "(2080 160 192) (2080 168 192) (2072 176 192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 32] 0.25" @@ -76884,7 +76902,7 @@ world } side { - "id" "62773" + "id" "101465" "plane" "(2080 168 192) (2080 160 192) (2080 160 216)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0.00146484] 0.25" @@ -76895,7 +76913,7 @@ world } side { - "id" "62772" + "id" "101464" "plane" "(2064 176 192) (2072 176 192) (2072 176 216)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" @@ -76906,7 +76924,7 @@ world } side { - "id" "62771" + "id" "101463" "plane" "(2080 160 192) (2064 176 192) (2064 176 216)" "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" "uaxis" "[0.707107 -0.707107 0 -304.085] 0.2" @@ -76917,7 +76935,7 @@ world } side { - "id" "62770" + "id" "101462" "plane" "(2072 176 192) (2080 168 192) (2080 168 216)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[-1 0 0 0] 0.25" @@ -76930,6 +76948,8 @@ world { "color" "107 188 0" "groupid" "187231" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -76939,7 +76959,7 @@ world "id" "180176" side { - "id" "62787" + "id" "101473" "plane" "(2240 160 216) (2240 168 216) (2248 176 216)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 -1 0 0.00146484] 0.25" @@ -76950,7 +76970,7 @@ world } side { - "id" "62786" + "id" "101472" "plane" "(2256 176 192) (2248 176 192) (2240 168 192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 32.0034] 0.25" @@ -76961,7 +76981,7 @@ world } side { - "id" "62785" + "id" "101471" "plane" "(2248 176 192) (2256 176 192) (2256 176 216)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" @@ -76972,7 +76992,7 @@ world } side { - "id" "62784" + "id" "101470" "plane" "(2240 160 192) (2240 168 192) (2240 168 216)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0.00341797] 0.25" @@ -76983,7 +77003,7 @@ world } side { - "id" "62783" + "id" "101469" "plane" "(2256 176 192) (2240 160 192) (2240 160 216)" "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" "uaxis" "[0 -1 0 83] 0.2" @@ -76994,7 +77014,7 @@ world } side { - "id" "62782" + "id" "101468" "plane" "(2240 168 192) (2248 176 192) (2248 176 216)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 -1 0 0.00146484] 0.25" @@ -77007,6 +77027,8 @@ world { "color" "107 188 0" "groupid" "187231" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -77016,7 +77038,7 @@ world "id" "180178" side { - "id" "62805" + "id" "101479" "plane" "(2072 400 216) (2064 400 216) (2080 416 216)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 -0.00146484] 0.25" @@ -77027,7 +77049,7 @@ world } side { - "id" "62804" + "id" "101478" "plane" "(2064 400 192) (2072 400 192) (2080 408 192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 -32.0015] 0.25" @@ -77038,7 +77060,7 @@ world } side { - "id" "62803" + "id" "101477" "plane" "(2072 400 192) (2064 400 192) (2064 400 216)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" @@ -77049,7 +77071,7 @@ world } side { - "id" "62802" + "id" "101476" "plane" "(2080 416 192) (2080 408 192) (2080 408 216)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 -0.00146484] 0.25" @@ -77060,7 +77082,7 @@ world } side { - "id" "62801" + "id" "101475" "plane" "(2064 400 192) (2080 416 192) (2080 416 216)" "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" "uaxis" "[-0.707107 -0.707107 0 -420.304] 0.2" @@ -77071,7 +77093,7 @@ world } side { - "id" "62800" + "id" "101474" "plane" "(2080 408 192) (2072 400 192) (2072 400 216)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[0 1 0 -0.00146484] 0.25" @@ -77084,6 +77106,8 @@ world { "color" "107 188 0" "groupid" "187231" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -77093,7 +77117,7 @@ world "id" "180179" side { - "id" "62811" + "id" "101485" "plane" "(2256 400 216) (2248 400 216) (2240 408 216)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" @@ -77104,7 +77128,7 @@ world } side { - "id" "62810" + "id" "101484" "plane" "(2240 416 192) (2240 408 192) (2248 400 192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 -32] 0.25" @@ -77115,7 +77139,7 @@ world } side { - "id" "62809" + "id" "101483" "plane" "(2240 408 192) (2240 416 192) (2240 416 216)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 -0.00341797] 0.25" @@ -77126,7 +77150,7 @@ world } side { - "id" "62808" + "id" "101482" "plane" "(2256 400 192) (2248 400 192) (2248 400 216)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" @@ -77137,7 +77161,7 @@ world } side { - "id" "62807" + "id" "101481" "plane" "(2240 416 192) (2256 400 192) (2256 400 216)" "material" "TEROUST/ARPEGGIO/CHURCH/SLAB_LARGE_LOW" "uaxis" "[-0.707107 0.707107 0 452.949] 0.2" @@ -77148,7 +77172,7 @@ world } side { - "id" "62806" + "id" "101480" "plane" "(2248 400 192) (2240 408 192) (2240 408 216)" "material" "DEV/REFLECTIVITY_50B" "uaxis" "[1 0 0 0] 0.25" @@ -77161,6 +77185,8 @@ world { "color" "107 188 0" "groupid" "187231" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -77170,7 +77196,7 @@ world "id" "180182" side { - "id" "62823" + "id" "101491" "plane" "(2112 208 224) (2112 368 224) (2208 368 224)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" @@ -77181,7 +77207,7 @@ world } side { - "id" "62822" + "id" "101490" "plane" "(2112 368 192) (2112 208 192) (2208 208 192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" @@ -77192,7 +77218,7 @@ world } side { - "id" "62821" + "id" "101489" "plane" "(2208 368 192) (2208 208 192) (2208 208 224)" "material" "CONCRETE/CONCRETE_INT_01" "uaxis" "[0 0 1 58] 0.25" @@ -77203,7 +77229,7 @@ world } side { - "id" "62820" + "id" "101488" "plane" "(2112 208 192) (2112 368 192) (2112 368 224)" "material" "CONCRETE/CONCRETE_INT_01" "uaxis" "[0 0 1 58] 0.25" @@ -77214,7 +77240,7 @@ world } side { - "id" "62819" + "id" "101487" "plane" "(2208 208 192) (2112 208 192) (2112 208 224)" "material" "CONCRETE/CONCRETE_INT_01" "uaxis" "[0 0 1 58] 0.25" @@ -77225,7 +77251,7 @@ world } side { - "id" "62818" + "id" "101486" "plane" "(2112 368 192) (2208 368 192) (2208 368 224)" "material" "CONCRETE/CONCRETE_INT_01" "uaxis" "[0 0 1 58] 0.25" @@ -77238,6 +77264,8 @@ world { "color" "107 188 0" "groupid" "187231" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -77247,7 +77275,7 @@ world "id" "180192" side { - "id" "62835" + "id" "101497" "plane" "(2110 206 228) (2110 370 228) (2210 370 228)" "material" "CONCRETE/BAGGAGE_CONCRETEFLOORA" "uaxis" "[-1 0 0 -56] 0.25" @@ -77258,7 +77286,7 @@ world } side { - "id" "62834" + "id" "101496" "plane" "(2112 368 224) (2112 208 224) (2208 208 224)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 8] 0.25" @@ -77269,7 +77297,7 @@ world } side { - "id" "62833" + "id" "101495" "plane" "(2208 368 224) (2208 208 224) (2210 206 228)" "material" "BUILDINGS/TRIM21" "uaxis" "[0 -1 0 128.001] 0.25" @@ -77280,7 +77308,7 @@ world } side { - "id" "62832" + "id" "101494" "plane" "(2112 208 224) (2112 368 224) (2110 370 228)" "material" "BUILDINGS/TRIM21" "uaxis" "[0 -1 0 128.001] 0.25" @@ -77291,7 +77319,7 @@ world } side { - "id" "62831" + "id" "101493" "plane" "(2208 208 224) (2112 208 224) (2110 206 228)" "material" "BUILDINGS/TRIM21" "uaxis" "[-1 0 0 -64] 0.25" @@ -77302,7 +77330,7 @@ world } side { - "id" "62830" + "id" "101492" "plane" "(2112 368 224) (2208 368 224) (2210 370 228)" "material" "BUILDINGS/TRIM21" "uaxis" "[-1 0 0 -64] 0.25" @@ -77315,6 +77343,8 @@ world { "color" "107 188 0" "groupid" "187231" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -77324,7 +77354,7 @@ world "id" "180221" side { - "id" "62847" + "id" "101503" "plane" "(2112 208 230) (2112 368 230) (2208 368 230)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" @@ -77335,7 +77365,7 @@ world } side { - "id" "62846" + "id" "101502" "plane" "(2112 368 228) (2112 208 228) (2208 208 228)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" @@ -77346,7 +77376,7 @@ world } side { - "id" "62845" + "id" "101501" "plane" "(2208 368 228) (2208 208 228) (2208 208 230)" "material" "BUILDINGS/TRIM21" "uaxis" "[0 -1 0 128.001] 0.25" @@ -77357,7 +77387,7 @@ world } side { - "id" "62844" + "id" "101500" "plane" "(2112 208 228) (2112 368 228) (2112 368 230)" "material" "BUILDINGS/TRIM21" "uaxis" "[0 -1 0 128.001] 0.25" @@ -77368,7 +77398,7 @@ world } side { - "id" "62843" + "id" "101499" "plane" "(2208 208 228) (2112 208 228) (2112 208 230)" "material" "BUILDINGS/TRIM21" "uaxis" "[-1 0 0 -64] 0.25" @@ -77379,7 +77409,7 @@ world } side { - "id" "62842" + "id" "101498" "plane" "(2112 368 228) (2208 368 228) (2208 368 230)" "material" "BUILDINGS/TRIM21" "uaxis" "[-1 0 0 -64] 0.25" @@ -77392,6 +77422,8 @@ world { "color" "107 188 0" "groupid" "187231" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -77401,7 +77433,7 @@ world "id" "180324" side { - "id" "62907" + "id" "101509" "plane" "(2110 206 232) (2110 370 232) (2210 370 232)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 8] 0.25" @@ -77412,7 +77444,7 @@ world } side { - "id" "62906" + "id" "101508" "plane" "(2112 368 230) (2112 208 230) (2208 208 230)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 8] 0.25" @@ -77423,7 +77455,7 @@ world } side { - "id" "62905" + "id" "101507" "plane" "(2208 368 230) (2208 208 230) (2210 206 232)" "material" "BUILDINGS/TRIM21" "uaxis" "[0 -1 0 128.001] 0.25" @@ -77434,7 +77466,7 @@ world } side { - "id" "62904" + "id" "101506" "plane" "(2112 208 230) (2112 368 230) (2110 370 232)" "material" "BUILDINGS/TRIM21" "uaxis" "[0 -1 0 128.001] 0.25" @@ -77445,7 +77477,7 @@ world } side { - "id" "62903" + "id" "101505" "plane" "(2208 208 230) (2112 208 230) (2110 206 232)" "material" "BUILDINGS/TRIM21" "uaxis" "[-1 0 0 -64] 0.25" @@ -77456,7 +77488,7 @@ world } side { - "id" "62902" + "id" "101504" "plane" "(2112 368 230) (2208 368 230) (2210 370 232)" "material" "BUILDINGS/TRIM21" "uaxis" "[-1 0 0 -64] 0.25" @@ -77469,6 +77501,8 @@ world { "color" "107 188 0" "groupid" "187231" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -77478,7 +77512,7 @@ world "id" "180328" side { - "id" "62919" + "id" "101515" "plane" "(2110 370 232) (2110 206 232) (2210 206 232)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 8] 0.25" @@ -77489,7 +77523,7 @@ world } side { - "id" "62918" + "id" "101514" "plane" "(2112 208 234) (2112 368 234) (2208 368 234)" "material" "CONCRETE/BAGGAGE_CONCRETEFLOORA" "uaxis" "[-1 0 0 -56] 0.25" @@ -77500,7 +77534,7 @@ world } side { - "id" "62917" + "id" "101513" "plane" "(2210 370 232) (2210 206 232) (2208 208 234)" "material" "BUILDINGS/TRIM21" "uaxis" "[0 -1 0 128.001] 0.25" @@ -77511,7 +77545,7 @@ world } side { - "id" "62916" + "id" "101512" "plane" "(2110 206 232) (2110 370 232) (2112 368 234)" "material" "BUILDINGS/TRIM21" "uaxis" "[0 -1 0 128.001] 0.25" @@ -77522,7 +77556,7 @@ world } side { - "id" "62915" + "id" "101511" "plane" "(2210 206 232) (2110 206 232) (2112 208 234)" "material" "BUILDINGS/TRIM21" "uaxis" "[-1 0 0 -64] 0.25" @@ -77533,7 +77567,7 @@ world } side { - "id" "62914" + "id" "101510" "plane" "(2110 370 232) (2210 370 232) (2208 368 234)" "material" "BUILDINGS/TRIM21" "uaxis" "[-1 0 0 -64] 0.25" @@ -77546,6 +77580,8 @@ world { "color" "107 188 0" "groupid" "187231" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -83563,6 +83599,7 @@ world { "color" "0 176 105" "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -106710,6 +106747,7 @@ world { "color" "0 133 142" "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -106787,6 +106825,7 @@ world { "color" "0 133 142" "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -115561,6 +115600,8 @@ world editor { "color" "0 251 180" + "visgroupid" "24" + "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -119296,6 +119337,8 @@ world editor { "color" "0 137 234" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -119372,6 +119415,8 @@ world editor { "color" "0 137 234" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -119448,6 +119493,8 @@ world editor { "color" "0 137 234" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -119524,6 +119571,8 @@ world editor { "color" "0 137 234" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -121116,6 +121165,8 @@ world { "color" "162 131 0" "groupid" "100786" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -121193,6 +121244,8 @@ world { "color" "162 131 0" "groupid" "100786" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -121270,6 +121323,8 @@ world { "color" "162 131 0" "groupid" "100786" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -121347,6 +121402,8 @@ world { "color" "162 131 0" "groupid" "100786" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -121424,6 +121481,7 @@ world { "color" "0 124 241" "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -185314,6 +185372,7 @@ world { "color" "0 176 105" "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -185450,6 +185509,7 @@ world { "color" "0 134 247" "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -185527,6 +185587,7 @@ world { "color" "0 176 105" "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -217851,6 +217912,7 @@ world { "color" "0 108 237" "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -217971,6 +218033,8 @@ world editor { "color" "0 108 237" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -221187,6 +221251,32 @@ world } } } +entity +{ + "id" "289962" + "classname" "tavr_height_max" + "origin" "2368 288 160" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "289989" + "classname" "tavr_height_min" + "origin" "-416 -416 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} hidden { entity @@ -223751,6 +223841,8 @@ hidden { "color" "107 188 0" "groupid" "187231" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "0" "logicalpos" "[0 0]" @@ -223779,6 +223871,8 @@ hidden { "color" "107 188 0" "groupid" "187231" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "0" "logicalpos" "[0 500]" @@ -223807,6 +223901,8 @@ hidden { "color" "107 188 0" "groupid" "187231" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "0" "logicalpos" "[0 500]" @@ -223835,6 +223931,8 @@ hidden { "color" "107 188 0" "groupid" "187231" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "0" "logicalpos" "[0 500]" @@ -223863,6 +223961,8 @@ hidden { "color" "107 188 0" "groupid" "187231" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "0" "logicalpos" "[0 500]" @@ -223891,6 +223991,8 @@ hidden { "color" "107 188 0" "groupid" "187231" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "0" "logicalpos" "[0 500]" @@ -223919,6 +224021,8 @@ hidden { "color" "107 188 0" "groupid" "187231" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "0" "logicalpos" "[0 500]" @@ -223947,6 +224051,8 @@ hidden { "color" "107 188 0" "groupid" "187231" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "0" "logicalpos" "[0 500]" @@ -223975,6 +224081,8 @@ hidden { "color" "107 188 0" "groupid" "187231" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "0" "logicalpos" "[0 500]" @@ -224003,6 +224111,8 @@ hidden { "color" "107 188 0" "groupid" "187231" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "0" "logicalpos" "[0 500]" @@ -224031,6 +224141,8 @@ hidden { "color" "107 188 0" "groupid" "187231" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "0" "logicalpos" "[0 500]" @@ -224059,6 +224171,8 @@ hidden { "color" "107 188 0" "groupid" "187231" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "0" "logicalpos" "[0 500]" @@ -224087,6 +224201,8 @@ hidden { "color" "107 188 0" "groupid" "187231" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "0" "logicalpos" "[0 500]" @@ -224115,6 +224231,8 @@ hidden { "color" "107 188 0" "groupid" "187231" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "0" "logicalpos" "[0 500]" @@ -224143,6 +224261,8 @@ hidden { "color" "107 188 0" "groupid" "187231" + "visgroupid" "23" + "visgroupid" "24" "visgroupshown" "1" "visgroupautoshown" "0" "logicalpos" "[0 500]" @@ -228251,4274 +228371,4100 @@ hidden } } } -hidden +entity { - entity + "id" "60234" + "classname" "func_detail" + solid { - "id" "60234" - "classname" "func_detail" - hidden - { - solid - { - "id" "27978" - side - { - "id" "36726" - "plane" "(2056 -1976 256) (2048 -1968 256) (2112 -1904 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36725" - "plane" "(2120 -1912 240) (2112 -1904 240) (2048 -1968 240)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36724" - "plane" "(2056 -1976 240) (2048 -1968 240) (2048 -1968 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36723" - "plane" "(2112 -1904 240) (2120 -1912 240) (2120 -1912 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36722" - "plane" "(2048 -1968 240) (2112 -1904 240) (2112 -1904 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36721" - "plane" "(2120 -1912 240) (2056 -1976 240) (2056 -1976 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 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" - } - } - } - hidden + "id" "27978" + side { - solid - { - "id" "27971" - side - { - "id" "36732" - "plane" "(1976 -2056 256) (1968 -2048 256) (2032 -1984 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36731" - "plane" "(1968 -2048 240) (1976 -2056 240) (2040 -1992 240)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36730" - "plane" "(1976 -2056 240) (1968 -2048 240) (1968 -2048 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36729" - "plane" "(2032 -1984 240) (2040 -1992 240) (2040 -1992 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36728" - "plane" "(1968 -2048 240) (2032 -1984 240) (2032 -1984 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36727" - "plane" "(2040 -1992 240) (1976 -2056 240) (1976 -2056 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 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" - } - } + "id" "36726" + "plane" "(2056 -1976 256) (2048 -1968 256) (2112 -1904 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "27955" - side - { - "id" "36738" - "plane" "(2208 -2016.01 384) (2159.99 -2064.02 384) (2079.98 -1984.02 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36737" - "plane" "(2128 -1936 256) (2080 -1984 256) (2160 -2064 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36736" - "plane" "(2080 -1984 256) (2128 -1936 256) (2128 -1936 384)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36735" - "plane" "(2208 -2016 256) (2160 -2064 256) (2160 -2064 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36734" - "plane" "(2160 -2064 256) (2080 -1984 256) (2080 -1984 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36733" - "plane" "(2128 -1936 256) (2208 -2016 256) (2208 -2016 384)" - "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" - } - } + "id" "36725" + "plane" "(2120 -1912 240) (2112 -1904 240) (2048 -1968 240)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "27953" - side - { - "id" "36744" - "plane" "(2128 -2096 384) (2080 -2144 384) (1999.99 -2064 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36743" - "plane" "(2048 -2016 256) (2000 -2064 256) (2080 -2144 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36742" - "plane" "(2000 -2064 256) (2048 -2016 256) (2047.99 -2016 384)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36741" - "plane" "(2128 -2096 256) (2080 -2144 256) (2080 -2144 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36740" - "plane" "(2080 -2144 256) (2000 -2064 256) (2000 -2064 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36739" - "plane" "(2048 -2016 256) (2128 -2096 256) (2128 -2096 384)" - "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" - } - } + "id" "36724" + "plane" "(2056 -1976 240) (2048 -1968 240) (2048 -1968 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "27917" - side - { - "id" "36750" - "plane" "(2047.98 -2176 192) (1983.98 -2112 192) (2111.98 -1984 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36749" - "plane" "(2176 -2048 96) (2112 -1984 96) (1984 -2112 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36748" - "plane" "(2047.99 -2176 96) (1983.99 -2112 96) (1983.98 -2112 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" "36747" - "plane" "(2112 -1984 96) (2176 -2048 96) (2175.99 -2048 192)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36746" - "plane" "(1984 -2111.99 96) (2112 -1984 96) (2111.98 -1984 192)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36745" - "plane" "(2176 -2048 96) (2048 -2176 96) (2047.98 -2176 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 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" - } - } + "id" "36723" + "plane" "(2112 -1904 240) (2120 -1912 240) (2120 -1912 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "27911" - side - { - "id" "36756" - "plane" "(2047.99 -2176 96) (1983.99 -2112 96) (2112 -1984 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36755" - "plane" "(2176 -2048 64) (2112 -1984 64) (1984 -2112 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36754" - "plane" "(2048 -2176 64) (1984 -2112 64) (1984 -2112 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" "36753" - "plane" "(2112 -1984 64) (2176 -2048 64) (2176 -2048 96)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36752" - "plane" "(1984 -2112 64) (2112 -1984 64) (2112 -1984 96)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36751" - "plane" "(2176 -2048 64) (2048 -2176 64) (2048 -2176 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 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" - } - } + "id" "36722" + "plane" "(2048 -1968 240) (2112 -1904 240) (2112 -1904 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "27919" - side - { - "id" "36762" - "plane" "(2176 -2048 192) (2144 -2016 192) (2208 -1952 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36761" - "plane" "(2240 -1984 64) (2208 -1952 64) (2144 -2016 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36760" - "plane" "(2176 -2048 64) (2144 -2016 64) (2144 -2016 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" "36759" - "plane" "(2208 -1952 64) (2240 -1984 64) (2240 -1984 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" "36758" - "plane" "(2144 -2016 64) (2208 -1952 64) (2208 -1952 192)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36757" - "plane" "(2240 -1984 64) (2176 -2048 64) (2176 -2048 192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 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" - } - } + "id" "36721" + "plane" "(2120 -1912 240) (2056 -1976 240) (2056 -1976 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + editor { - solid - { - "id" "28009" - side - { - "id" "36768" - "plane" "(1807.99 -2176 208) (1807.99 -2128 208) (1887.99 -2128 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36767" - "plane" "(1807.99 -2128 64) (1807.99 -2176 64) (1887.99 -2176 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36766" - "plane" "(1807.99 -2176 64) (1807.99 -2128 64) (1807.99 -2128 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36765" - "plane" "(1887.99 -2128 64) (1887.99 -2176 64) (1887.99 -2176 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36764" - "plane" "(1807.99 -2128 64) (1887.99 -2128 64) (1887.99 -2128 208)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36763" - "plane" "(1887.99 -2176 64) (1807.99 -2176 64) (1807.99 -2176 208)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 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" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - hidden + } + solid + { + "id" "27971" + side { - solid - { - "id" "28104" - side - { - "id" "36774" - "plane" "(2192 -1824 544) (2192 -1728 544) (2272.02 -1728 544)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.3094] 0.25" - "vaxis" "[0.707107 -0.707107 0 59.5705] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36773" - "plane" "(2192 -1728 464) (2192 -1824 464) (2271.98 -1824.01 464)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.3094] 0.25" - "vaxis" "[0.707107 -0.707107 0 59.5705] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36772" - "plane" "(2191.99 -1824 464) (2191.99 -1728 464) (2191.99 -1728 544)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0.581238 0.813733 0 -12.487] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36771" - "plane" "(2272 -1728 464) (2271.98 -1824.01 464) (2272 -1824 544)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.581238 0.813733 0 -32.2796] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36770" - "plane" "(2271.98 -1824.01 464) (2191.99 -1824 464) (2191.99 -1824 544)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-0.581238 0.813733 0 -12.5415] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36769" - "plane" "(2192 -1728 464) (2272 -1728 464) (2272.02 -1728 544)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-0.581238 0.813733 0 -12.5415] 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" - } - } + "id" "36732" + "plane" "(1976 -2056 256) (1968 -2048 256) (2032 -1984 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "28085" - side - { - "id" "36780" - "plane" "(2240 -1984 544) (2175.98 -2048 544) (2096 -1968 544)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -63.9062] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36779" - "plane" "(2159.98 -1904.02 464) (2096 -1968 464) (2175.99 -2048 464)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -63.9062] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36778" - "plane" "(2096 -1968 464) (2159.98 -1904.01 464) (2159.98 -1904.01 544)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36777" - "plane" "(2240 -1984 464) (2175.98 -2048.01 464) (2175.98 -2048.02 544)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -63.9062] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36776" - "plane" "(2175.98 -2048 464) (2096 -1968 464) (2096 -1968 544)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36775" - "plane" "(2159.98 -1904.01 464) (2240 -1984 464) (2240 -1984.02 544)" - "material" "DEV/REFLECTIVITY_50B" - "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" - } - } + "id" "36731" + "plane" "(1968 -2048 240) (1976 -2056 240) (2040 -1992 240)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "28086" - side - { - "id" "36786" - "plane" "(2216 -2008 576) (2200 -2024 576) (2120 -1944 576)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36785" - "plane" "(2159.98 -1904 544) (2095.99 -1968 544) (2175.98 -2048 544)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -63.9062] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36784" - "plane" "(2095.98 -1968 544) (2159.98 -1903.99 544) (2135.98 -1928 576)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36783" - "plane" "(2240 -1983.99 544) (2175.98 -2048 544) (2200 -2024 576)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 -63.9062] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36782" - "plane" "(2175.99 -2048 544) (2095.98 -1968 544) (2120 -1944 576)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36781" - "plane" "(2216 -2008 576) (2135.98 -1928 576) (2159.97 -1903.99 544)" - "material" "DEV/REFLECTIVITY_50B" - "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" - } - } + "id" "36730" + "plane" "(1976 -2056 240) (1968 -2048 240) (1968 -2048 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "28105" - side - { - "id" "36792" - "plane" "(2192 -1792 576) (2192 -1760 576) (2271.99 -1760 576)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0.707107 0.707107 0 -28.7176] 0.25" - "vaxis" "[0.707107 -0.707107 0 28.7839] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36791" - "plane" "(2192 -1728 544) (2192 -1824 544) (2271.99 -1824 544)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 0.707107 0 -54.3094] 0.25" - "vaxis" "[0.707107 -0.707107 0 59.5705] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36790" - "plane" "(2191.99 -1824 544) (2191.99 -1728 544) (2191.99 -1760 576)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0.581238 0.813733 0 -12.487] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36789" - "plane" "(2271.99 -1728 544) (2271.99 -1824 544) (2271.99 -1792 576)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.581238 0.813733 0 -32.2796] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36788" - "plane" "(2271.99 -1824 544) (2191.99 -1824 544) (2192 -1792 576)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-0.581238 0.813733 0 -12.5415] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36787" - "plane" "(2192 -1728 544) (2271.99 -1728 544) (2271.99 -1760 576)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-0.581238 0.813733 0 -12.5415] 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" - } - } + "id" "36729" + "plane" "(2032 -1984 240) (2040 -1992 240) (2040 -1992 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "28089" - side - { - "id" "36798" - "plane" "(2088 -2136 576) (2072 -2152 576) (1992 -2072 576)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36797" - "plane" "(2032 -2032 544) (1968 -2096 544) (2047.98 -2176 544)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36796" - "plane" "(1968 -2096 544) (2032 -2032 544) (2008 -2056 576)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36795" - "plane" "(2112 -2112 544) (2048 -2176 544) (2072 -2152 576)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36794" - "plane" "(2048 -2176 544) (1968 -2096 544) (1992 -2072 576)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36793" - "plane" "(2088 -2136 576) (2008 -2056 576) (2032 -2032 544)" - "material" "DEV/REFLECTIVITY_50B" - "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" - } - } + "id" "36728" + "plane" "(1968 -2048 240) (2032 -1984 240) (2032 -1984 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "28074" - side - { - "id" "36804" - "plane" "(2112 -2112 544) (2048 -2176 544) (1968 -2096 544)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36803" - "plane" "(2031.99 -2032 464) (1968 -2096 464) (2048 -2176 464)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36802" - "plane" "(1968 -2096 464) (2032 -2032 464) (2032 -2032 544)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36801" - "plane" "(2112 -2112 464) (2048 -2176 464) (2048 -2176 544)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36800" - "plane" "(2048 -2176 464) (1968 -2096 464) (1968 -2096 544)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36799" - "plane" "(2032 -2032 464) (2112 -2112 464) (2112 -2112 544)" - "material" "DEV/REFLECTIVITY_50B" - "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" - } - } + "id" "36727" + "plane" "(2040 -1992 240) (1976 -2056 240) (1976 -2056 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + editor { - solid - { - "id" "28091" - side - { - "id" "36810" - "plane" "(1632 -2208 576) (1600 -2208 576) (1600 -2128 576)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0.707107 -0.707107 0 31.0914] 0.25" - "vaxis" "[-0.707107 -0.707107 0 31.025] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36809" - "plane" "(1664 -2128 544) (1568 -2128 544) (1568 -2208 544)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 -0.707107 0 4.67599] 0.25" - "vaxis" "[-0.707107 -0.707107 0 42.5581] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36808" - "plane" "(1568 -2128 544) (1664 -2128 544) (1632 -2128 576)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0.813733 -0.581238 0 30.429] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36807" - "plane" "(1664 -2208 544) (1568 -2208 544) (1600 -2208 576)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.813733 -0.581238 0 19.7822] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36806" - "plane" "(1568 -2208 544) (1568 -2128 544) (1600 -2128 576)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0.813733 0.581238 0 -30.3526] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36805" - "plane" "(1664 -2128 544) (1664 -2208 544) (1632 -2208 576)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0.813733 0.581238 0 -30.3526] 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" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - hidden + } + solid + { + "id" "27955" + side { - solid - { - "id" "28090" - side - { - "id" "36816" - "plane" "(1663.99 -2208 544) (1567.98 -2208 544) (1568 -2128 544)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 -0.707107 0 4.67599] 0.25" - "vaxis" "[-0.707107 -0.707107 0 42.5581] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36815" - "plane" "(1663.99 -2128 464) (1568 -2128 464) (1567.98 -2207.99 464)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.707107 -0.707107 0 4.67599] 0.25" - "vaxis" "[-0.707107 -0.707107 0 42.5581] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36814" - "plane" "(1568 -2128 464) (1663.99 -2128 464) (1663.99 -2128 544)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0.813733 -0.581238 0 30.429] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36813" - "plane" "(1663.99 -2208 464) (1567.98 -2207.99 464) (1567.98 -2208 544)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0.813733 -0.581238 0 19.7822] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36812" - "plane" "(1567.98 -2207.99 464) (1568 -2128 464) (1568 -2128 544)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0.813733 0.581238 0 -30.3526] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36811" - "plane" "(1663.99 -2128 464) (1663.99 -2208 464) (1663.99 -2208.01 544)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0.813733 0.581238 0 -30.3526] 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" - } - } + "id" "36738" + "plane" "(2208 -2016.01 384) (2159.99 -2064.02 384) (2079.98 -1984.02 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "28019" - side - { - "id" "36822" - "plane" "(1536 -2176 464) (1456 -2096 464) (1919.99 -2096 464)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36821" - "plane" "(1472 -2112 448) (1536 -2176 448) (1919.98 -2176 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36820" - "plane" "(1536 -2176 448) (1472 -2112 448) (1456 -2096 464)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36819" - "plane" "(1919.99 -2112 448) (1919.99 -2176 448) (1919.99 -2176 464)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36818" - "plane" "(1472 -2112 448) (1919.99 -2112 448) (1919.99 -2096 464)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36817" - "plane" "(1919.99 -2176 448) (1536 -2176 448) (1536 -2176 464)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 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" - } - } + "id" "36737" + "plane" "(2128 -1936 256) (2080 -1984 256) (2160 -2064 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "28023" - side - { - "id" "36828" - "plane" "(1920 -2176 464) (1920 -2096 464) (2159.99 -1856 464)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36827" - "plane" "(2240 -1856 448) (2176 -1856 448) (1920 -2112 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36826" - "plane" "(1919.99 -2176 448) (1919.99 -2112 448) (1919.99 -2096 464)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36825" - "plane" "(2176 -1856 448) (2240 -1856 448) (2240 -1856 464)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36824" - "plane" "(2159.99 -1856 464) (1919.99 -2096 464) (1919.99 -2112 448)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36823" - "plane" "(2240 -1856 448) (1919.99 -2176 448) (1919.99 -2176 464)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 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" - } - } + "id" "36736" + "plane" "(2080 -1984 256) (2128 -1936 256) (2128 -1936 384)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "44306" - side - { - "id" "36834" - "plane" "(2239.99 -1856 464) (2160 -1856 464) (2160 -1664 464)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0.046875] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36833" - "plane" "(2176 -1664 448) (2176 -1856 448) (2239.99 -1856 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0.046875] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36832" - "plane" "(2239.99 -1856 448) (2176 -1856 448) (2160 -1856 464)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 -0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36831" - "plane" "(2176 -1856 448) (2176 -1664 448) (2160 -1664 464)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36830" - "plane" "(2239.99 -1664 448) (2239.99 -1856 448) (2239.99 -1856 464)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36829" - "plane" "(2176 -1664 448) (2239.99 -1664 448) (2239.99 -1664 464)" - "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" - } - } + "id" "36735" + "plane" "(2208 -2016 256) (2160 -2064 256) (2160 -2064 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "27998" - side - { - "id" "36840" - "plane" "(2167.99 -1856 448) (2167.99 -1840 448) (2175.99 -1840 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36839" - "plane" "(2167.99 -1840 64) (2167.99 -1856 64) (2175.99 -1856 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36838" - "plane" "(2167.99 -1856 64) (2167.99 -1840 64) (2167.99 -1840 448)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36837" - "plane" "(2175.99 -1840 64) (2175.99 -1856 64) (2175.99 -1856 448)" - "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" "36836" - "plane" "(2167.98 -1840 64) (2175.99 -1840 64) (2175.99 -1840 448)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36835" - "plane" "(2175.99 -1856 64) (2167.99 -1856 64) (2167.98 -1856 448)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0.046875] 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" - } - } + "id" "36734" + "plane" "(2160 -2064 256) (2080 -1984 256) (2080 -1984 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "27989" - side - { - "id" "36846" - "plane" "(1904 -2112 448) (1904 -2104 448) (1919.99 -2104 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36845" - "plane" "(1904 -2104 64) (1904 -2112 64) (1919.99 -2112 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 -1 0 32] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36844" - "plane" "(1903.99 -2112 64) (1903.99 -2104 64) (1903.99 -2104 448)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36843" - "plane" "(1919.99 -2104 64) (1919.99 -2112 64) (1919.99 -2112 448)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36842" - "plane" "(1904 -2104 64) (1919.99 -2104 64) (1919.99 -2104 448)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0.046875] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "36841" - "plane" "(1919.99 -2112 64) (1903.99 -2112 64) (1904 -2112 448)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0.046875] 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" - } - } + "id" "36733" + "plane" "(2128 -1936 256) (2208 -2016 256) (2208 -2016 384)" + "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" - "visgroupid" "18" "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 1500]" + "visgroupautoshown" "1" } } -} -hidden -{ - entity + solid { - "id" "60446" - "classname" "func_detail" - hidden + "id" "27953" + side { - solid - { - "id" "32205" - side - { - "id" "37101" - "plane" "(0 -3200 288) (64 -3200 288) (128 -3136 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" "37100" - "plane" "(64 -3200 288) (0 -3200 288) (64 -3200 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37099" - "plane" "(128 -3072 288) (128 -3136 288) (128 -3136 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37098" - "plane" "(64 -3200 384) (0 -3200 288) (128 -3072 288)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37097" - "plane" "(128 -3136 384) (128 -3136 288) (64 -3200 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" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } + "id" "36744" + "plane" "(2128 -2096 384) (2080 -2144 384) (1999.99 -2064 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "32207" - side - { - "id" "37106" - "plane" "(128 -3072 288) (128 -3136 288) (320 -3136 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" "37105" - "plane" "(128 -3136 288) (128 -3072 288) (128 -3136 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37104" - "plane" "(320 -3136 384) (320 -3072 288) (320 -3136 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" "37103" - "plane" "(128 -3136 384) (128 -3072 288) (320 -3072 288)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37102" - "plane" "(320 -3136 384) (320 -3136 288) (128 -3136 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" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } + "id" "36743" + "plane" "(2048 -2016 256) (2000 -2064 256) (2080 -2144 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "32268" - side - { - "id" "37112" - "plane" "(176 -3136 352) (176 -3064 352) (192 -3064 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37111" - "plane" "(176 -3064 288) (176 -3136 288) (192 -3136 288)" - "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" "37110" - "plane" "(176 -3136 288) (176 -3064 288) (176 -3064 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37109" - "plane" "(192 -3064 288) (192 -3136 288) (192 -3136 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37108" - "plane" "(176 -3064 288) (192 -3064 288) (192 -3064 352)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37107" - "plane" "(192 -3136 288) (176 -3136 288) (176 -3136 352)" - "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" - } - } + "id" "36742" + "plane" "(2000 -2064 256) (2048 -2016 256) (2047.99 -2016 384)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "32267" - side - { - "id" "37118" - "plane" "(192 -3136 336) (192 -3072 336) (240 -3072 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37117" - "plane" "(192 -3072 288) (192 -3136 288) (240 -3136 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" "37116" - "plane" "(192 -3136 288) (192 -3072 288) (192 -3072 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37115" - "plane" "(240 -3072 288) (240 -3136 288) (240 -3136 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37114" - "plane" "(192 -3072 288) (240 -3072 288) (240 -3072 336)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37113" - "plane" "(240 -3136 288) (192 -3136 288) (192 -3136 336)" - "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" - } - } + "id" "36741" + "plane" "(2128 -2096 256) (2080 -2144 256) (2080 -2144 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "32270" - side - { - "id" "37124" - "plane" "(240 -3136 352) (240 -3064 352) (256 -3064 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37123" - "plane" "(240 -3064 288) (240 -3136 288) (256 -3136 288)" - "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" "37122" - "plane" "(240 -3136 288) (240 -3064 288) (240 -3064 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37121" - "plane" "(256 -3064 288) (256 -3136 288) (256 -3136 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37120" - "plane" "(240 -3064 288) (256 -3064 288) (256 -3064 352)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37119" - "plane" "(256 -3136 288) (240 -3136 288) (240 -3136 352)" - "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" - } - } + "id" "36740" + "plane" "(2080 -2144 256) (2000 -2064 256) (2000 -2064 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "32269" - side - { - "id" "37130" - "plane" "(192 -3136 352) (192 -3064 352) (240 -3064 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37129" - "plane" "(192 -3064 336) (192 -3136 336) (240 -3136 336)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37128" - "plane" "(192 -3136 336) (192 -3064 336) (192 -3064 352)" - "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" "37127" - "plane" "(240 -3064 336) (240 -3136 336) (240 -3136 352)" - "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" "37126" - "plane" "(192 -3064 336) (240 -3064 336) (240 -3064 352)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37125" - "plane" "(240 -3136 336) (192 -3136 336) (192 -3136 352)" - "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" - } - } + "id" "36739" + "plane" "(2048 -2016 256) (2128 -2096 256) (2128 -2096 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + editor { - solid - { - "id" "32188" - side - { - "id" "37135" - "plane" "(128 -3072 288) (112 -3056 288) (320 -3056 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" "37134" - "plane" "(112 -3056 288) (128 -3072 288) (128 -3072 272)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37133" - "plane" "(320 -3072 272) (320 -3072 288) (320 -3056 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" "37132" - "plane" "(128 -3072 272) (128 -3072 288) (320 -3072 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" "37131" - "plane" "(320 -3056 288) (112 -3056 288) (128 -3072 272)" - "material" "DEV/REFLECTIVITY_10B" - "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" - } - } + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - hidden + } + solid + { + "id" "27917" + side { - solid - { - "id" "32186" - side - { - "id" "37140" - "plane" "(0 -3200 288) (-16 -3184 288) (112 -3056 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" "37139" - "plane" "(-16 -3184 288) (0 -3200 288) (0 -3200 272)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37138" - "plane" "(128 -3072 272) (128 -3072 288) (112 -3056 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" "37137" - "plane" "(0 -3200 272) (0 -3200 288) (128 -3072 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" "37136" - "plane" "(112 -3056 288) (-16 -3184 288) (0 -3200 272)" - "material" "DEV/REFLECTIVITY_10B" - "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" - } - } + "id" "36750" + "plane" "(2047.98 -2176 192) (1983.98 -2112 192) (2111.98 -1984 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "32181" - side - { - "id" "37145" - "plane" "(0 -3456 288) (-16 -3456 288) (-16 -3184 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37144" - "plane" "(-16 -3456 288) (0 -3456 288) (0 -3456 272)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37143" - "plane" "(0 -3200 272) (0 -3200 288) (-16 -3184 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" "37142" - "plane" "(0 -3456 272) (0 -3456 288) (0 -3200 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" "37141" - "plane" "(-16 -3184 288) (-16 -3456 288) (0 -3456 272)" - "material" "DEV/REFLECTIVITY_10B" - "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" - } - } + "id" "36749" + "plane" "(2176 -2048 96) (2112 -1984 96) (1984 -2112 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "32201" - side - { - "id" "37150" - "plane" "(64 -3200 288) (0 -3200 288) (0 -3520 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37149" - "plane" "(64 -3520 288) (0 -3520 288) (64 -3520 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37148" - "plane" "(64 -3200 384) (0 -3200 288) (64 -3200 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" "37147" - "plane" "(64 -3520 384) (0 -3520 288) (0 -3200 288)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37146" - "plane" "(64 -3200 384) (64 -3200 288) (64 -3520 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" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } + "id" "36748" + "plane" "(2047.99 -2176 96) (1983.99 -2112 96) (1983.98 -2112 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" } - hidden + side { - solid - { - "id" "32192" - side - { - "id" "37155" - "plane" "(-416 -3456 288) (-416 -3520 288) (64 -3520 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" "37154" - "plane" "(-416 -3520 288) (-416 -3456 288) (-416 -3520 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37153" - "plane" "(64 -3520 384) (64 -3456 288) (64 -3520 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" "37152" - "plane" "(-416 -3520 384) (-416 -3456 288) (64 -3456 288)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37151" - "plane" "(64 -3520 384) (64 -3520 288) (-416 -3520 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" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } + "id" "36747" + "plane" "(2112 -1984 96) (2176 -2048 96) (2175.99 -2048 192)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "32173" - side - { - "id" "37160" - "plane" "(-320 -3456 288) (-320 -3440 288) (0 -3440 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" "37159" - "plane" "(-320 -3440 288) (-320 -3456 288) (-320 -3456 272)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37158" - "plane" "(0 -3456 272) (0 -3456 288) (0 -3440 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" "37157" - "plane" "(-320 -3456 272) (-320 -3456 288) (0 -3456 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" "37156" - "plane" "(0 -3456 272) (0 -3440 288) (-320 -3440 288)" - "material" "DEV/REFLECTIVITY_10B" - "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" - } - } + "id" "36746" + "plane" "(1984 -2111.99 96) (2112 -1984 96) (2111.98 -1984 192)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "32215" - side - { - "id" "37166" - "plane" "(-64 -3520 352) (-64 -3448 352) (-48 -3448 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37165" - "plane" "(-64 -3448 288) (-64 -3520 288) (-48 -3520 288)" - "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" "37164" - "plane" "(-64 -3520 288) (-64 -3448 288) (-64 -3448 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37163" - "plane" "(-48 -3448 288) (-48 -3520 288) (-48 -3520 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37162" - "plane" "(-64 -3448 288) (-48 -3448 288) (-48 -3448 352)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37161" - "plane" "(-48 -3520 288) (-64 -3520 288) (-64 -3520 352)" - "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" - } - } + "id" "36745" + "plane" "(2176 -2048 96) (2048 -2176 96) (2047.98 -2176 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + editor { - solid - { - "id" "32216" - side - { - "id" "37172" - "plane" "(-112 -3520 352) (-112 -3448 352) (-64 -3448 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37171" - "plane" "(-112 -3448 336) (-112 -3520 336) (-64 -3520 336)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37170" - "plane" "(-112 -3520 336) (-112 -3448 336) (-112 -3448 352)" - "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" "37169" - "plane" "(-64 -3448 336) (-64 -3520 336) (-64 -3520 352)" - "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" "37168" - "plane" "(-112 -3448 336) (-64 -3448 336) (-64 -3448 352)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37167" - "plane" "(-64 -3520 336) (-112 -3520 336) (-112 -3520 352)" - "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" - } - } + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - hidden + } + solid + { + "id" "27911" + side { - solid - { - "id" "32219" - side - { - "id" "37178" - "plane" "(-112 -3520 336) (-112 -3456 336) (-64 -3456 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37177" - "plane" "(-112 -3456 288) (-112 -3520 288) (-64 -3520 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" "37176" - "plane" "(-112 -3520 288) (-112 -3456 288) (-112 -3456 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37175" - "plane" "(-64 -3456 288) (-64 -3520 288) (-64 -3520 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37174" - "plane" "(-112 -3456 288) (-64 -3456 288) (-64 -3456 336)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37173" - "plane" "(-64 -3520 288) (-112 -3520 288) (-112 -3520 336)" - "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" - } - } + "id" "36756" + "plane" "(2047.99 -2176 96) (1983.99 -2112 96) (2112 -1984 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "32209" - side - { - "id" "37184" - "plane" "(-128 -3520 352) (-128 -3448 352) (-112 -3448 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37183" - "plane" "(-128 -3448 288) (-128 -3520 288) (-112 -3520 288)" - "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" "37182" - "plane" "(-128 -3520 288) (-128 -3448 288) (-128 -3448 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37181" - "plane" "(-112 -3448 288) (-112 -3520 288) (-112 -3520 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37180" - "plane" "(-128 -3448 288) (-112 -3448 288) (-112 -3448 352)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37179" - "plane" "(-112 -3520 288) (-128 -3520 288) (-128 -3520 352)" - "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" - } - } + "id" "36755" + "plane" "(2176 -2048 64) (2112 -1984 64) (1984 -2112 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "32250" - side - { - "id" "37190" - "plane" "(-272 -3520 352) (-272 -3448 352) (-256 -3448 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37189" - "plane" "(-272 -3448 288) (-272 -3520 288) (-256 -3520 288)" - "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" "37188" - "plane" "(-272 -3520 288) (-272 -3448 288) (-272 -3448 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37187" - "plane" "(-256 -3448 288) (-256 -3520 288) (-256 -3520 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37186" - "plane" "(-272 -3448 288) (-256 -3448 288) (-256 -3448 352)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37185" - "plane" "(-256 -3520 288) (-272 -3520 288) (-272 -3520 352)" - "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" - } - } + "id" "36754" + "plane" "(2048 -2176 64) (1984 -2112 64) (1984 -2112 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" } - hidden + side { - solid - { - "id" "32247" - side - { - "id" "37196" - "plane" "(-256 -3520 336) (-256 -3456 336) (-208 -3456 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37195" - "plane" "(-256 -3456 288) (-256 -3520 288) (-208 -3520 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" "37194" - "plane" "(-256 -3520 288) (-256 -3456 288) (-256 -3456 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37193" - "plane" "(-208 -3456 288) (-208 -3520 288) (-208 -3520 336)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37192" - "plane" "(-256 -3456 288) (-208 -3456 288) (-208 -3456 336)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37191" - "plane" "(-208 -3520 288) (-256 -3520 288) (-256 -3520 336)" - "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" - } - } + "id" "36753" + "plane" "(2112 -1984 64) (2176 -2048 64) (2176 -2048 96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "32248" - side - { - "id" "37202" - "plane" "(-208 -3520 352) (-208 -3448 352) (-192 -3448 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37201" - "plane" "(-208 -3448 288) (-208 -3520 288) (-192 -3520 288)" - "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" "37200" - "plane" "(-208 -3520 288) (-208 -3448 288) (-208 -3448 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37199" - "plane" "(-192 -3448 288) (-192 -3520 288) (-192 -3520 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37198" - "plane" "(-208 -3448 288) (-192 -3448 288) (-192 -3448 352)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37197" - "plane" "(-192 -3520 288) (-208 -3520 288) (-208 -3520 352)" - "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" - } - } + "id" "36752" + "plane" "(1984 -2112 64) (2112 -1984 64) (2112 -1984 96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "32249" - side - { - "id" "37208" - "plane" "(-256 -3520 352) (-256 -3448 352) (-208 -3448 352)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37207" - "plane" "(-256 -3448 336) (-256 -3520 336) (-208 -3520 336)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37206" - "plane" "(-256 -3520 336) (-256 -3448 336) (-256 -3448 352)" - "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" "37205" - "plane" "(-208 -3448 336) (-208 -3520 336) (-208 -3520 352)" - "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" "37204" - "plane" "(-256 -3448 336) (-208 -3448 336) (-208 -3448 352)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37203" - "plane" "(-208 -3520 336) (-256 -3520 336) (-256 -3520 352)" - "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" - } - } + "id" "36751" + "plane" "(2176 -2048 64) (2048 -2176 64) (2048 -2176 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + editor { - solid - { - "id" "32280" - side - { - "id" "37213" - "plane" "(-320 -3264 288) (-416 -3264 288) (-416 -3520 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37212" - "plane" "(-416 -3264 288) (-320 -3264 288) (-416 -3264 416)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37211" - "plane" "(-416 -3520 416) (-320 -3520 288) (-416 -3520 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" "37210" - "plane" "(-416 -3264 416) (-320 -3264 288) (-320 -3520 288)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37209" - "plane" "(-416 -3520 416) (-416 -3520 288) (-416 -3264 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" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - hidden + } + solid + { + "id" "27919" + side { - solid - { - "id" "32292" - side - { - "id" "37219" - "plane" "(-448 -3520 416) (-448 -3264 416) (-416 -3264 416)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37218" - "plane" "(-448 -3264 288) (-448 -3520 288) (-416 -3520 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" "37217" - "plane" "(-448 -3520 288) (-448 -3264 288) (-448 -3264 416)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37216" - "plane" "(-416 -3264 288) (-416 -3520 288) (-416 -3520 416)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37215" - "plane" "(-448 -3264 288) (-416 -3264 288) (-416 -3264 416)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37214" - "plane" "(-416 -3520 288) (-448 -3520 288) (-448 -3520 416)" - "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" - } - } + "id" "36762" + "plane" "(2176 -2048 192) (2144 -2016 192) (2208 -1952 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36761" + "plane" "(2240 -1984 64) (2208 -1952 64) (2144 -2016 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36760" + "plane" "(2176 -2048 64) (2144 -2016 64) (2144 -2016 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" "36759" + "plane" "(2208 -1952 64) (2240 -1984 64) (2240 -1984 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" "36758" + "plane" "(2144 -2016 64) (2208 -1952 64) (2208 -1952 192)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36757" + "plane" "(2240 -1984 64) (2176 -2048 64) (2176 -2048 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 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" "28009" + side + { + "id" "36768" + "plane" "(1807.99 -2176 208) (1807.99 -2128 208) (1887.99 -2128 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36767" + "plane" "(1807.99 -2128 64) (1807.99 -2176 64) (1887.99 -2176 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36766" + "plane" "(1807.99 -2176 64) (1807.99 -2128 64) (1807.99 -2128 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36765" + "plane" "(1887.99 -2128 64) (1887.99 -2176 64) (1887.99 -2176 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36764" + "plane" "(1807.99 -2128 64) (1887.99 -2128 64) (1887.99 -2128 208)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36763" + "plane" "(1887.99 -2176 64) (1807.99 -2176 64) (1807.99 -2176 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 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" "28104" + side + { + "id" "36774" + "plane" "(2192 -1824 544) (2192 -1728 544) (2272.02 -1728 544)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 -54.3094] 0.25" + "vaxis" "[0.707107 -0.707107 0 59.5705] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36773" + "plane" "(2192 -1728 464) (2192 -1824 464) (2271.98 -1824.01 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 -54.3094] 0.25" + "vaxis" "[0.707107 -0.707107 0 59.5705] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36772" + "plane" "(2191.99 -1824 464) (2191.99 -1728 464) (2191.99 -1728 544)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.581238 0.813733 0 -12.487] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36771" + "plane" "(2272 -1728 464) (2271.98 -1824.01 464) (2272 -1824 544)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.581238 0.813733 0 -32.2796] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36770" + "plane" "(2271.98 -1824.01 464) (2191.99 -1824 464) (2191.99 -1824 544)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.581238 0.813733 0 -12.5415] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36769" + "plane" "(2192 -1728 464) (2272 -1728 464) (2272.02 -1728 544)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.581238 0.813733 0 -12.5415] 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" "28085" + side + { + "id" "36780" + "plane" "(2240 -1984 544) (2175.98 -2048 544) (2096 -1968 544)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -63.9062] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36779" + "plane" "(2159.98 -1904.02 464) (2096 -1968 464) (2175.99 -2048 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -63.9062] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36778" + "plane" "(2096 -1968 464) (2159.98 -1904.01 464) (2159.98 -1904.01 544)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36777" + "plane" "(2240 -1984 464) (2175.98 -2048.01 464) (2175.98 -2048.02 544)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -63.9062] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36776" + "plane" "(2175.98 -2048 464) (2096 -1968 464) (2096 -1968 544)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36775" + "plane" "(2159.98 -1904.01 464) (2240 -1984 464) (2240 -1984.02 544)" + "material" "DEV/REFLECTIVITY_50B" + "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" "28086" + side + { + "id" "36786" + "plane" "(2216 -2008 576) (2200 -2024 576) (2120 -1944 576)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36785" + "plane" "(2159.98 -1904 544) (2095.99 -1968 544) (2175.98 -2048 544)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -63.9062] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36784" + "plane" "(2095.98 -1968 544) (2159.98 -1903.99 544) (2135.98 -1928 576)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36783" + "plane" "(2240 -1983.99 544) (2175.98 -2048 544) (2200 -2024 576)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -63.9062] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36782" + "plane" "(2175.99 -2048 544) (2095.98 -1968 544) (2120 -1944 576)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36781" + "plane" "(2216 -2008 576) (2135.98 -1928 576) (2159.97 -1903.99 544)" + "material" "DEV/REFLECTIVITY_50B" + "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" "28105" + side + { + "id" "36792" + "plane" "(2192 -1792 576) (2192 -1760 576) (2271.99 -1760 576)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0.707107 0.707107 0 -28.7176] 0.25" + "vaxis" "[0.707107 -0.707107 0 28.7839] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36791" + "plane" "(2192 -1728 544) (2192 -1824 544) (2271.99 -1824 544)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 -54.3094] 0.25" + "vaxis" "[0.707107 -0.707107 0 59.5705] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36790" + "plane" "(2191.99 -1824 544) (2191.99 -1728 544) (2191.99 -1760 576)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.581238 0.813733 0 -12.487] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36789" + "plane" "(2271.99 -1728 544) (2271.99 -1824 544) (2271.99 -1792 576)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.581238 0.813733 0 -32.2796] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36788" + "plane" "(2271.99 -1824 544) (2191.99 -1824 544) (2192 -1792 576)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.581238 0.813733 0 -12.5415] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36787" + "plane" "(2192 -1728 544) (2271.99 -1728 544) (2271.99 -1760 576)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.581238 0.813733 0 -12.5415] 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" "28089" + side + { + "id" "36798" + "plane" "(2088 -2136 576) (2072 -2152 576) (1992 -2072 576)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36797" + "plane" "(2032 -2032 544) (1968 -2096 544) (2047.98 -2176 544)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36796" + "plane" "(1968 -2096 544) (2032 -2032 544) (2008 -2056 576)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36795" + "plane" "(2112 -2112 544) (2048 -2176 544) (2072 -2152 576)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36794" + "plane" "(2048 -2176 544) (1968 -2096 544) (1992 -2072 576)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36793" + "plane" "(2088 -2136 576) (2008 -2056 576) (2032 -2032 544)" + "material" "DEV/REFLECTIVITY_50B" + "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" "28074" + side + { + "id" "36804" + "plane" "(2112 -2112 544) (2048 -2176 544) (1968 -2096 544)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36803" + "plane" "(2031.99 -2032 464) (1968 -2096 464) (2048 -2176 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36802" + "plane" "(1968 -2096 464) (2032 -2032 464) (2032 -2032 544)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36801" + "plane" "(2112 -2112 464) (2048 -2176 464) (2048 -2176 544)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36800" + "plane" "(2048 -2176 464) (1968 -2096 464) (1968 -2096 544)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36799" + "plane" "(2032 -2032 464) (2112 -2112 464) (2112 -2112 544)" + "material" "DEV/REFLECTIVITY_50B" + "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" "28091" + side + { + "id" "36810" + "plane" "(1632 -2208 576) (1600 -2208 576) (1600 -2128 576)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0.707107 -0.707107 0 31.0914] 0.25" + "vaxis" "[-0.707107 -0.707107 0 31.025] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36809" + "plane" "(1664 -2128 544) (1568 -2128 544) (1568 -2208 544)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 4.67599] 0.25" + "vaxis" "[-0.707107 -0.707107 0 42.5581] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36808" + "plane" "(1568 -2128 544) (1664 -2128 544) (1632 -2128 576)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.813733 -0.581238 0 30.429] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36807" + "plane" "(1664 -2208 544) (1568 -2208 544) (1600 -2208 576)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.813733 -0.581238 0 19.7822] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36806" + "plane" "(1568 -2208 544) (1568 -2128 544) (1600 -2128 576)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0.813733 0.581238 0 -30.3526] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36805" + "plane" "(1664 -2128 544) (1664 -2208 544) (1632 -2208 576)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0.813733 0.581238 0 -30.3526] 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" "28090" + side + { + "id" "36816" + "plane" "(1663.99 -2208 544) (1567.98 -2208 544) (1568 -2128 544)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 4.67599] 0.25" + "vaxis" "[-0.707107 -0.707107 0 42.5581] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36815" + "plane" "(1663.99 -2128 464) (1568 -2128 464) (1567.98 -2207.99 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 4.67599] 0.25" + "vaxis" "[-0.707107 -0.707107 0 42.5581] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36814" + "plane" "(1568 -2128 464) (1663.99 -2128 464) (1663.99 -2128 544)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.813733 -0.581238 0 30.429] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36813" + "plane" "(1663.99 -2208 464) (1567.98 -2207.99 464) (1567.98 -2208 544)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.813733 -0.581238 0 19.7822] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36812" + "plane" "(1567.98 -2207.99 464) (1568 -2128 464) (1568 -2128 544)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0.813733 0.581238 0 -30.3526] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36811" + "plane" "(1663.99 -2128 464) (1663.99 -2208 464) (1663.99 -2208.01 544)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0.813733 0.581238 0 -30.3526] 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" "28019" + side + { + "id" "36822" + "plane" "(1536 -2176 464) (1456 -2096 464) (1919.99 -2096 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36821" + "plane" "(1472 -2112 448) (1536 -2176 448) (1919.98 -2176 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36820" + "plane" "(1536 -2176 448) (1472 -2112 448) (1456 -2096 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36819" + "plane" "(1919.99 -2112 448) (1919.99 -2176 448) (1919.99 -2176 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36818" + "plane" "(1472 -2112 448) (1919.99 -2112 448) (1919.99 -2096 464)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36817" + "plane" "(1919.99 -2176 448) (1536 -2176 448) (1536 -2176 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 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" "28023" + side + { + "id" "36828" + "plane" "(1920 -2176 464) (1920 -2096 464) (2159.99 -1856 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36827" + "plane" "(2240 -1856 448) (2176 -1856 448) (1920 -2112 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36826" + "plane" "(1919.99 -2176 448) (1919.99 -2112 448) (1919.99 -2096 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36825" + "plane" "(2176 -1856 448) (2240 -1856 448) (2240 -1856 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36824" + "plane" "(2159.99 -1856 464) (1919.99 -2096 464) (1919.99 -2112 448)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36823" + "plane" "(2240 -1856 448) (1919.99 -2176 448) (1919.99 -2176 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 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" "44306" + side + { + "id" "36834" + "plane" "(2239.99 -1856 464) (2160 -1856 464) (2160 -1664 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0.046875] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36833" + "plane" "(2176 -1664 448) (2176 -1856 448) (2239.99 -1856 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0.046875] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36832" + "plane" "(2239.99 -1856 448) (2176 -1856 448) (2160 -1856 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36831" + "plane" "(2176 -1856 448) (2176 -1664 448) (2160 -1664 464)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36830" + "plane" "(2239.99 -1664 448) (2239.99 -1856 448) (2239.99 -1856 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36829" + "plane" "(2176 -1664 448) (2239.99 -1664 448) (2239.99 -1664 464)" + "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" "27998" + side + { + "id" "36840" + "plane" "(2167.99 -1856 448) (2167.99 -1840 448) (2175.99 -1840 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36839" + "plane" "(2167.99 -1840 64) (2167.99 -1856 64) (2175.99 -1856 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36838" + "plane" "(2167.99 -1856 64) (2167.99 -1840 64) (2167.99 -1840 448)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36837" + "plane" "(2175.99 -1840 64) (2175.99 -1856 64) (2175.99 -1856 448)" + "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" "36836" + "plane" "(2167.98 -1840 64) (2175.99 -1840 64) (2175.99 -1840 448)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36835" + "plane" "(2175.99 -1856 64) (2167.99 -1856 64) (2167.98 -1856 448)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0.046875] 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" "27989" + side + { + "id" "36846" + "plane" "(1904 -2112 448) (1904 -2104 448) (1919.99 -2104 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36845" + "plane" "(1904 -2104 64) (1904 -2112 64) (1919.99 -2112 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36844" + "plane" "(1903.99 -2112 64) (1903.99 -2104 64) (1903.99 -2104 448)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36843" + "plane" "(1919.99 -2104 64) (1919.99 -2112 64) (1919.99 -2112 448)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36842" + "plane" "(1904 -2104 64) (1919.99 -2104 64) (1919.99 -2104 448)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0.046875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "36841" + "plane" "(1919.99 -2112 64) (1903.99 -2112 64) (1904 -2112 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.046875] 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" "18" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "60446" + "classname" "func_detail" + solid + { + "id" "32205" + side + { + "id" "37101" + "plane" "(0 -3200 288) (64 -3200 288) (128 -3136 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" "37100" + "plane" "(64 -3200 288) (0 -3200 288) (64 -3200 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37099" + "plane" "(128 -3072 288) (128 -3136 288) (128 -3136 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37098" + "plane" "(64 -3200 384) (0 -3200 288) (128 -3072 288)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37097" + "plane" "(128 -3136 384) (128 -3136 288) (64 -3200 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "32207" + side + { + "id" "37106" + "plane" "(128 -3072 288) (128 -3136 288) (320 -3136 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" "37105" + "plane" "(128 -3136 288) (128 -3072 288) (128 -3136 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37104" + "plane" "(320 -3136 384) (320 -3072 288) (320 -3136 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" "37103" + "plane" "(128 -3136 384) (128 -3072 288) (320 -3072 288)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37102" + "plane" "(320 -3136 384) (320 -3136 288) (128 -3136 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "32268" + side + { + "id" "37112" + "plane" "(176 -3136 352) (176 -3064 352) (192 -3064 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37111" + "plane" "(176 -3064 288) (176 -3136 288) (192 -3136 288)" + "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" "37110" + "plane" "(176 -3136 288) (176 -3064 288) (176 -3064 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37109" + "plane" "(192 -3064 288) (192 -3136 288) (192 -3136 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37108" + "plane" "(176 -3064 288) (192 -3064 288) (192 -3064 352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37107" + "plane" "(192 -3136 288) (176 -3136 288) (176 -3136 352)" + "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" "32267" + side + { + "id" "37118" + "plane" "(192 -3136 336) (192 -3072 336) (240 -3072 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37117" + "plane" "(192 -3072 288) (192 -3136 288) (240 -3136 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" "37116" + "plane" "(192 -3136 288) (192 -3072 288) (192 -3072 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37115" + "plane" "(240 -3072 288) (240 -3136 288) (240 -3136 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37114" + "plane" "(192 -3072 288) (240 -3072 288) (240 -3072 336)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37113" + "plane" "(240 -3136 288) (192 -3136 288) (192 -3136 336)" + "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" "32270" + side + { + "id" "37124" + "plane" "(240 -3136 352) (240 -3064 352) (256 -3064 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37123" + "plane" "(240 -3064 288) (240 -3136 288) (256 -3136 288)" + "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" "37122" + "plane" "(240 -3136 288) (240 -3064 288) (240 -3064 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37121" + "plane" "(256 -3064 288) (256 -3136 288) (256 -3136 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37120" + "plane" "(240 -3064 288) (256 -3064 288) (256 -3064 352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37119" + "plane" "(256 -3136 288) (240 -3136 288) (240 -3136 352)" + "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" "32269" + side + { + "id" "37130" + "plane" "(192 -3136 352) (192 -3064 352) (240 -3064 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37129" + "plane" "(192 -3064 336) (192 -3136 336) (240 -3136 336)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37128" + "plane" "(192 -3136 336) (192 -3064 336) (192 -3064 352)" + "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" "37127" + "plane" "(240 -3064 336) (240 -3136 336) (240 -3136 352)" + "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" "37126" + "plane" "(192 -3064 336) (240 -3064 336) (240 -3064 352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37125" + "plane" "(240 -3136 336) (192 -3136 336) (192 -3136 352)" + "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" "32188" + side + { + "id" "37135" + "plane" "(128 -3072 288) (112 -3056 288) (320 -3056 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" "37134" + "plane" "(112 -3056 288) (128 -3072 288) (128 -3072 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37133" + "plane" "(320 -3072 272) (320 -3072 288) (320 -3056 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" "37132" + "plane" "(128 -3072 272) (128 -3072 288) (320 -3072 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" "37131" + "plane" "(320 -3056 288) (112 -3056 288) (128 -3072 272)" + "material" "DEV/REFLECTIVITY_10B" + "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" "32186" + side + { + "id" "37140" + "plane" "(0 -3200 288) (-16 -3184 288) (112 -3056 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" "37139" + "plane" "(-16 -3184 288) (0 -3200 288) (0 -3200 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37138" + "plane" "(128 -3072 272) (128 -3072 288) (112 -3056 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" "37137" + "plane" "(0 -3200 272) (0 -3200 288) (128 -3072 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" "37136" + "plane" "(112 -3056 288) (-16 -3184 288) (0 -3200 272)" + "material" "DEV/REFLECTIVITY_10B" + "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" "32181" + side + { + "id" "37145" + "plane" "(0 -3456 288) (-16 -3456 288) (-16 -3184 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37144" + "plane" "(-16 -3456 288) (0 -3456 288) (0 -3456 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37143" + "plane" "(0 -3200 272) (0 -3200 288) (-16 -3184 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" "37142" + "plane" "(0 -3456 272) (0 -3456 288) (0 -3200 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" "37141" + "plane" "(-16 -3184 288) (-16 -3456 288) (0 -3456 272)" + "material" "DEV/REFLECTIVITY_10B" + "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" "32201" + side + { + "id" "37150" + "plane" "(64 -3200 288) (0 -3200 288) (0 -3520 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37149" + "plane" "(64 -3520 288) (0 -3520 288) (64 -3520 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37148" + "plane" "(64 -3200 384) (0 -3200 288) (64 -3200 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" "37147" + "plane" "(64 -3520 384) (0 -3520 288) (0 -3200 288)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37146" + "plane" "(64 -3200 384) (64 -3200 288) (64 -3520 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "32192" + side + { + "id" "37155" + "plane" "(-416 -3456 288) (-416 -3520 288) (64 -3520 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" "37154" + "plane" "(-416 -3520 288) (-416 -3456 288) (-416 -3520 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37153" + "plane" "(64 -3520 384) (64 -3456 288) (64 -3520 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" "37152" + "plane" "(-416 -3520 384) (-416 -3456 288) (64 -3456 288)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37151" + "plane" "(64 -3520 384) (64 -3520 288) (-416 -3520 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "32173" + side + { + "id" "37160" + "plane" "(-320 -3456 288) (-320 -3440 288) (0 -3440 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" "37159" + "plane" "(-320 -3440 288) (-320 -3456 288) (-320 -3456 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37158" + "plane" "(0 -3456 272) (0 -3456 288) (0 -3440 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" "37157" + "plane" "(-320 -3456 272) (-320 -3456 288) (0 -3456 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" "37156" + "plane" "(0 -3456 272) (0 -3440 288) (-320 -3440 288)" + "material" "DEV/REFLECTIVITY_10B" + "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" "32215" + side + { + "id" "37166" + "plane" "(-64 -3520 352) (-64 -3448 352) (-48 -3448 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37165" + "plane" "(-64 -3448 288) (-64 -3520 288) (-48 -3520 288)" + "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" "37164" + "plane" "(-64 -3520 288) (-64 -3448 288) (-64 -3448 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37163" + "plane" "(-48 -3448 288) (-48 -3520 288) (-48 -3520 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37162" + "plane" "(-64 -3448 288) (-48 -3448 288) (-48 -3448 352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37161" + "plane" "(-48 -3520 288) (-64 -3520 288) (-64 -3520 352)" + "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" "32216" + side + { + "id" "37172" + "plane" "(-112 -3520 352) (-112 -3448 352) (-64 -3448 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37171" + "plane" "(-112 -3448 336) (-112 -3520 336) (-64 -3520 336)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37170" + "plane" "(-112 -3520 336) (-112 -3448 336) (-112 -3448 352)" + "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" "37169" + "plane" "(-64 -3448 336) (-64 -3520 336) (-64 -3520 352)" + "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" "37168" + "plane" "(-112 -3448 336) (-64 -3448 336) (-64 -3448 352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37167" + "plane" "(-64 -3520 336) (-112 -3520 336) (-112 -3520 352)" + "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" "32219" + side + { + "id" "37178" + "plane" "(-112 -3520 336) (-112 -3456 336) (-64 -3456 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37177" + "plane" "(-112 -3456 288) (-112 -3520 288) (-64 -3520 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" "37176" + "plane" "(-112 -3520 288) (-112 -3456 288) (-112 -3456 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37175" + "plane" "(-64 -3456 288) (-64 -3520 288) (-64 -3520 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37174" + "plane" "(-112 -3456 288) (-64 -3456 288) (-64 -3456 336)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37173" + "plane" "(-64 -3520 288) (-112 -3520 288) (-112 -3520 336)" + "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" "32209" + side + { + "id" "37184" + "plane" "(-128 -3520 352) (-128 -3448 352) (-112 -3448 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37183" + "plane" "(-128 -3448 288) (-128 -3520 288) (-112 -3520 288)" + "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" "37182" + "plane" "(-128 -3520 288) (-128 -3448 288) (-128 -3448 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37181" + "plane" "(-112 -3448 288) (-112 -3520 288) (-112 -3520 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37180" + "plane" "(-128 -3448 288) (-112 -3448 288) (-112 -3448 352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37179" + "plane" "(-112 -3520 288) (-128 -3520 288) (-128 -3520 352)" + "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" "32250" + side + { + "id" "37190" + "plane" "(-272 -3520 352) (-272 -3448 352) (-256 -3448 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37189" + "plane" "(-272 -3448 288) (-272 -3520 288) (-256 -3520 288)" + "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" "37188" + "plane" "(-272 -3520 288) (-272 -3448 288) (-272 -3448 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37187" + "plane" "(-256 -3448 288) (-256 -3520 288) (-256 -3520 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37186" + "plane" "(-272 -3448 288) (-256 -3448 288) (-256 -3448 352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37185" + "plane" "(-256 -3520 288) (-272 -3520 288) (-272 -3520 352)" + "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" "32247" + side + { + "id" "37196" + "plane" "(-256 -3520 336) (-256 -3456 336) (-208 -3456 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37195" + "plane" "(-256 -3456 288) (-256 -3520 288) (-208 -3520 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" "37194" + "plane" "(-256 -3520 288) (-256 -3456 288) (-256 -3456 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37193" + "plane" "(-208 -3456 288) (-208 -3520 288) (-208 -3520 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37192" + "plane" "(-256 -3456 288) (-208 -3456 288) (-208 -3456 336)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37191" + "plane" "(-208 -3520 288) (-256 -3520 288) (-256 -3520 336)" + "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" "32248" + side + { + "id" "37202" + "plane" "(-208 -3520 352) (-208 -3448 352) (-192 -3448 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37201" + "plane" "(-208 -3448 288) (-208 -3520 288) (-192 -3520 288)" + "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" "37200" + "plane" "(-208 -3520 288) (-208 -3448 288) (-208 -3448 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37199" + "plane" "(-192 -3448 288) (-192 -3520 288) (-192 -3520 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37198" + "plane" "(-208 -3448 288) (-192 -3448 288) (-192 -3448 352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37197" + "plane" "(-192 -3520 288) (-208 -3520 288) (-208 -3520 352)" + "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" "32249" + side + { + "id" "37208" + "plane" "(-256 -3520 352) (-256 -3448 352) (-208 -3448 352)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37207" + "plane" "(-256 -3448 336) (-256 -3520 336) (-208 -3520 336)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37206" + "plane" "(-256 -3520 336) (-256 -3448 336) (-256 -3448 352)" + "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" "37205" + "plane" "(-208 -3448 336) (-208 -3520 336) (-208 -3520 352)" + "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" "37204" + "plane" "(-256 -3448 336) (-208 -3448 336) (-208 -3448 352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37203" + "plane" "(-208 -3520 336) (-256 -3520 336) (-256 -3520 352)" + "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" "32280" + side + { + "id" "37213" + "plane" "(-320 -3264 288) (-416 -3264 288) (-416 -3520 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37212" + "plane" "(-416 -3264 288) (-320 -3264 288) (-416 -3264 416)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "32288" - side - { - "id" "37224" - "plane" "(-448 -3264 288) (-544 -3264 288) (-544 -3520 288)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37223" - "plane" "(-448 -3264 416) (-544 -3264 288) (-448 -3264 288)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37222" - "plane" "(-448 -3520 288) (-544 -3520 288) (-448 -3520 416)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37221" - "plane" "(-448 -3520 416) (-544 -3520 288) (-544 -3264 288)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37220" - "plane" "(-448 -3264 416) (-448 -3264 288) (-448 -3520 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" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } + "id" "37211" + "plane" "(-416 -3520 416) (-320 -3520 288) (-416 -3520 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" } - hidden + side { - solid - { - "id" "32383" - side - { - "id" "37229" - "plane" "(-1024 -3264 192) (-1024 -3360 192) (-704 -3360 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" "37228" - "plane" "(-1024 -3360 192) (-1024 -3264 192) (-1024 -3360 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" "37227" - "plane" "(-704 -3360 320) (-704 -3264 192) (-704 -3360 192)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37226" - "plane" "(-1024 -3360 320) (-1024 -3264 192) (-704 -3264 192)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37225" - "plane" "(-704 -3360 320) (-704 -3360 192) (-1024 -3360 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 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } + "id" "37210" + "plane" "(-416 -3264 416) (-320 -3264 288) (-320 -3520 288)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "32388" - side - { - "id" "37234" - "plane" "(-1024 -3424 192) (-1024 -3520 192) (-704 -3520 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" "37233" - "plane" "(-1024 -3424 320) (-1024 -3520 192) (-1024 -3424 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" "37232" - "plane" "(-704 -3424 192) (-704 -3520 192) (-704 -3424 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37231" - "plane" "(-704 -3424 320) (-704 -3520 192) (-1024 -3520 192)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37230" - "plane" "(-1024 -3424 320) (-1024 -3424 192) (-704 -3424 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 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } + "id" "37209" + "plane" "(-416 -3520 416) (-416 -3520 288) (-416 -3264 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" } - hidden + editor { - solid - { - "id" "32394" - side - { - "id" "37240" - "plane" "(-1024 -3424 320) (-1024 -3360 320) (-704 -3360 320)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37239" - "plane" "(-1024 -3360 192) (-1024 -3424 192) (-704 -3424 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" "37238" - "plane" "(-1024 -3424 192) (-1024 -3360 192) (-1024 -3360 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" "37237" - "plane" "(-704 -3360 192) (-704 -3424 192) (-704 -3424 320)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37236" - "plane" "(-1024 -3360 192) (-704 -3360 192) (-704 -3360 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" "37235" - "plane" "(-704 -3424 192) (-1024 -3424 192) (-1024 -3424 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 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - hidden + } + solid + { + "id" "32292" + side { - solid - { - "id" "33822" - side - { - "id" "37245" - "plane" "(-256 -2752 384) (-256 -2752 256) (-256 -2432 256)" - "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" "37244" - "plane" "(0 -2432 256) (-256 -2432 256) (-256 -2752 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" "37243" - "plane" "(-256 -2432 384) (-256 -2432 256) (0 -2432 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37242" - "plane" "(0 -2752 256) (-256 -2752 256) (-256 -2752 384)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37241" - "plane" "(-256 -2752 384) (-256 -2432 384) (0 -2432 256)" - "material" "DEV/REFLECTIVITY_30B" - "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" - } - } + "id" "37219" + "plane" "(-448 -3520 416) (-448 -3264 416) (-416 -3264 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "33821" - side - { - "id" "37250" - "plane" "(16 -2768 256) (0 -2752 256) (0 -2432 256)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37249" - "plane" "(0 -2432 240) (0 -2432 256) (0 -2752 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37248" - "plane" "(16 -2416 256) (0 -2432 256) (0 -2432 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37247" - "plane" "(0 -2752 240) (0 -2752 256) (16 -2768 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37246" - "plane" "(0 -2432 240) (0 -2752 240) (16 -2768 256)" - "material" "DEV/REFLECTIVITY_10B" - "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" - } - } + "id" "37218" + "plane" "(-448 -3264 288) (-448 -3520 288) (-416 -3520 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" } - hidden + side { - solid - { - "id" "33839" - side - { - "id" "37256" - "plane" "(-256 -2756 384) (-256 -2752 384) (0 -2752 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37255" - "plane" "(-256 -2752 364) (-256 -2756 364) (-16 -2756 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37254" - "plane" "(-16 -2752 256) (-16 -2756 256) (0 -2756 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37253" - "plane" "(-256 -2756 364) (-256 -2752 364) (-256 -2752 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37252" - "plane" "(-256 -2752 364) (-16 -2752 256) (0 -2752 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37251" - "plane" "(-256 -2756 384) (0 -2756 256) (-16 -2756 256)" - "material" "DEV/REFLECTIVITY_30B" - "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" - } - } + "id" "37217" + "plane" "(-448 -3520 288) (-448 -3264 288) (-448 -3264 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "33860" - side - { - "id" "37261" - "plane" "(-8 -2752 256) (0 -2752 256) (16 -2768 256)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37260" - "plane" "(-8 -2752 240) (0 -2752 240) (0 -2752 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37259" - "plane" "(16 -2768 256) (0 -2752 256) (0 -2752 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37258" - "plane" "(0 -2752 240) (-8 -2752 240) (-8 -2768 256)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37257" - "plane" "(-8 -2752 240) (-8 -2752 256) (-8 -2768 256)" - "material" "DEV/REFLECTIVITY_10B" - "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" - } - } + "id" "37216" + "plane" "(-416 -3264 288) (-416 -3520 288) (-416 -3520 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "33831" - side - { - "id" "37267" - "plane" "(-352 -2756 256) (-352 -2752 256) (-256 -2752 384)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37266" - "plane" "(-336 -2752 256) (-336 -2756 256) (-256 -2756 364)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37265" - "plane" "(-352 -2752 256) (-352 -2756 256) (-336 -2756 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37264" - "plane" "(-256 -2752 364) (-256 -2756 364) (-256 -2756 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37263" - "plane" "(-256 -2752 384) (-352 -2752 256) (-336 -2752 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37262" - "plane" "(-352 -2756 256) (-256 -2756 384) (-256 -2756 364)" - "material" "DEV/REFLECTIVITY_30B" - "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" - } - } + "id" "37215" + "plane" "(-448 -3264 288) (-416 -3264 288) (-416 -3264 416)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "33828" - side - { - "id" "37272" - "plane" "(-256 -2432 384) (-256 -2432 256) (-256 -2752 256)" - "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" "37271" - "plane" "(-352 -2752 256) (-256 -2752 256) (-256 -2432 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" "37270" - "plane" "(-352 -2432 256) (-256 -2432 256) (-256 -2432 384)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37269" - "plane" "(-256 -2752 384) (-256 -2752 256) (-352 -2752 256)" - "material" "DEV/REFLECTIVITY_50B" - "uaxis" "[0 0 1 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37268" - "plane" "(-352 -2752 256) (-352 -2432 256) (-256 -2432 384)" - "material" "DEV/REFLECTIVITY_30B" - "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" - } - } + "id" "37214" + "plane" "(-416 -3520 288) (-448 -3520 288) (-448 -3520 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + editor { - solid - { - "id" "33850" - side - { - "id" "37278" - "plane" "(-352 -2432 256) (-352 -2428 256) (-256 -2428 384)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37277" - "plane" "(-336 -2428 256) (-336 -2432 256) (-256 -2432 364)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37276" - "plane" "(-352 -2428 256) (-352 -2432 256) (-336 -2432 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37275" - "plane" "(-256 -2428 364) (-256 -2432 364) (-256 -2432 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37274" - "plane" "(-256 -2428 384) (-352 -2428 256) (-336 -2428 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37273" - "plane" "(-352 -2432 256) (-256 -2432 384) (-256 -2432 364)" - "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" - } - } + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" } - hidden + } + solid + { + "id" "32288" + side { - solid - { - "id" "33849" - side - { - "id" "37284" - "plane" "(-256 -2432 384) (-256 -2428 384) (0 -2428 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37283" - "plane" "(-256 -2428 364) (-256 -2432 364) (-16 -2432 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37282" - "plane" "(-16 -2428 256) (-16 -2432 256) (0 -2432 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37281" - "plane" "(-256 -2432 364) (-256 -2428 364) (-256 -2428 384)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 48] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37280" - "plane" "(-256 -2428 364) (-16 -2428 256) (0 -2428 256)" - "material" "DEV/REFLECTIVITY_30B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37279" - "plane" "(-256 -2432 384) (0 -2432 256) (-16 -2432 256)" - "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" - } - } + "id" "37224" + "plane" "(-448 -3264 288) (-544 -3264 288) (-544 -3520 288)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" } - hidden + side { - solid - { - "id" "33861" - side - { - "id" "37289" - "plane" "(16 -2416 256) (0 -2432 256) (-8 -2432 256)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[-1 0 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37288" - "plane" "(-8 -2432 256) (0 -2432 256) (0 -2432 240)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37287" - "plane" "(0 -2432 240) (0 -2432 256) (16 -2416 256)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37286" - "plane" "(-8 -2432 240) (0 -2432 240) (16 -2416 256)" - "material" "DEV/REFLECTIVITY_10B" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37285" - "plane" "(-8 -2416 256) (-8 -2432 256) (-8 -2432 240)" - "material" "DEV/REFLECTIVITY_10B" - "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" - } - } + "id" "37223" + "plane" "(-448 -3264 416) (-544 -3264 288) (-448 -3264 288)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37222" + "plane" "(-448 -3520 288) (-544 -3520 288) (-448 -3520 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37221" + "plane" "(-448 -3520 416) (-544 -3520 288) (-544 -3264 288)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37220" + "plane" "(-448 -3264 416) (-448 -3264 288) (-448 -3520 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" } editor { "color" "0 180 0" - "visgroupid" "18" "visgroupshown" "1" - "visgroupautoshown" "0" - "logicalpos" "[0 2500]" + "visgroupautoshown" "1" + } + } + solid + { + "id" "32383" + side + { + "id" "37229" + "plane" "(-1024 -3264 192) (-1024 -3360 192) (-704 -3360 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" "37228" + "plane" "(-1024 -3360 192) (-1024 -3264 192) (-1024 -3360 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" "37227" + "plane" "(-704 -3360 320) (-704 -3264 192) (-704 -3360 192)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37226" + "plane" "(-1024 -3360 320) (-1024 -3264 192) (-704 -3264 192)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37225" + "plane" "(-704 -3360 320) (-704 -3360 192) (-1024 -3360 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "32388" + side + { + "id" "37234" + "plane" "(-1024 -3424 192) (-1024 -3520 192) (-704 -3520 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" "37233" + "plane" "(-1024 -3424 320) (-1024 -3520 192) (-1024 -3424 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" "37232" + "plane" "(-704 -3424 192) (-704 -3520 192) (-704 -3424 320)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37231" + "plane" "(-704 -3424 320) (-704 -3520 192) (-1024 -3520 192)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37230" + "plane" "(-1024 -3424 320) (-1024 -3424 192) (-704 -3424 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "32394" + side + { + "id" "37240" + "plane" "(-1024 -3424 320) (-1024 -3360 320) (-704 -3360 320)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37239" + "plane" "(-1024 -3360 192) (-1024 -3424 192) (-704 -3424 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" "37238" + "plane" "(-1024 -3424 192) (-1024 -3360 192) (-1024 -3360 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" "37237" + "plane" "(-704 -3360 192) (-704 -3424 192) (-704 -3424 320)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37236" + "plane" "(-1024 -3360 192) (-704 -3360 192) (-704 -3360 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" "37235" + "plane" "(-704 -3424 192) (-1024 -3424 192) (-1024 -3424 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "33822" + side + { + "id" "37245" + "plane" "(-256 -2752 384) (-256 -2752 256) (-256 -2432 256)" + "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" "37244" + "plane" "(0 -2432 256) (-256 -2432 256) (-256 -2752 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" "37243" + "plane" "(-256 -2432 384) (-256 -2432 256) (0 -2432 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37242" + "plane" "(0 -2752 256) (-256 -2752 256) (-256 -2752 384)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37241" + "plane" "(-256 -2752 384) (-256 -2432 384) (0 -2432 256)" + "material" "DEV/REFLECTIVITY_30B" + "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" "33821" + side + { + "id" "37250" + "plane" "(16 -2768 256) (0 -2752 256) (0 -2432 256)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37249" + "plane" "(0 -2432 240) (0 -2432 256) (0 -2752 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37248" + "plane" "(16 -2416 256) (0 -2432 256) (0 -2432 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37247" + "plane" "(0 -2752 240) (0 -2752 256) (16 -2768 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37246" + "plane" "(0 -2432 240) (0 -2752 240) (16 -2768 256)" + "material" "DEV/REFLECTIVITY_10B" + "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" "33839" + side + { + "id" "37256" + "plane" "(-256 -2756 384) (-256 -2752 384) (0 -2752 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37255" + "plane" "(-256 -2752 364) (-256 -2756 364) (-16 -2756 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37254" + "plane" "(-16 -2752 256) (-16 -2756 256) (0 -2756 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37253" + "plane" "(-256 -2756 364) (-256 -2752 364) (-256 -2752 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37252" + "plane" "(-256 -2752 364) (-16 -2752 256) (0 -2752 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37251" + "plane" "(-256 -2756 384) (0 -2756 256) (-16 -2756 256)" + "material" "DEV/REFLECTIVITY_30B" + "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" "33860" + side + { + "id" "37261" + "plane" "(-8 -2752 256) (0 -2752 256) (16 -2768 256)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37260" + "plane" "(-8 -2752 240) (0 -2752 240) (0 -2752 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37259" + "plane" "(16 -2768 256) (0 -2752 256) (0 -2752 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37258" + "plane" "(0 -2752 240) (-8 -2752 240) (-8 -2768 256)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37257" + "plane" "(-8 -2752 240) (-8 -2752 256) (-8 -2768 256)" + "material" "DEV/REFLECTIVITY_10B" + "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" "33831" + side + { + "id" "37267" + "plane" "(-352 -2756 256) (-352 -2752 256) (-256 -2752 384)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37266" + "plane" "(-336 -2752 256) (-336 -2756 256) (-256 -2756 364)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37265" + "plane" "(-352 -2752 256) (-352 -2756 256) (-336 -2756 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37264" + "plane" "(-256 -2752 364) (-256 -2756 364) (-256 -2756 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37263" + "plane" "(-256 -2752 384) (-352 -2752 256) (-336 -2752 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37262" + "plane" "(-352 -2756 256) (-256 -2756 384) (-256 -2756 364)" + "material" "DEV/REFLECTIVITY_30B" + "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" "33828" + side + { + "id" "37272" + "plane" "(-256 -2432 384) (-256 -2432 256) (-256 -2752 256)" + "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" "37271" + "plane" "(-352 -2752 256) (-256 -2752 256) (-256 -2432 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" "37270" + "plane" "(-352 -2432 256) (-256 -2432 256) (-256 -2432 384)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37269" + "plane" "(-256 -2752 384) (-256 -2752 256) (-352 -2752 256)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37268" + "plane" "(-352 -2752 256) (-352 -2432 256) (-256 -2432 384)" + "material" "DEV/REFLECTIVITY_30B" + "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" "33850" + side + { + "id" "37278" + "plane" "(-352 -2432 256) (-352 -2428 256) (-256 -2428 384)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37277" + "plane" "(-336 -2428 256) (-336 -2432 256) (-256 -2432 364)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37276" + "plane" "(-352 -2428 256) (-352 -2432 256) (-336 -2432 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37275" + "plane" "(-256 -2428 364) (-256 -2432 364) (-256 -2432 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37274" + "plane" "(-256 -2428 384) (-352 -2428 256) (-336 -2428 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37273" + "plane" "(-352 -2432 256) (-256 -2432 384) (-256 -2432 364)" + "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" "33849" + side + { + "id" "37284" + "plane" "(-256 -2432 384) (-256 -2428 384) (0 -2428 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37283" + "plane" "(-256 -2428 364) (-256 -2432 364) (-16 -2432 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37282" + "plane" "(-16 -2428 256) (-16 -2432 256) (0 -2432 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37281" + "plane" "(-256 -2432 364) (-256 -2428 364) (-256 -2428 384)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37280" + "plane" "(-256 -2428 364) (-16 -2428 256) (0 -2428 256)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37279" + "plane" "(-256 -2432 384) (0 -2432 256) (-16 -2432 256)" + "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" "33861" + side + { + "id" "37289" + "plane" "(16 -2416 256) (0 -2432 256) (-8 -2432 256)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37288" + "plane" "(-8 -2432 256) (0 -2432 256) (0 -2432 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37287" + "plane" "(0 -2432 240) (0 -2432 256) (16 -2416 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37286" + "plane" "(-8 -2432 240) (0 -2432 240) (16 -2416 256)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37285" + "plane" "(-8 -2416 256) (-8 -2432 256) (-8 -2432 240)" + "material" "DEV/REFLECTIVITY_10B" + "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" "18" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } } hidden { @@ -234811,7 +234757,6 @@ entity editor { "color" "220 30 220" - "visgroupid" "23" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[500 4500]" diff --git a/MCDV/shaders/depth.fs b/MCDV/shaders/depth.fs index 4ed4310..6bf36d5 100644 --- a/MCDV/shaders/depth.fs +++ b/MCDV/shaders/depth.fs @@ -6,6 +6,7 @@ uniform vec3 color; uniform float HEIGHT_MIN; uniform float HEIGHT_MAX; uniform float write_playable; +uniform float write_cover; in vec3 FragPos; in float Depth; @@ -20,5 +21,5 @@ void main() { float height = pow(remap(FragPos.y, HEIGHT_MIN, HEIGHT_MAX, 0, 1), 2.2); - FragColor = vec4(write_playable, height, 0, 1); + FragColor = vec4(write_playable, height, write_cover, 1); } \ No newline at end of file diff --git a/MCDV/shaders/ss_comp_main.fs b/MCDV/shaders/ss_comp_main.fs index eb29e1f..544c71e 100644 --- a/MCDV/shaders/ss_comp_main.fs +++ b/MCDV/shaders/ss_comp_main.fs @@ -11,13 +11,16 @@ out vec4 FragColor; // ( A bunch of vectors that give you the location of different entities ) uniform vec3 bounds_NWU; // North-West-Upper coordinate of the playspace (worldspace) uniform vec3 bounds_SEL; // South-East-Lower coordinate of the playspace (worldspace) -uniform vec2 bounds_NWU_SS; // North-West coordinate of the playspace (screen space) -uniform vec2 bounds_SEL_SS; // South-East coordinate of the playspace (screen space) +uniform vec2 bounds_NWU_SS; // **North-West coordinate of the playspace (UV Screenspace) +uniform vec2 bounds_SEL_SS; // **South-East coordinate of the playspace (UV Screenspace) -uniform vec2 pos_spawn_ct; // Location of the CT Spawn (0-1) -uniform vec2 pos_spawn_t; // Location of the T Spawn (0-1) -uniform vec2 bombsite_a; // Location of bomsite A (0-1) -uniform vec2 bombsite_b; // Location of bombsite B (0-1) +uniform vec2 pos_spawn_ct; // **Location of the CT Spawn (UV Screenspace) +uniform vec2 pos_spawn_t; // **Location of the T Spawn (UV Screenspace) +uniform vec2 bombsite_a; // **Location of bomsite A (UV Screenspace) +uniform vec2 bombsite_b; // **Location of bombsite B (UV Screenspace) + +uniform int cmdl_shadows_enable; // Commandline switch --ao +uniform int cmdl_ao_enable; // Commandline switch --shadows // SAMPLER UNIFORMS // Image Inputs _______________________________________________________________________________ @@ -30,8 +33,8 @@ uniform sampler2D tex_playspace; // Playspace // A: Playable Space (0 or 1) uniform sampler2D tex_objectives; // Objectives - // R: Buzones (0 or 1) - // G: none + // R: Objectives (0 or 1) + // G: Buzones (0 or 1) // B: none // A: Buyzones & Bombsites (mask 0-1) @@ -50,7 +53,7 @@ uniform sampler2D texture2; // Custom Image input 5 (**RGBA) // SHADER HELPERS // ____________________________________________________________________________________________ -// ( A collection of simple blend modes ) +// --------------------------------------- Blend modes ---------------------------------------- vec3 lerp(vec3 a, vec3 b, float w) { @@ -67,6 +70,33 @@ vec4 blend_add(vec4 a, vec4 b, float s) return vec4(a.rgb + (b.rgb * s), a.a); } +// ------------------------------------------ maths ------------------------------------------- +float remap(float value, float low1, float high1, float low2, float high2) +{ + return low2 + (value - low1) * (high2 - low2) / (high1 - low1); +} + +// ---------------------------------------- transforms ---------------------------------------- +vec2 worlspaceToScreen(vec3 worldCoord) +{ + return vec2( + remap(worldCoord.x, bounds_NWU.x, bounds_SEL.x, 0, 1), + remap(worldCoord.y, bounds_SEL.y, bounds_NWU.y, 0, 1)); +} + +vec3 screenSpaceToWorld(vec2 screenCoord, float heightSample) +{ + return vec3( + remap(screenCoord.x, 0, 1, bounds_NWU.x, bounds_SEL.x), + remap(screenCoord.y, 0, 1, bounds_SEL.y, bounds_NWU.y), + remap(heightSample, 0, 1, bounds_SEL.z, bounds_NWU.z)); +} + +float screenHeightToWorld(float screenHeight) +{ + return remap(screenHeight, 0, 1, bounds_SEL.z, bounds_NWU.z); +} + // -------------------------------------- sample helpers -------------------------------------- vec4 sample_gradient(float height) @@ -78,12 +108,12 @@ float get_playspace(vec4 sample_playspace) { return sample_playspace.a; } float get_playspace_height(vec4 sample_playspace) { return sample_playspace.a * sample_playspace.r; } float get_playspace_inverse_height(vec4 sample_playspace) { return sample_playspace.a * sample_playspace.g; } -float get_height(vec4 sample_playspace) { return sample_playspace.g; } -float get_baked_light(vec4 sample_playspace) { return sample_playspace.r; } +float get_height(vec4 sample_playspace) { return sample_playspace.r; } + -// -------------------------------------- kernel filters -------------------------------------- +// ---------------------------------- kernel / trace filters ---------------------------------- // Given an 0-1 mask, return a 'glow value' -float kernel_filter_glow(sampler2D sampler, int channelID = 0, int sample_size = 16) +float kernel_filter_glow(sampler2D sampler, int channelID = 0, int sample_size = 16, int inverse = 0) { vec2 pixel_size = 1.0 / vec2(textureSize(sampler, 0)); @@ -93,7 +123,9 @@ float kernel_filter_glow(sampler2D sampler, int channelID = 0, int sample_size = // Process kernel for(int x = 0; x <= sample_double; x++){ for(int y = 0; y <= sample_double; y++){ + if(inverse == 0) sT += texture(sampler, TexCoords + vec2((-sample_size + x) * pixel_size.x, (-sample_size + y) * pixel_size.y))[channelID]; + else sT += 1 - texture(sampler, TexCoords + vec2((-sample_size + x) * pixel_size.x, (-sample_size + y) * pixel_size.y))[channelID]; } } @@ -122,6 +154,58 @@ float kernel_filter_outline(sampler2D sampler, int channelID = 0, int sample_siz return max(min(sT, 1) - texture(sampler, TexCoords)[channelID], 0); } +// Given a height map, return a shadow map for this sample +float trace_shadow(sampler2D heightSampler, int channelID = 0) +{ + int traceCount = 1024; + + vec3 angleV = vec3(-0.5, 1, 1); + + vec3 sampleWorldCoord = screenSpaceToWorld(TexCoords, texture(heightSampler, TexCoords).r); + + float sD = 0; + + for(int i = 0; i < traceCount; i++) + { + vec3 traceOffset = angleV * i; + vec3 stepSampleLoc = sampleWorldCoord + traceOffset; + vec2 uvSampleLoc = worlspaceToScreen(stepSampleLoc); + float stepSampleHeight = screenHeightToWorld(texture(heightSampler, uvSampleLoc).r); + + if(stepSampleHeight-sampleWorldCoord.z > traceOffset.z) + { + sD += 1; + } + } + + return clamp(sD, 0, 1); +} + +// Given a height map, return an ambient occlusion term for this sample +// This is a wip, expect kinda shitty results :) +float kernel_ao_basic(sampler2D sampler, int channelID = 0, int sample_size = 8) +{ + vec2 pixel_size = 1.0 / vec2(textureSize(sampler, 0)); + + float sT = 0; + int sample_double = sample_size * 2; + + float thisHeight = texture(sampler, TexCoords)[channelID]; + + // Process kernel + for(int x = 0; x <= sample_double; x++){ + for(int y = 0; y <= sample_double; y++){ + float dif = texture(sampler, TexCoords + vec2((-sample_size + x) * pixel_size.x, (-sample_size + y) * pixel_size.y))[channelID] - thisHeight; + sT += clamp(dif, 0, 0.04); + } + } + + sT /= (sample_double * sample_double); + sT *= 16; + + return sT; +} + // SHADER PROGRAM // ____________________________________________________________________________________________ // ( Write all your shader code & functions here ) @@ -130,6 +214,7 @@ vec4 ao_color = vec4(0.0, 0.0, 0.0, 1.0); vec4 buyzone_color = vec4(0.180, 0.828, 0.225, 0.667); vec4 objective_color = vec4(0.770, 0.295, 0.171, 1.000); +vec4 cover_color = vec4(0.700, 0.700, 0.700, 1.000); void main() { @@ -138,12 +223,24 @@ void main() vec4 sObjectives = vec4(texture(tex_objectives, TexCoords)); vec4 final = sBackground; - final = blend_normal(final, ao_color, kernel_filter_glow(tex_playspace, 3, 16)); // Drop shadow + final = blend_normal(final, ao_color, kernel_filter_glow(tex_playspace, 3, 16)); // Drop shadow final = blend_normal(final, sample_gradient(get_playspace_height(sPlayspace)), get_playspace(sPlayspace)); // Playspace - final = blend_normal(final, outline_color, kernel_filter_outline(tex_playspace, 3, 2)); // Outline + final = blend_normal(final, cover_color, sPlayspace.b); // Cover + + if(cmdl_shadows_enable == 1) final = blend_normal(final, vec4(0,0,0,1), trace_shadow(tex_playspace) * 0.2); // Shadows + if(cmdl_ao_enable == 1) final = blend_normal(final, vec4(0,0,0,1), kernel_ao_basic(tex_playspace, 0, 8) * 0.9); // AO + + final = blend_normal(final, outline_color, kernel_filter_outline(tex_playspace, 3, 2)); // Outline + + final = blend_normal(final, objective_color, // Objectives + (kernel_filter_glow(tex_objectives, 0, 16, 1) * sObjectives.r) + + kernel_filter_outline(tex_objectives, 0, 2)); + + final = blend_normal(final, buyzone_color, // Buyzones + (kernel_filter_glow(tex_objectives, 1, 16, 1) * sObjectives.g) + + kernel_filter_outline(tex_objectives, 1, 2)); + - //final = blend_normal(final, objective_color, sObjectives.r * sObjectives.a); // Objectives - //final = blend_normal(final, buyzone_color, sObjectives.g * sObjectives.a); // Buyzones // Return the final output color FragColor = final; } \ No newline at end of file diff --git a/MCDV/shaders/ss_precomp_objectives.fs b/MCDV/shaders/ss_precomp_objectives.fs index f279f32..7edeb08 100644 --- a/MCDV/shaders/ss_precomp_objectives.fs +++ b/MCDV/shaders/ss_precomp_objectives.fs @@ -15,5 +15,5 @@ uniform sampler2D tex_in; // Background texture void main() { vec4 sample = vec4(texture(tex_in, TexCoords)); - FragColor = vec4(sample.r, 0, 0, sample.r + sample.g); + FragColor = vec4(sample.r, sample.g, 0, sample.r + sample.g); } \ No newline at end of file diff --git a/MCDV/shaders/ss_precomp_playspace.fs b/MCDV/shaders/ss_precomp_playspace.fs index 22f7338..01fc2c0 100644 --- a/MCDV/shaders/ss_precomp_playspace.fs +++ b/MCDV/shaders/ss_precomp_playspace.fs @@ -17,5 +17,5 @@ void main() vec4 sample_a = vec4(texture(tex_in, TexCoords)); vec4 sample_b = vec4(texture(tex_in_1, TexCoords)); - FragColor = vec4(sample_a.g, sample_b.g, 0, sample_a.r); + FragColor = vec4(sample_a.g, sample_b.g, sample_a.b, sample_a.r); } \ No newline at end of file diff --git a/MCDV/test.png b/MCDV/test.png index 8d1c042..d529d16 100644 Binary files a/MCDV/test.png and b/MCDV/test.png differ diff --git a/MCDV/vdf.hpp b/MCDV/vdf.hpp index f0560a9..527aa2b 100644 --- a/MCDV/vdf.hpp +++ b/MCDV/vdf.hpp @@ -75,7 +75,7 @@ namespace kv // Fix for multiply defined key-values (THANKS VALVE APPRECIATE THAT) std::string keyname = strings[0]; int i = -1; - while (this->Values.count(keyname + std::to_string(++i))); + while (this->Values.count((++i > 0 ? keyname + std::to_string(i) : keyname))); this->Values.insert({ i > 0 ? keyname + std::to_string(i) : keyname, strings[1] }); } diff --git a/MCDV/vmf.hpp b/MCDV/vmf.hpp index 6584f79..ec5bf11 100644 --- a/MCDV/vmf.hpp +++ b/MCDV/vmf.hpp @@ -144,6 +144,8 @@ namespace vmf { glm::vec3 origin; bool hidden = false; + bool temp_mark = false; + std::vector visgroupids; BoundingBox bounds; @@ -288,7 +290,7 @@ namespace vmf { //Gather up the visgroups int viscount = -1; - while (editorValues->Values.count("visgroupid" + (++viscount > 0 ? std::to_string(viscount) : ""))) + while (editorValues->Values.count("visgroupid" + (++viscount > 0 ? std::to_string(viscount) : ""))) solid.visgroupids.push_back(std::stoi(editorValues->Values["visgroupid" + (viscount > 0 ? std::to_string(viscount) : "")])); glm::vec3 color;