diff --git a/gamemodes/benny/gamemode/modules/player/cl_camera.lua b/gamemodes/benny/gamemode/modules/player/cl_camera.lua index 7e32076..c3eda2f 100644 --- a/gamemodes/benny/gamemode/modules/player/cl_camera.lua +++ b/gamemodes/benny/gamemode/modules/player/cl_camera.lua @@ -5,37 +5,88 @@ BENNY.Cameras = {} BENNY.Cameras["main"] = { Type = "Standard", - Pos = Vector( 235.24, 0, 280 ), - Ang = Angle( 75, -180, 0 ), - FOV = 67, - Corner1 = Vector( 240, -240, 0 ), - Corner2 = Vector( -240, 240, -130 ), - v1 = Vector( 180, 0, -128 ), - v2 = Vector( -180, 0, -128 ), + Pos = Vector( -892, 0, 268 ), + Ang = Angle( 35, 0, 0 ), + FOV = 90, + Checks = { + { + Vector( -448, 510, 0 ), + Vector( -911, -509, -70 ), + }, + }, + + iX1 = -550, + iX2 = -800, Special = function( self, ply ) local pos = Vector() pos:Set( self.Pos ) local ang = Angle() ang:Set( self.Ang ) - debugoverlay.Cross( self.v1, 8, 0, color_white, true ) - debugoverlay.Cross( self.v2, 8, 0, color_white, true ) + local ppos = ply:GetPos() + pos.y = ppos.y + + do -- Angle + local amt = math.TimeFraction( self.iX1, self.iX2, ppos.x ) + amt = math.Clamp( amt, 0, 1 ) + amt = math.ease.InOutCubic( amt ) + ang.p = ang.p + ( 35 * (amt) ) + end - local amt = math.TimeFraction( self.v1.x, self.v2.x, ply:GetPos().x ) - amt = math.Clamp( amt, 0, 1 ) - ang.p = ang.p - ( 23 * amt ) - pos.x = pos.x - ( 270/2 * amt ) return pos, ang, self.FOV end } +BENNY.Cameras["grass"] = { + Pos = Vector( -1822, -214, 284 ), + Ang = Angle( 60, 0, 0 ), + FOV = 90, + Checks = { + { + Vector( -931, -130, 0 ), + Vector( -1311, -319, -70 ), + }, + { + Vector( -1321, 506, 0 ), + Vector( -1813, -503, -70 ), + }, + }, -BENNY.Cameras["hall"] = { + iX1 = -900, + iX2 = -1300, + Special = function( self, ply ) + local pos = Vector() + pos:Set( self.Pos ) + local ang = Angle() + ang:Set( self.Ang ) + local fov = self.FOV + + local ppos = ply:GetPos() + pos.y = ppos.y + + do -- far + local amt = math.TimeFraction( self.iX1, self.iX2, ppos.x ) + amt = 1-math.Clamp( amt, 0, 1 ) + amt = math.ease.InOutCubic( amt ) + ang.p = ang.p - ( 22 * amt ) + pos.x = pos.x + ( 400 * amt ) + fov = fov - ( 22 * amt ) + end + + return pos, ang, fov + end +} + +--[[ BENNY.Cameras["hall"] = { Type = "Fixed", Pos = Vector( 794, -40, 84 ), Ang = Angle( 29, 180, 0 ), - Corner1 = Vector( 273, -111, 0 ), - Corner2 = Vector( 751, 99, -130 ), + Checks = { + { + Vector( 273, -111, 0 ), + Vector( 751, 99, -130 ), + }, + }, v1 = Vector( 400, 0, -128 ), v2 = Vector( 630, 0, -128 ), FOV = 67, @@ -54,15 +105,18 @@ BENNY.Cameras["hall"] = { pos.x = pos.x - ( 50 * (1-amt) ) return pos, ang, self.FOV end -} +} ]] - -BENNY.Cameras["racks"] = { +--[[ BENNY.Cameras["racks"] = { Type = "Standard", Pos = Vector( 120, 0, 280 ), Ang = Angle( 60, 180, 0 ), - Corner1 = Vector( 890, 135, 0 ), - Corner2 = Vector( -253, 765, -130 ), + Checks = { + { + Vector( 890, 135, 0 ), + Vector( -253, 765, -130 ) + }, + }, v1 = Vector( 870, 135, -130 ), v2 = Vector( 760, 135, -130 ), v3 = Vector( 890, 135, -130 ), @@ -97,23 +151,33 @@ BENNY.Cameras["racks"] = { return pos, ang, self.FOV end -} +} ]] -BENNY_ACTIVECAMERA = "main" +BENNY_ACTIVECAMERA = nil local c_over = CreateConVar( "benny_cam_override", "" ) local c_unlock = CreateConVar( "benny_cam_unlock", 0 ) -hook.Add( "CalcView", "MyCalcView", function( ply, pos, ang, fov ) - if c_unlock:GetBool() then return end - for i, v in pairs( BENNY.Cameras ) do - if v.Corner1 and v.Corner2 then - if ply:GetPos():WithinAABox( v.Corner1, v.Corner2 ) then - BENNY_ACTIVECAMERA = i - break +local function decide_active() + for name, camera in pairs( BENNY.Cameras ) do + if camera.Checks then + for i, v in ipairs(camera.Checks) do + if LocalPlayer():GetPos():WithinAABox( v[1], v[2] ) then + print( LocalPlayer():GetPos() )--print( CurTime(), name, v[1], v[2] ) + return name + end end end end +end + +hook.Add( "CalcView", "MyCalcView", function( ply, pos, ang, fov ) + if c_unlock:GetBool() then return end + if ply:GetMoveType() == MOVETYPE_NOCLIP then return end + local da = decide_active() + if da then + BENNY_ACTIVECAMERA = da + end local camera = BENNY.Cameras[BENNY_ACTIVECAMERA] if camera then local view = { @@ -286,21 +350,24 @@ concommand.Add("benny_cam_panel", function() local b = vgui.Create("DButton") b:SetText( "Steal from current" ) function b:DoClick() + local ply = LocalPlayer() + local ppos = ply:EyePos() + local pang = ply:EyeAngles() for i=1, 7 do if i==1 then - bloink[i]:SetValue( BENNY_ACTIVECAMERA:GetPos()[1] ) + bloink[i]:SetValue( ppos[1] ) elseif i==2 then - bloink[i]:SetValue( BENNY_ACTIVECAMERA:GetPos()[2] ) + bloink[i]:SetValue( ppos[2] ) elseif i==3 then - bloink[i]:SetValue( BENNY_ACTIVECAMERA:GetPos()[3] ) + bloink[i]:SetValue( ppos[3] ) elseif i==4 then - bloink[i]:SetValue( -BENNY_ACTIVECAMERA:GetAngles()[1] ) + bloink[i]:SetValue( pang[1] ) elseif i==5 then - bloink[i]:SetValue( BENNY_ACTIVECAMERA:GetAngles()[2] ) + bloink[i]:SetValue( pang[2] ) elseif i==6 then - bloink[i]:SetValue( BENNY_ACTIVECAMERA:GetAngles()[3] ) + bloink[i]:SetValue( pang[3] ) elseif i==7 then - bloink[i]:SetValue( BENNY_ACTIVECAMERA.FOV ) + bloink[i]:SetValue( 90 ) end c_over:SetString( table.concat( st, " " ) ) end @@ -323,6 +390,6 @@ end) concommand.Add( "benny_dev_eyetrace", function( ply ) local tr = ply:GetEyeTrace() - print( string.format("Vector( %f, %f, %f )", tr.HitPos.x, tr.HitPos.y, tr.HitPos.z ) ) + print( string.format("Vector( %i, %i, %i )", math.Round( tr.HitPos.x ), math.Round( tr.HitPos.y ), math.Round( tr.HitPos.z ) ) ) print( tr.Entity ) end) \ No newline at end of file diff --git a/gamemodes/benny/gamemode/modules/player/sh_shared.lua b/gamemodes/benny/gamemode/modules/player/sh_shared.lua index f0a6128..111de02 100644 --- a/gamemodes/benny/gamemode/modules/player/sh_shared.lua +++ b/gamemodes/benny/gamemode/modules/player/sh_shared.lua @@ -2,30 +2,31 @@ local wa, wb = 0, 0 hook.Add( "CreateMove", "CamFuck", function( cmd ) + if LocalPlayer():GetMoveType() != MOVETYPE_NOCLIP then + local x, y = cmd:GetForwardMove(), cmd:GetSideMove() + wa, wb = x, y - local x, y = cmd:GetForwardMove(), cmd:GetSideMove() - wa, wb = x, y + local ad = Vector( x, y, 0 ) - local ad = Vector( x, y, 0 ) + local an = Angle() + an:Set( RenderAngles() ) + an.p = 0 - local an = Angle() - an:Set( RenderAngles() ) - an.p = 0 + local am = Angle() + am:Set( cmd:GetViewAngles() ) + am.p = 0 - local am = Angle() - am:Set( cmd:GetViewAngles() ) - am.p = 0 + ad:Rotate( am ) + ad:Rotate( -an ) - ad:Rotate( am ) - ad:Rotate( -an ) + ad:Normalize() + ad:Mul(320) - ad:Normalize() - ad:Mul(320) + --print(ad.x, ad.y) - --print(ad.x, ad.y) - - cmd:SetForwardMove( ad.x ) - cmd:SetSideMove( ad.y ) + cmd:SetForwardMove( ad.x ) + cmd:SetSideMove( ad.y ) + end end) function GM:PlayerNoClip() @@ -64,5 +65,36 @@ if CLIENT then oy = math.Clamp( oy, -1, 1 ) * cr surface.DrawCircle( bo + cr + ox, ScrH() - bo - cr + oy, ss( 2 ) ) + + -- local x, y, w, h = 0, 0, 360, 240 + -- local ow, oh = 512, 512 + + -- local camera = BENNY.Cameras[BENNY_ACTIVECAMERA] + -- local view = { + -- origin = camera.Pos, + -- angles = camera.Ang, + -- fov = camera.FOV or 60, + -- drawviewer = true + -- } + -- if camera.Special then + -- view.origin, view.angles, view.fov = camera.Special( camera, LocalPlayer() ) + -- end + -- view.angles.p = 0 + -- view.angles.r = 0 + + -- local aratio = w/h + + -- render.RenderView( { + -- origin = view.origin + Vector( 0, 0, 64 ), + -- angles = Angle( 90, view.angles.y, 0 ), + -- aspect = 1, + -- fov = 90, + -- x = x, y = y, + -- w = w, h = h, + -- ortho = { + -- left = -ow, right = ow, + -- top = -oh / aratio, bottom = oh / aratio, + -- }, + -- } ) end) end \ No newline at end of file diff --git a/maps/benny_test.bsp b/maps/benny_test.bsp index ed49cdd..30e4677 100644 --- a/maps/benny_test.bsp +++ b/maps/benny_test.bsp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7ae6994423218baf74ecb6ea8d65e881dfe58717c4fce23e29cb0be90ad707e1 -size 197256 +oid sha256:7fb755e69fa8e8d77acaf7abf68e984a524ada079789ad6c620d317054870728 +size 230856 diff --git a/maps/benny_test.vmf b/maps/benny_test.vmf index 142aa85..7c2a843 100644 --- a/maps/benny_test.vmf +++ b/maps/benny_test.vmf @@ -2,7 +2,7 @@ versioninfo { "editorversion" "400" "editorbuild" "9777" - "mapversion" "43" + "mapversion" "62" "formatversion" "100" "prefab" "0" } @@ -14,2066 +14,25 @@ viewsettings "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "512" + "nGridSpacing" "32" "bShow3DGrid" "0" } world { "id" "1" - "mapversion" "43" + "mapversion" "62" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" "maxpropscreenwidth" "-1" - "skyname" "sky_day01_01" - solid - { - "id" "9" - side - { - "id" "7" - "plane" "(-256 256 -128) (256 256 -128) (256 -256 -128)" - "material" "TILE/MILFLR002" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "8" - "plane" "(-256 -256 -192) (256 -256 -192) (256 256 -192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "9" - "plane" "(-256 256 -128) (-256 -256 -128) (-256 -256 -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" "10" - "plane" "(256 256 -192) (256 -256 -192) (256 -256 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "11" - "plane" "(256 256 -128) (-256 256 -128) (-256 256 -192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "12" - "plane" "(256 -256 -192) (-256 -256 -192) (-256 -256 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 224 117" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "10" - side - { - "id" "13" - "plane" "(-256 256 64) (-256 288 64) (256 288 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "14" - "plane" "(-256 288 -128) (-256 256 -128) (256 256 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "15" - "plane" "(-256 256 -128) (-256 288 -128) (-256 288 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "16" - "plane" "(256 288 -128) (256 256 -128) (256 256 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "17" - "plane" "(-256 288 -128) (256 288 -128) (256 288 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "18" - "plane" "(256 256 -128) (-256 256 -128) (-256 256 64)" - "material" "DEV/REFLECTIVITY_70" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 232 181" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "14" - side - { - "id" "42" - "plane" "(-256 -256 64) (256 -256 64) (256 -320 64)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "41" - "plane" "(-256 -320 -128) (256 -320 -128) (256 -256 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "40" - "plane" "(-256 -256 64) (-256 -320 64) (-256 -320 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "39" - "plane" "(256 -256 -128) (256 -320 -128) (256 -320 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "38" - "plane" "(256 -256 64) (-256 -256 64) (-256 -256 -128)" - "material" "DEV/REFLECTIVITY_70" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "37" - "plane" "(256 -320 -128) (-256 -320 -128) (-256 -320 64)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 232 181" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "16" - side - { - "id" "54" - "plane" "(256 256 64) (320 256 64) (320 0 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "53" - "plane" "(256 0 -128) (320 0 -128) (320 256 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "52" - "plane" "(256 256 64) (256 0 64) (256 0 -128)" - "material" "DEV/REFLECTIVITY_70" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "51" - "plane" "(320 256 -128) (320 0 -128) (320 0 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "50" - "plane" "(320 256 64) (256 256 64) (256 256 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "49" - "plane" "(320 0 -128) (256 0 -128) (256 0 64)" - "material" "BRICK/BRICKWALL038A" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 232 181" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "18" - side - { - "id" "66" - "plane" "(-256 -256 96) (-256 256 96) (256 256 96)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "65" - "plane" "(-256 256 64) (-256 -256 64) (256 -256 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "64" - "plane" "(-256 -256 64) (-256 256 64) (-256 256 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" "63" - "plane" "(256 256 64) (256 -256 64) (256 -256 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" "62" - "plane" "(-256 256 64) (256 256 64) (256 256 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "61" - "plane" "(256 -256 64) (-256 -256 64) (-256 -256 96)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 224 117" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "33" - side - { - "id" "78" - "plane" "(768 -128 -128) (256 -128 -128) (256 0 -128)" - "material" "CONCRETE/CONCRETEFLOOR028C" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[1 0 0 0] 0.25" - "rotation" "90" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "77" - "plane" "(640 0 -192) (256 0 -192) (256 -128 -192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "76" - "plane" "(256 -128 -192) (256 0 -192) (256 0 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "75" - "plane" "(768 -128 -128) (640 0 -128) (640 0 -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" "74" - "plane" "(256 0 -192) (640 0 -192) (640 0 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "73" - "plane" "(256 -128 -128) (768 -128 -128) (768 -128 -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 224 117" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "36" - side - { - "id" "90" - "plane" "(768 -128 -128) (640 0 -128) (640 128 -128)" - "material" "CONCRETE/CONCRETEFLOOR028C" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "89" - "plane" "(768 128 -192) (640 128 -192) (640 0 -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" "88" - "plane" "(640 0 -192) (640 128 -192) (640 128 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "87" - "plane" "(768 -128 -128) (768 128 -128) (768 128 -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" "86" - "plane" "(640 128 -192) (768 128 -192) (768 128 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "85" - "plane" "(640 0 -128) (768 -128 -128) (768 -128 -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 224 117" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "38" - side - { - "id" "102" - "plane" "(896 768 -128) (896 128 -128) (384 128 -128)" - "material" "CONCRETE/CONCRETEFLOOR026A" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "101" - "plane" "(896 128 -192) (896 768 -192) (384 768 -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" "100" - "plane" "(384 128 -128) (384 128 -192) (384 768 -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" "99" - "plane" "(896 128 -192) (896 128 -128) (896 768 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "98" - "plane" "(384 768 -128) (384 768 -192) (896 768 -192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "97" - "plane" "(384 128 -192) (384 128 -128) (896 128 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 224 117" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "43" - side - { - "id" "114" - "plane" "(-256 768 -128) (384 768 -128) (384 384 -128)" - "material" "CONCRETE/CONCRETEFLOOR026A" - "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" "(-256 384 -192) (384 384 -192) (384 768 -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" "112" - "plane" "(-256 768 -128) (-256 384 -128) (-256 384 -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" "111" - "plane" "(384 768 -192) (384 384 -192) (384 384 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "110" - "plane" "(384 768 -128) (-256 768 -128) (-256 768 -192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "109" - "plane" "(384 384 -192) (-256 384 -192) (-256 384 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 224 117" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "45" - side - { - "id" "132" - "plane" "(768 -128 64) (768 -192 64) (320 -192 64)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "131" - "plane" "(768 -192 -128) (768 -128 -128) (320 -128 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "130" - "plane" "(320 -192 64) (320 -192 -128) (320 -128 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "129" - "plane" "(768 -192 -128) (768 -192 64) (768 -128 64)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "128" - "plane" "(320 -128 64) (320 -128 -128) (768 -128 -128)" - "material" "BRICK/BRICKWALL038A" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "127" - "plane" "(320 -192 -128) (320 -192 64) (768 -192 64)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 232 181" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "46" - side - { - "id" "138" - "plane" "(832 -128 64) (768 -128 64) (768 128 64)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "137" - "plane" "(832 64 -128) (768 128 -128) (768 -128 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "136" - "plane" "(768 -128 -128) (768 128 -128) (768 128 64)" - "material" "BRICK/BRICKWALL038A" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "135" - "plane" "(832 -128 64) (832 64 64) (832 64 -128)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "134" - "plane" "(768 128 -128) (832 64 -128) (832 64 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "133" - "plane" "(768 -128 64) (832 -128 64) (832 -128 -128)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 232 181" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "54" - side - { - "id" "150" - "plane" "(896 832 64) (896 768 64) (-256 768 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "149" - "plane" "(896 768 -128) (896 832 -128) (-256 832 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "148" - "plane" "(-256 768 64) (-256 768 -128) (-256 832 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "147" - "plane" "(896 768 -128) (896 768 64) (896 832 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "146" - "plane" "(-256 832 64) (-256 832 -128) (896 832 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "145" - "plane" "(-256 768 -128) (-256 768 64) (896 768 64)" - "material" "DEV/REFLECTIVITY_10" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 232 181" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "56" - side - { - "id" "162" - "plane" "(896 768 64) (960 768 64) (960 128 64)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "161" - "plane" "(896 128 -128) (960 128 -128) (960 768 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "160" - "plane" "(896 768 64) (896 128 64) (896 128 -128)" - "material" "DEV/REFLECTIVITY_10" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "159" - "plane" "(960 768 -128) (960 128 -128) (960 128 64)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "158" - "plane" "(960 768 64) (896 768 64) (896 768 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "157" - "plane" "(960 128 -128) (896 128 -128) (896 128 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 232 181" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "58" - side - { - "id" "174" - "plane" "(-320 768 64) (-256 768 64) (-256 384 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "173" - "plane" "(-320 384 -128) (-256 384 -128) (-256 768 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "172" - "plane" "(-320 768 64) (-320 384 64) (-320 384 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "171" - "plane" "(-256 768 -128) (-256 384 -128) (-256 384 64)" - "material" "DEV/REFLECTIVITY_10" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "170" - "plane" "(-256 768 64) (-320 768 64) (-320 768 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "169" - "plane" "(-256 384 -128) (-320 384 -128) (-320 384 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 232 181" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "60" - side - { - "id" "186" - "plane" "(320 320 64) (-256 320 64) (-256 384 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "185" - "plane" "(384 384 -128) (-256 384 -128) (-256 320 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "184" - "plane" "(-256 320 -128) (-256 384 -128) (-256 384 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "183" - "plane" "(320 320 64) (384 384 64) (384 384 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "182" - "plane" "(-256 384 -128) (384 384 -128) (384 384 64)" - "material" "DEV/REFLECTIVITY_10" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "181" - "plane" "(-256 320 64) (320 320 64) (320 320 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 232 181" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "62" - side - { - "id" "198" - "plane" "(384 128 64) (320 128 64) (320 320 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "197" - "plane" "(384 384 -128) (320 320 -128) (320 128 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "196" - "plane" "(320 128 -128) (320 320 -128) (320 320 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "195" - "plane" "(384 128 64) (384 384 64) (384 384 -128)" - "material" "DEV/REFLECTIVITY_10" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "194" - "plane" "(320 320 -128) (384 384 -128) (384 384 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "193" - "plane" "(320 128 64) (384 128 64) (384 128 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 232 181" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "69" - side - { - "id" "210" - "plane" "(640 128 64) (640 0 64) (576 64 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "209" - "plane" "(640 0 -128) (640 128 -128) (576 64 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "208" - "plane" "(640 0 64) (640 128 64) (640 128 -128)" - "material" "BRICK/BRICKWALL038A" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "206" - "plane" "(640 128 64) (576 64 64) (576 64 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "205" - "plane" "(640 0 -128) (576 64 -128) (576 64 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 232 181" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "73" - side - { - "id" "222" - "plane" "(640 0 64) (320 0 64) (320 64 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "221" - "plane" "(576 64 -128) (320 64 -128) (320 0 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "220" - "plane" "(320 0 -128) (320 64 -128) (320 64 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "219" - "plane" "(640 0 64) (576 64 64) (576 64 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "218" - "plane" "(320 64 -128) (576 64 -128) (576 64 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "217" - "plane" "(320 0 64) (640 0 64) (640 0 -128)" - "material" "BRICK/BRICKWALL038A" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 232 181" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "75" - side - { - "id" "234" - "plane" "(640 128 64) (576 64 64) (384 64 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "233" - "plane" "(576 64 -128) (640 128 -128) (384 128 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "232" - "plane" "(384 128 -128) (384 128 64) (384 64 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "231" - "plane" "(640 128 64) (640 128 -128) (576 64 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "230" - "plane" "(384 64 -128) (384 64 64) (576 64 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "229" - "plane" "(384 128 64) (384 128 -128) (640 128 -128)" - "material" "DEV/REFLECTIVITY_10" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 232 181" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "81" - side - { - "id" "258" - "plane" "(256 -128 64) (320 -128 64) (320 -256 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "257" - "plane" "(256 -256 -128) (320 -256 -128) (320 -128 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "256" - "plane" "(256 -128 64) (256 -256 64) (256 -256 -128)" - "material" "DEV/REFLECTIVITY_70" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "255" - "plane" "(320 -128 -128) (320 -256 -128) (320 -256 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "254" - "plane" "(320 -128 64) (256 -128 64) (256 -128 -128)" - "material" "BRICK/BRICKWALL038A" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "253" - "plane" "(320 -256 -128) (256 -256 -128) (256 -256 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 232 181" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "83" - side - { - "id" "270" - "plane" "(256 0 64) (320 0 64) (320 -128 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "269" - "plane" "(256 -128 -3.8147e-06) (320 -128 -3.8147e-06) (320 0 -3.8147e-06)" - "material" "METAL/METALCEILING005A" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "268" - "plane" "(256 0 64) (256 -128 64) (256 -128 -3.8147e-06)" - "material" "DEV/REFLECTIVITY_70" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "267" - "plane" "(320 0 -3.8147e-06) (320 -128 -3.8147e-06) (320 -128 64)" - "material" "BRICK/BRICKWALL038A" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "266" - "plane" "(320 0 64) (256 0 64) (256 0 -3.8147e-06)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "265" - "plane" "(320 -128 -3.8147e-06) (256 -128 -3.8147e-06) (256 -128 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 232 181" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "85" - side - { - "id" "282" - "plane" "(640 128 64) (768 128 64) (768 64 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "281" - "plane" "(640 64 -3.8147e-06) (768 64 -3.8147e-06) (768 128 -3.8147e-06)" - "material" "METAL/METALCEILING005A" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "280" - "plane" "(640 128 64) (640 64 64) (640 64 -3.8147e-06)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "279" - "plane" "(768 128 -3.8147e-06) (768 64 -3.8147e-06) (768 64 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "278" - "plane" "(768 128 64) (640 128 64) (640 128 -3.8147e-06)" - "material" "DEV/REFLECTIVITY_10" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "277" - "plane" "(768 64 -3.8147e-06) (640 64 -3.8147e-06) (640 64 64)" - "material" "BRICK/BRICKWALL038A" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 232 181" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "87" - side - { - "id" "294" - "plane" "(-256 384 96) (-256 768 96) (384 768 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "293" - "plane" "(-256 768 64) (-256 384 64) (384 384 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "292" - "plane" "(-256 384 64) (-256 768 64) (-256 768 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "291" - "plane" "(384 768 64) (384 384 64) (384 384 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "290" - "plane" "(-256 768 64) (384 768 64) (384 768 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "289" - "plane" "(384 384 64) (-256 384 64) (-256 384 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 224 117" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "89" - side - { - "id" "306" - "plane" "(384 128 96) (384 768 96) (896 768 96)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "305" - "plane" "(384 768 64) (384 128 64) (896 128 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "304" - "plane" "(384 128 64) (384 768 64) (384 768 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "303" - "plane" "(896 768 64) (896 128 64) (896 128 96)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "302" - "plane" "(384 768 64) (896 768 64) (896 768 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "301" - "plane" "(896 128 64) (384 128 64) (384 128 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 224 117" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "91" - side - { - "id" "318" - "plane" "(640 0 96) (640 64 96) (768 64 96)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "317" - "plane" "(640 64 64) (640 0 64) (768 -128 64)" - "material" "METAL/METALCEILING005A" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "316" - "plane" "(640 0 64) (640 64 64) (640 64 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" "315" - "plane" "(768 64 64) (768 -128 64) (768 -128 96)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "314" - "plane" "(640 64 64) (768 64 64) (768 64 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "313" - "plane" "(768 -128 64) (640 0 64) (640 0 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 224 117" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "93" - side - { - "id" "330" - "plane" "(320 -128 96) (320 0 96) (640 0 96)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "329" - "plane" "(768 -128 64) (640 0 64) (320 0 64)" - "material" "METAL/METALCEILING005A" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "328" - "plane" "(320 -128 64) (320 0 64) (320 0 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" "327" - "plane" "(640 0 64) (768 -128 64) (768 -128 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "326" - "plane" "(320 0 64) (640 0 64) (640 0 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "325" - "plane" "(768 -128 64) (320 -128 64) (320 -128 96)" - "material" "TOOLS/TOOLSINVISIBLE" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 224 117" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "78" - side - { - "id" "336" - "plane" "(896 64 64) (832 64 64) (768 128 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "335" - "plane" "(896 128 -128) (768 128 -128) (832 64 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "334" - "plane" "(896 64 64) (896 128 64) (896 128 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "333" - "plane" "(832 64 -128) (768 128 -128) (768 128 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "332" - "plane" "(832 64 64) (896 64 64) (896 64 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "331" - "plane" "(768 128 -128) (896 128 -128) (896 128 64)" - "material" "DEV/REFLECTIVITY_10" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 232 181" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } + "skyname" "train_hdr" solid { "id" "1234" side { "id" "360" - "plane" "(-960 1088 320) (1216 1088 320) (1216 -704 320)" + "plane" "(704 -1472 576) (-2240 -1472 576) (-2240 1344 576)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -2084,7 +43,7 @@ world side { "id" "359" - "plane" "(-960 1088 320) (-960 -704 320) (-960 -704 256)" + "plane" "(-2240 -1472 512) (-2240 1344 512) (-2240 1344 576)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2095,7 +54,7 @@ world side { "id" "358" - "plane" "(1216 -704 320) (1216 1088 320) (1216 1088 256)" + "plane" "(704 1344 512) (704 -1472 512) (704 -1472 576)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2106,7 +65,7 @@ world side { "id" "357" - "plane" "(1216 1088 320) (-960 1088 320) (-960 1088 256)" + "plane" "(-2240 1344 512) (704 1344 512) (704 1344 576)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2117,7 +76,7 @@ world side { "id" "356" - "plane" "(-960 -704 320) (1216 -704 320) (1216 -704 256)" + "plane" "(704 -1472 512) (-2240 -1472 512) (-2240 -1472 576)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2128,8 +87,8 @@ world side { "id" "355" - "plane" "(-960 -704 256) (1216 -704 256) (1216 1088 256)" - "material" "TOOLS/TOOLSBLACK" + "plane" "(704 1344 512) (-2240 1344 512) (-2240 -1472 512)" + "material" "MORE DEV TEXTURES/DEV_BLACK2" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -2150,7 +109,7 @@ world side { "id" "366" - "plane" "(-960 -704 -448) (1216 -704 -448) (1216 1088 -448)" + "plane" "(704 1344 -192) (-2240 1344 -192) (-2240 -1472 -192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -2161,7 +120,7 @@ world side { "id" "365" - "plane" "(-960 -704 -448) (-960 1088 -448) (-960 1088 -384)" + "plane" "(-2240 1344 -128) (-2240 -1472 -128) (-2240 -1472 -192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2172,7 +131,7 @@ world side { "id" "364" - "plane" "(1216 1088 -448) (1216 -704 -448) (1216 -704 -384)" + "plane" "(704 -1472 -128) (704 1344 -128) (704 1344 -192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2183,7 +142,7 @@ world side { "id" "363" - "plane" "(-960 1088 -448) (1216 1088 -448) (1216 1088 -384)" + "plane" "(704 1344 -128) (-2240 1344 -128) (-2240 1344 -192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2194,7 +153,7 @@ world side { "id" "362" - "plane" "(1216 -704 -448) (-960 -704 -448) (-960 -704 -384)" + "plane" "(-2240 -1472 -128) (704 -1472 -128) (704 -1472 -192)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2205,8 +164,8 @@ world side { "id" "361" - "plane" "(-960 1088 -384) (1216 1088 -384) (1216 -704 -384)" - "material" "TOOLS/TOOLSBLACK" + "plane" "(704 -1472 -128) (-2240 -1472 -128) (-2240 1344 -128)" + "material" "MORE DEV TEXTURES/DEV_BLACK2" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -2227,7 +186,7 @@ world side { "id" "372" - "plane" "(-960 -704 -384) (-960 1088 -384) (-960 1088 256)" + "plane" "(-2240 1344 512) (-2240 -1472 512) (-2240 -1472 -128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2238,7 +197,7 @@ world side { "id" "371" - "plane" "(-960 1088 -384) (-896 1088 -384) (-896 1088 256)" + "plane" "(-2176 1344 512) (-2240 1344 512) (-2240 1344 -128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2249,7 +208,7 @@ world side { "id" "370" - "plane" "(-960 -704 -384) (-960 -704 256) (-896 -704 256)" + "plane" "(-2176 -1472 512) (-2176 -1472 -128) (-2240 -1472 -128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2260,7 +219,7 @@ world side { "id" "369" - "plane" "(-960 -704 256) (-960 1088 256) (-896 1088 256)" + "plane" "(-2176 1344 512) (-2176 -1472 512) (-2240 -1472 512)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -2271,7 +230,7 @@ world side { "id" "368" - "plane" "(-960 1088 -384) (-960 -704 -384) (-896 -704 -384)" + "plane" "(-2176 -1472 -128) (-2176 1344 -128) (-2240 1344 -128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -2282,8 +241,8 @@ world side { "id" "367" - "plane" "(-896 1088 -384) (-896 -704 -384) (-896 -704 256)" - "material" "TOOLS/TOOLSBLACK" + "plane" "(-2176 -1472 512) (-2176 1344 512) (-2176 1344 -128)" + "material" "MORE DEV TEXTURES/DEV_BLACK2" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -2304,7 +263,7 @@ world side { "id" "378" - "plane" "(1216 1088 -384) (1216 -704 -384) (1216 -704 256)" + "plane" "(704 -1472 512) (704 1344 512) (704 1344 -128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2315,7 +274,7 @@ world side { "id" "377" - "plane" "(1216 1088 -384) (1216 1088 256) (1152 1088 256)" + "plane" "(640 1344 512) (640 1344 -128) (704 1344 -128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2326,7 +285,7 @@ world side { "id" "376" - "plane" "(1216 -704 -384) (1152 -704 -384) (1152 -704 256)" + "plane" "(640 -1472 512) (704 -1472 512) (704 -1472 -128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2337,7 +296,7 @@ world side { "id" "375" - "plane" "(1216 1088 256) (1216 -704 256) (1152 -704 256)" + "plane" "(640 -1472 512) (640 1344 512) (704 1344 512)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -2348,7 +307,7 @@ world side { "id" "374" - "plane" "(1216 -704 -384) (1216 1088 -384) (1152 1088 -384)" + "plane" "(640 1344 -128) (640 -1472 -128) (704 -1472 -128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -2359,8 +318,8 @@ world side { "id" "373" - "plane" "(1152 -704 -384) (1152 1088 -384) (1152 1088 256)" - "material" "TOOLS/TOOLSBLACK" + "plane" "(640 1344 512) (640 -1472 512) (640 -1472 -128)" + "material" "MORE DEV TEXTURES/DEV_BLACK2" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -2381,7 +340,7 @@ world side { "id" "384" - "plane" "(1152 1088 -384) (1152 1088 256) (-896 1088 256)" + "plane" "(-2176 1344 512) (-2176 1344 -128) (640 1344 -128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2392,7 +351,7 @@ world side { "id" "383" - "plane" "(-896 1088 256) (1152 1088 256) (1152 1024 256)" + "plane" "(640 1280 512) (-2176 1280 512) (-2176 1344 512)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -2403,7 +362,7 @@ world side { "id" "382" - "plane" "(-896 1088 -384) (-896 1024 -384) (1152 1024 -384)" + "plane" "(640 1280 -128) (640 1344 -128) (-2176 1344 -128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -2414,7 +373,7 @@ world side { "id" "381" - "plane" "(-896 1088 -384) (-896 1088 256) (-896 1024 256)" + "plane" "(-2176 1280 512) (-2176 1280 -128) (-2176 1344 -128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2425,7 +384,7 @@ world side { "id" "380" - "plane" "(1152 1088 -384) (1152 1024 -384) (1152 1024 256)" + "plane" "(640 1280 512) (640 1344 512) (640 1344 -128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2436,8 +395,8 @@ world side { "id" "379" - "plane" "(-896 1024 -384) (-896 1024 256) (1152 1024 256)" - "material" "TOOLS/TOOLSBLACK" + "plane" "(640 1280 512) (640 1280 -128) (-2176 1280 -128)" + "material" "MORE DEV TEXTURES/DEV_BLACK2" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -2458,7 +417,7 @@ world side { "id" "390" - "plane" "(-896 -704 -384) (-896 -704 256) (1152 -704 256)" + "plane" "(640 -1472 512) (640 -1472 -128) (-2176 -1472 -128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2469,7 +428,7 @@ world side { "id" "389" - "plane" "(-896 -704 256) (-896 -640 256) (1152 -640 256)" + "plane" "(640 -1408 512) (640 -1472 512) (-2176 -1472 512)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -2480,7 +439,7 @@ world side { "id" "388" - "plane" "(-896 -704 -384) (1152 -704 -384) (1152 -640 -384)" + "plane" "(640 -1408 -128) (-2176 -1408 -128) (-2176 -1472 -128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -2491,7 +450,7 @@ world side { "id" "387" - "plane" "(-896 -704 -384) (-896 -640 -384) (-896 -640 256)" + "plane" "(-2176 -1408 512) (-2176 -1472 512) (-2176 -1472 -128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2502,7 +461,7 @@ world side { "id" "386" - "plane" "(1152 -704 -384) (1152 -704 256) (1152 -640 256)" + "plane" "(640 -1408 512) (640 -1408 -128) (640 -1472 -128)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2513,8 +472,8 @@ world side { "id" "385" - "plane" "(1152 -640 -384) (1152 -640 256) (-896 -640 256)" - "material" "TOOLS/TOOLSBLACK" + "plane" "(-2176 -1408 512) (-2176 -1408 -128) (640 -1408 -128)" + "material" "MORE DEV TEXTURES/DEV_BLACK2" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -2531,11 +490,11 @@ world } solid { - "id" "1684" + "id" "3681" side { - "id" "439" - "plane" "(-256 -96 -80) (0 -96 -80) (0 -128 -80)" + "id" "1333" + "plane" "(128 128 -32) (128 -128 -32) (-384 -128 -32)" "material" "MORE DEV TEXTURES/DEV_TF2BLUE1" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -2545,236 +504,8 @@ world } side { - "id" "440" - "plane" "(-256 -128 -128) (0 -128 -128) (0 -96 -128)" - "material" "MORE DEV TEXTURES/DEV_TF2BLUE1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "441" - "plane" "(-256 -96 -80) (-256 -128 -80) (-256 -128 -128)" - "material" "MORE DEV TEXTURES/DEV_TF2BLUE1" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "442" - "plane" "(0 -96 -128) (0 -128 -128) (0 -128 -80)" - "material" "MORE DEV TEXTURES/DEV_TF2BLUE1" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "443" - "plane" "(0 -96 -80) (-256 -96 -80) (-256 -96 -128)" - "material" "MORE DEV TEXTURES/DEV_TF2BLUE1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "444" - "plane" "(0 -128 -128) (-256 -128 -128) (-256 -128 -80)" - "material" "MORE DEV TEXTURES/DEV_TF2BLUE1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 116 129" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "1685" - side - { - "id" "445" - "plane" "(128 256 -80) (160 256 -80) (160 64 -80)" - "material" "MORE DEV TEXTURES/DEV_TF2BLUE1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "446" - "plane" "(128 64 -128) (160 64 -128) (160 256 -128)" - "material" "MORE DEV TEXTURES/DEV_TF2BLUE1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "447" - "plane" "(128 256 -80) (128 64 -80) (128 64 -128)" - "material" "MORE DEV TEXTURES/DEV_TF2BLUE1" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "448" - "plane" "(160 256 -128) (160 64 -128) (160 64 -80)" - "material" "MORE DEV TEXTURES/DEV_TF2BLUE1" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "449" - "plane" "(160 256 -80) (128 256 -80) (128 256 -128)" - "material" "MORE DEV TEXTURES/DEV_TF2BLUE1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "450" - "plane" "(160 64 -128) (128 64 -128) (128 64 -80)" - "material" "MORE DEV TEXTURES/DEV_TF2BLUE1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 102 215" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "1686" - side - { - "id" "451" - "plane" "(-256 128 -80) (0 128 -80) (0 96 -80)" - "material" "MORE DEV TEXTURES/DEV_TF2BLUE1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "452" - "plane" "(-256 96 -128) (0 96 -128) (0 128 -128)" - "material" "MORE DEV TEXTURES/DEV_TF2BLUE1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "453" - "plane" "(-256 128 -80) (-256 96 -80) (-256 96 -128)" - "material" "MORE DEV TEXTURES/DEV_TF2BLUE1" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "454" - "plane" "(0 128 -128) (0 96 -128) (0 96 -80)" - "material" "MORE DEV TEXTURES/DEV_TF2BLUE1" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "455" - "plane" "(0 128 -80) (-256 128 -80) (-256 128 -128)" - "material" "MORE DEV TEXTURES/DEV_TF2BLUE1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "456" - "plane" "(0 96 -128) (-256 96 -128) (-256 96 -80)" - "material" "MORE DEV TEXTURES/DEV_TF2BLUE1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 228 105" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "1937" - side - { - "id" "1014" - "plane" "(-288 -256 64) (-288 128 64) (-256 128 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1013" - "plane" "(-288 128 -128) (-288 -256 -128) (-256 -256 -128)" + "id" "1334" + "plane" "(128 -128 -48) (128 128 -48) (-384 128 -48)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -2784,8 +515,8 @@ world } side { - "id" "1012" - "plane" "(-288 -256 -128) (-288 128 -128) (-288 128 64)" + "id" "1335" + "plane" "(-384 -128 -32) (-384 -128 -48) (-384 128 -48)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2795,312 +526,8 @@ world } side { - "id" "1011" - "plane" "(-256 128 -128) (-256 -256 -128) (-256 -256 64)" - "material" "DEV/REFLECTIVITY_70" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1010" - "plane" "(-256 -256 -128) (-288 -256 -128) (-288 -256 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1009" - "plane" "(-288 128 -128) (-256 128 -128) (-256 128 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 232 181" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "1938" - side - { - "id" "1020" - "plane" "(-256 144 64) (-256 128 64) (-288 128 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1019" - "plane" "(-256 128 -128) (-256 144 -128) (-288 144 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1018" - "plane" "(-288 144 64) (-288 128 64) (-288 128 -128)" - "material" "DEV/REFLECTIVITY_70" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1017" - "plane" "(-256 128 64) (-256 144 64) (-256 144 -128)" - "material" "DEV/REFLECTIVITY_70" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1016" - "plane" "(-288 128 64) (-256 128 64) (-256 128 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1015" - "plane" "(-256 144 64) (-288 144 64) (-288 144 -128)" - "material" "DEV/REFLECTIVITY_70" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 232 181" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "1939" - side - { - "id" "1026" - "plane" "(-256 240 64) (-256 144 64) (-288 144 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1025" - "plane" "(-256 144 -3.8147e-06) (-256 240 -3.8147e-06) (-288 240 -3.8147e-06)" - "material" "DEV/REFLECTIVITY_70" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1024" - "plane" "(-288 240 64) (-288 144 64) (-288 144 -3.8147e-06)" - "material" "DEV/REFLECTIVITY_70" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1023" - "plane" "(-256 144 64) (-256 240 64) (-256 240 -3.8147e-06)" - "material" "DEV/REFLECTIVITY_70" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1022" - "plane" "(-256 240 64) (-288 240 64) (-288 240 -3.8147e-06)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1021" - "plane" "(-288 144 64) (-256 144 64) (-256 144 -3.8147e-06)" - "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 232 181" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "1940" - side - { - "id" "1032" - "plane" "(-288 256 64) (-256 256 64) (-256 240 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1031" - "plane" "(-288 240 -128) (-256 240 -128) (-256 256 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1030" - "plane" "(-288 256 -128) (-288 256 64) (-288 240 64)" - "material" "DEV/REFLECTIVITY_70" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1029" - "plane" "(-256 240 -128) (-256 240 64) (-256 256 64)" - "material" "DEV/REFLECTIVITY_70" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1028" - "plane" "(-256 256 -128) (-256 256 64) (-288 256 64)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1027" - "plane" "(-288 240 -128) (-288 240 64) (-256 240 64)" - "material" "DEV/REFLECTIVITY_70" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 232 181" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "1944" - side - { - "id" "1044" - "plane" "(-288 144 -128) (-288 240 -128) (-256 240 -128)" - "material" "TILE/MILFLR002" - "uaxis" "[1 0 0 256] 0.25" - "vaxis" "[0 -1 0 -192] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1043" - "plane" "(-288 240 -192) (-288 144 -192) (-256 144 -192)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1042" - "plane" "(-288 144 -192) (-288 240 -192) (-288 240 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1041" - "plane" "(-256 240 -192) (-256 144 -192) (-256 144 -128)" + "id" "1336" + "plane" "(128 -128 -48) (128 -128 -32) (128 128 -32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -3110,8 +537,8 @@ world } side { - "id" "1040" - "plane" "(-288 240 -192) (-256 240 -192) (-256 240 -128)" + "id" "1337" + "plane" "(-384 128 -32) (-384 128 -48) (128 128 -48)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -3121,8 +548,8 @@ world } side { - "id" "1039" - "plane" "(-256 144 -192) (-288 144 -192) (-288 144 -128)" + "id" "1338" + "plane" "(-384 -128 -48) (-384 -128 -32) (128 -128 -32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -3132,30 +559,30 @@ world } editor { - "color" "0 224 117" + "color" "0 232 189" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "1959" + "id" "3702" side { - "id" "1056" - "plane" "(-384 128 -128) (-384 256 -128) (-288 256 -128)" - "material" "TILE/MILFLR002" - "uaxis" "[1 0 0 384] 0.25" - "vaxis" "[0 -1 0 -256] 0.25" + "id" "1350" + "plane" "(128 160 112) (128 -160 112) (-384 -160 112)" + "material" "MORE DEV TEXTURES/DEV_GRAY2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "1055" - "plane" "(-384 256 -192) (-384 128 -192) (-288 128 -192)" - "material" "TOOLS/TOOLSNODRAW" + "id" "1349" + "plane" "(128 -160 96) (128 160 96) (-384 160 96)" + "material" "MORE DEV TEXTURES/DEV_GRAY1" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -3164,8 +591,8 @@ world } side { - "id" "1054" - "plane" "(-384 128 -192) (-384 256 -192) (-384 256 -128)" + "id" "1348" + "plane" "(-384 -160 112) (-384 -160 96) (-384 160 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -3175,8 +602,8 @@ world } side { - "id" "1053" - "plane" "(-288 256 -192) (-288 128 -192) (-288 128 -128)" + "id" "1347" + "plane" "(128 -160 96) (128 -160 112) (128 160 112)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -3186,8 +613,8 @@ world } side { - "id" "1052" - "plane" "(-384 256 -192) (-288 256 -192) (-288 256 -128)" + "id" "1346" + "plane" "(-384 160 112) (-384 160 96) (128 160 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -3197,8 +624,8 @@ world } side { - "id" "1051" - "plane" "(-288 128 -192) (-384 128 -192) (-384 128 -128)" + "id" "1345" + "plane" "(-384 -160 96) (-384 -160 112) (128 -160 112)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -3208,18 +635,18 @@ world } editor { - "color" "0 224 117" + "color" "0 232 189" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "1963" + "id" "3707" side { - "id" "1068" - "plane" "(-384 256 64) (-384 288 64) (-288 288 64)" + "id" "1362" + "plane" "(-384 -96 96) (-384 -160 96) (-416 -160 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -3229,8 +656,8 @@ world } side { - "id" "1067" - "plane" "(-384 288 -128) (-384 256 -128) (-288 256 -128)" + "id" "1361" + "plane" "(-384 -160 -64) (-384 -96 -64) (-416 -96 -64)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -3240,9 +667,9 @@ world } side { - "id" "1066" - "plane" "(-384 256 -128) (-384 288 -128) (-384 288 64)" - "material" "TOOLS/TOOLSNODRAW" + "id" "1360" + "plane" "(-416 -160 96) (-416 -160 -64) (-416 -96 -64)" + "material" "MORE DEV TEXTURES/DEV_RED1" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -3251,8 +678,84 @@ world } side { - "id" "1065" - "plane" "(-288 288 -128) (-288 256 -128) (-288 256 64)" + "id" "1359" + "plane" "(-384 -160 -64) (-384 -160 96) (-384 -96 96)" + "material" "MORE DEV TEXTURES/DEV_GRAY2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1358" + "plane" "(-416 -96 96) (-416 -96 -64) (-384 -96 -64)" + "material" "MORE DEV TEXTURES/DEV_RED1" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1357" + "plane" "(-416 -160 -64) (-416 -160 96) (-384 -160 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 232 189" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3710" + side + { + "id" "1374" + "plane" "(144 128 96) (144 32 96) (128 32 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1373" + "plane" "(144 32 -32) (144 128 -32) (128 128 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1372" + "plane" "(128 32 96) (128 32 -32) (128 128 -32)" + "material" "MORE DEV TEXTURES/DEV_GRAY2" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1371" + "plane" "(144 32 -32) (144 32 96) (144 128 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -3262,8 +765,8 @@ world } side { - "id" "1064" - "plane" "(-384 288 -128) (-288 288 -128) (-288 288 64)" + "id" "1370" + "plane" "(128 128 96) (128 128 -32) (144 128 -32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -3273,9 +776,9 @@ world } side { - "id" "1063" - "plane" "(-288 256 -128) (-384 256 -128) (-384 256 64)" - "material" "DEV/REFLECTIVITY_70" + "id" "1369" + "plane" "(128 32 -32) (128 32 96) (144 32 96)" + "material" "MORE DEV TEXTURES/DEV_GRAY2" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -3284,18 +787,18 @@ world } editor { - "color" "0 232 181" + "color" "0 232 189" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "1965" + "id" "3711" side { - "id" "1080" - "plane" "(-288 128 64) (-288 96 64) (-384 96 64)" + "id" "1386" + "plane" "(128 144 96) (128 128 96) (-384 128 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -3305,8 +808,8 @@ world } side { - "id" "1079" - "plane" "(-288 96 -128) (-288 128 -128) (-384 128 -128)" + "id" "1385" + "plane" "(128 128 -32) (128 144 -32) (-384 144 -32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -3316,8 +819,8 @@ world } side { - "id" "1078" - "plane" "(-384 128 64) (-384 96 64) (-384 96 -128)" + "id" "1384" + "plane" "(-384 128 96) (-384 128 -32) (-384 144 -32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -3327,84 +830,8 @@ world } side { - "id" "1077" - "plane" "(-288 96 64) (-288 128 64) (-288 128 -128)" - "material" "DEV/REFLECTIVITY_70" - "uaxis" "[0 1 0 64] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1076" - "plane" "(-384 96 64) (-288 96 64) (-288 96 -128)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1075" - "plane" "(-288 128 64) (-384 128 64) (-384 128 -128)" - "material" "DEV/REFLECTIVITY_70" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 232 181" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "1976" - side - { - "id" "1092" - "plane" "(-384 128 96) (-384 256 96) (-288 256 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1091" - "plane" "(-384 256 64) (-384 128 64) (-288 128 64)" - "material" "DEV/DEV_MEASUREGENERIC01B" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1090" - "plane" "(-384 128 64) (-384 256 64) (-384 256 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" "1089" - "plane" "(-288 256 64) (-288 128 64) (-288 128 96)" + "id" "1383" + "plane" "(128 128 -32) (128 128 96) (128 144 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -3414,8 +841,8 @@ world } side { - "id" "1088" - "plane" "(-384 256 64) (-288 256 64) (-288 256 96)" + "id" "1382" + "plane" "(-384 144 96) (-384 144 -32) (128 144 -32)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -3425,8 +852,84 @@ world } side { - "id" "1087" - "plane" "(-288 128 64) (-384 128 64) (-384 128 96)" + "id" "1381" + "plane" "(-384 128 -32) (-384 128 96) (128 128 96)" + "material" "MORE DEV TEXTURES/DEV_GRAY2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 232 189" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3713" + side + { + "id" "1398" + "plane" "(128 -128 96) (128 -144 96) (-384 -144 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1397" + "plane" "(128 -144 -32) (128 -128 -32) (-384 -128 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1396" + "plane" "(-384 -144 96) (-384 -144 -32) (-384 -128 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1395" + "plane" "(128 -144 -32) (128 -144 96) (128 -128 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1394" + "plane" "(-384 -128 96) (-384 -128 -32) (128 -128 -32)" + "material" "MORE DEV TEXTURES/DEV_GRAY2" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1393" + "plane" "(-384 -144 -32) (-384 -144 96) (128 -144 96)" "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -3436,7 +939,2450 @@ world } editor { - "color" "0 224 117" + "color" "0 232 189" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3714" + side + { + "id" "1410" + "plane" "(144 32 96) (144 -32 96) (128 -32 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1409" + "plane" "(144 -32 64) (144 32 64) (128 32 64)" + "material" "MORE DEV TEXTURES/DEV_GRAY2" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1408" + "plane" "(128 -32 96) (128 -32 64) (128 32 64)" + "material" "MORE DEV TEXTURES/DEV_GRAY2" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1407" + "plane" "(144 -32 64) (144 -32 96) (144 32 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" "1406" + "plane" "(128 32 96) (128 32 64) (144 32 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1405" + "plane" "(128 -32 64) (128 -32 96) (144 -32 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 232 189" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3724" + side + { + "id" "1422" + "plane" "(144 -32 96) (144 -128 96) (128 -128 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1421" + "plane" "(144 -128 -32) (144 -32 -32) (128 -32 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1420" + "plane" "(128 -128 96) (128 -128 -32) (128 -32 -32)" + "material" "MORE DEV TEXTURES/DEV_GRAY2" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1419" + "plane" "(144 -128 -32) (144 -128 96) (144 -32 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" "1418" + "plane" "(128 -32 96) (128 -32 -32) (144 -32 -32)" + "material" "MORE DEV TEXTURES/DEV_GRAY2" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1417" + "plane" "(128 -128 -32) (128 -128 96) (144 -128 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 232 189" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3726" + side + { + "id" "1434" + "plane" "(144 64 96) (400 64 96) (400 48 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1433" + "plane" "(144 48 -32) (400 48 -32) (400 64 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1432" + "plane" "(144 64 96) (144 48 96) (144 48 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1431" + "plane" "(400 64 -32) (400 48 -32) (400 48 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" "1430" + "plane" "(400 64 96) (144 64 96) (144 64 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1429" + "plane" "(400 48 -32) (144 48 -32) (144 48 96)" + "material" "MORE DEV TEXTURES/DEV_GRAY2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 232 189" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3735" + side + { + "id" "1446" + "plane" "(144 -48 96) (400 -48 96) (400 -64 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1445" + "plane" "(144 -64 -32) (400 -64 -32) (400 -48 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1444" + "plane" "(144 -48 96) (144 -64 96) (144 -64 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1443" + "plane" "(400 -48 -32) (400 -64 -32) (400 -64 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" "1442" + "plane" "(400 -48 96) (144 -48 96) (144 -48 -32)" + "material" "MORE DEV TEXTURES/DEV_GRAY2" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1441" + "plane" "(400 -64 -32) (144 -64 -32) (144 -64 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 232 189" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3738" + side + { + "id" "1458" + "plane" "(144 48 -32) (400 48 -32) (400 -48 -32)" + "material" "MORE DEV TEXTURES/DEV_TF2BLUE1" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1457" + "plane" "(144 -48 -48) (400 -48 -48) (400 48 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1456" + "plane" "(144 48 -32) (144 -48 -32) (144 -48 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1455" + "plane" "(400 48 -48) (400 -48 -48) (400 -48 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1454" + "plane" "(400 48 -32) (144 48 -32) (144 48 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1453" + "plane" "(400 -48 -48) (144 -48 -48) (144 -48 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 232 189" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3740" + side + { + "id" "1470" + "plane" "(144 48 112) (400 48 112) (400 -48 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1469" + "plane" "(144 -48 96) (400 -48 96) (400 48 96)" + "material" "MORE DEV TEXTURES/DEV_GRAY1" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1468" + "plane" "(144 48 112) (144 -48 112) (144 -48 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" "1467" + "plane" "(400 48 96) (400 -48 96) (400 -48 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1466" + "plane" "(400 48 112) (144 48 112) (144 48 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1465" + "plane" "(400 -48 96) (144 -48 96) (144 -48 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 232 189" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3741" + side + { + "id" "1482" + "plane" "(128 32 -32) (144 32 -32) (144 -32 -32)" + "material" "MORE DEV TEXTURES/DEV_TF2BLUE1" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1481" + "plane" "(128 -32 -48) (144 -32 -48) (144 32 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1480" + "plane" "(128 32 -32) (128 -32 -32) (128 -32 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1479" + "plane" "(144 32 -48) (144 -32 -48) (144 -32 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1478" + "plane" "(144 32 -32) (128 32 -32) (128 32 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1477" + "plane" "(144 -32 -48) (128 -32 -48) (128 -32 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 232 189" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4058" + side + { + "id" "1494" + "plane" "(-800 512 -64) (-800 -512 -64) (-928 -512 -64)" + "material" "MORE DEV TEXTURES/DEV_GRAY2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1493" + "plane" "(-800 -512 -80) (-800 512 -80) (-928 512 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1492" + "plane" "(-928 -512 -64) (-928 -512 -80) (-928 512 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1491" + "plane" "(-800 -512 -80) (-800 -512 -64) (-800 512 -64)" + "material" "MORE DEV TEXTURES/DEV_GRAY1" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1490" + "plane" "(-928 512 -64) (-928 512 -80) (-800 512 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1489" + "plane" "(-928 -512 -80) (-928 -512 -64) (-800 -512 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 232 189" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4063" + side + { + "id" "1506" + "plane" "(-416 512 -64) (-416 -512 -64) (-544 -512 -64)" + "material" "MORE DEV TEXTURES/DEV_GRAY2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1505" + "plane" "(-416 -512 -80) (-416 512 -80) (-544 512 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1504" + "plane" "(-544 -512 -64) (-544 -512 -80) (-544 512 -80)" + "material" "MORE DEV TEXTURES/DEV_GRAY1" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1503" + "plane" "(-416 -512 -80) (-416 -512 -64) (-416 512 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1502" + "plane" "(-544 512 -64) (-544 512 -80) (-416 512 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1501" + "plane" "(-544 -512 -80) (-544 -512 -64) (-416 -512 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 232 189" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4068" + side + { + "id" "1518" + "plane" "(-544 512 -80) (-544 -512 -80) (-800 -512 -80)" + "material" "MORE DEV TEXTURES/DEV_BLACK1" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1517" + "plane" "(-544 -512 -96) (-544 512 -96) (-800 512 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1516" + "plane" "(-800 -512 -80) (-800 -512 -96) (-800 512 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1515" + "plane" "(-544 -512 -96) (-544 -512 -80) (-544 512 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1514" + "plane" "(-800 512 -80) (-800 512 -96) (-544 512 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1513" + "plane" "(-800 -512 -96) (-800 -512 -80) (-544 -512 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 232 189" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4094" + side + { + "id" "1530" + "plane" "(-384 -32 96) (-416 -32 96) (-416 5.72205e-06 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1529" + "plane" "(-384 5.72205e-06 -64) (-416 5.72205e-06 -64) (-416 -32 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1528" + "plane" "(-416 -32 -64) (-416 5.72205e-06 -64) (-416 5.72205e-06 96)" + "material" "MORE DEV TEXTURES/DEV_RED1" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1527" + "plane" "(-384 -32 96) (-384 5.72205e-06 96) (-384 5.72205e-06 -64)" + "material" "MORE DEV TEXTURES/DEV_GRAY2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1526" + "plane" "(-416 5.72205e-06 -64) (-384 5.72205e-06 -64) (-384 5.72205e-06 96)" + "material" "MORE DEV TEXTURES/DEV_RED1" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1525" + "plane" "(-416 -32 96) (-384 -32 96) (-384 -32 -64)" + "material" "MORE DEV TEXTURES/DEV_RED1" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 232 189" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4098" + side + { + "id" "1542" + "plane" "(-384 96 96) (-416 96 96) (-416 160 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1541" + "plane" "(-384 160 -64) (-416 160 -64) (-416 96 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1540" + "plane" "(-416 96 -64) (-416 160 -64) (-416 160 96)" + "material" "MORE DEV TEXTURES/DEV_RED1" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1539" + "plane" "(-384 96 96) (-384 160 96) (-384 160 -64)" + "material" "MORE DEV TEXTURES/DEV_GRAY2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1538" + "plane" "(-416 160 -64) (-384 160 -64) (-384 160 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1537" + "plane" "(-416 96 96) (-384 96 96) (-384 96 -64)" + "material" "MORE DEV TEXTURES/DEV_RED1" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 232 189" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4101" + side + { + "id" "1554" + "plane" "(-384 96 96) (-384 0 96) (-416 0 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1553" + "plane" "(-384 0 64) (-384 96 64) (-416 96 64)" + "material" "MORE DEV TEXTURES/DEV_RED1" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1552" + "plane" "(-416 0 96) (-416 0 64) (-416 96 64)" + "material" "MORE DEV TEXTURES/DEV_RED1" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1551" + "plane" "(-384 0 64) (-384 0 96) (-384 96 96)" + "material" "MORE DEV TEXTURES/DEV_GRAY2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1550" + "plane" "(-416 96 96) (-416 96 64) (-384 96 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1549" + "plane" "(-416 0 64) (-416 0 96) (-384 0 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 232 189" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4103" + side + { + "id" "1566" + "plane" "(-384 0 0) (-416 0 0) (-416 96 0)" + "material" "MORE DEV TEXTURES/DEV_GRAY2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1565" + "plane" "(-384 96 -64) (-416 96 -64) (-416 0 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1564" + "plane" "(-416 0 -64) (-416 96 -64) (-416 96 0)" + "material" "MORE DEV TEXTURES/DEV_RED1" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1563" + "plane" "(-384 0 0) (-384 96 0) (-384 96 -64)" + "material" "MORE DEV TEXTURES/DEV_GRAY2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1562" + "plane" "(-416 96 -64) (-384 96 -64) (-384 96 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1561" + "plane" "(-416 0 0) (-384 0 0) (-384 0 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 232 189" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4109" + side + { + "id" "1578" + "plane" "(-384 -32 96) (-384 -96 96) (-416 -96 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1577" + "plane" "(-384 -96 64) (-384 -32 64) (-416 -32 64)" + "material" "MORE DEV TEXTURES/DEV_RED1" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1576" + "plane" "(-416 -96 96) (-416 -96 64) (-416 -32 64)" + "material" "MORE DEV TEXTURES/DEV_RED1" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1575" + "plane" "(-384 -96 64) (-384 -96 96) (-384 -32 96)" + "material" "MORE DEV TEXTURES/DEV_GRAY2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1574" + "plane" "(-416 -32 96) (-416 -32 64) (-384 -32 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1573" + "plane" "(-416 -96 64) (-416 -96 96) (-384 -96 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 232 189" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4111" + side + { + "id" "1590" + "plane" "(128 512 192) (128 160 192) (-448 160 192)" + "material" "MORE DEV TEXTURES/DEV_GRAY2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1589" + "plane" "(128 160 -64) (128 512 -64) (-448 512 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1588" + "plane" "(-448 160 192) (-448 160 -64) (-448 512 -64)" + "material" "MORE DEV TEXTURES/DEV_TF2RED2" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1587" + "plane" "(128 160 -64) (128 160 192) (128 512 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" "1586" + "plane" "(-448 512 192) (-448 512 -64) (128 512 -64)" + "material" "MORE DEV TEXTURES/DEV_TF2RED2" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1585" + "plane" "(-448 160 -64) (-448 160 192) (128 160 192)" + "material" "MORE DEV TEXTURES/DEV_TF2RED2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 232 189" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4123" + side + { + "id" "1602" + "plane" "(-64 -160 96) (-64 -512 96) (-448 -512 96)" + "material" "MORE DEV TEXTURES/DEV_GRAY2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1601" + "plane" "(-64 -512 -64) (-64 -160 -64) (-448 -160 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1600" + "plane" "(-448 -512 96) (-448 -512 -64) (-448 -160 -64)" + "material" "MORE DEV TEXTURES/DEV_TF2RED2" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1599" + "plane" "(-64 -512 -64) (-64 -512 96) (-64 -160 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1598" + "plane" "(-448 -160 96) (-448 -160 -64) (-64 -160 -64)" + "material" "MORE DEV TEXTURES/DEV_TF2RED2" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1597" + "plane" "(-448 -512 -64) (-448 -512 96) (-64 -512 96)" + "material" "MORE DEV TEXTURES/DEV_TF2RED2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 232 189" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4127" + side + { + "id" "1614" + "plane" "(128 -160 256) (128 -512 256) (-384 -512 256)" + "material" "MORE DEV TEXTURES/DEV_GRAY2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1613" + "plane" "(128 -512 96) (128 -160 96) (-384 -160 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1612" + "plane" "(-384 -512 256) (-384 -512 96) (-384 -160 96)" + "material" "MORE DEV TEXTURES/DEV_TF2RED2" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1611" + "plane" "(128 -512 96) (128 -512 256) (128 -160 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" "1610" + "plane" "(-384 -160 256) (-384 -160 96) (128 -160 96)" + "material" "MORE DEV TEXTURES/DEV_TF2RED2" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1609" + "plane" "(-384 -512 96) (-384 -512 256) (128 -512 256)" + "material" "MORE DEV TEXTURES/DEV_TF2RED2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 232 189" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4133" + side + { + "id" "1626" + "plane" "(-384 160 160) (-384 -160 160) (-416 -160 160)" + "material" "MORE DEV TEXTURES/DEV_GRAY2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1625" + "plane" "(-384 -160 96) (-384 160 96) (-416 160 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1624" + "plane" "(-416 -160 160) (-416 -160 96) (-416 160 96)" + "material" "MORE DEV TEXTURES/DEV_RED1" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1623" + "plane" "(-384 -160 96) (-384 -160 160) (-384 160 160)" + "material" "MORE DEV TEXTURES/DEV_TF2RED2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1622" + "plane" "(-416 160 160) (-416 160 96) (-384 160 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1621" + "plane" "(-416 -160 96) (-416 -160 160) (-384 -160 160)" + "material" "MORE DEV TEXTURES/DEV_RED1" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 232 189" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4189" + side + { + "id" "1638" + "plane" "(-384 -32 -32) (-384 -96 -32) (-416 -96 -32)" + "material" "MORE DEV TEXTURES/DEV_GRAY2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1637" + "plane" "(-384 -96 -64) (-384 -32 -64) (-416 -32 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1636" + "plane" "(-416 -96 -32) (-416 -96 -64) (-416 -32 -64)" + "material" "MORE DEV TEXTURES/DEV_RED1" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1635" + "plane" "(-384 -96 -64) (-384 -96 -32) (-384 -32 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1634" + "plane" "(-416 -32 -32) (-416 -32 -64) (-384 -32 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1633" + "plane" "(-416 -96 -64) (-416 -96 -32) (-384 -96 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 232 189" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4197" + side + { + "id" "1650" + "plane" "(-416 -32 -48) (-416 -96 -48) (-448 -96 -48)" + "material" "MORE DEV TEXTURES/DEV_GRAY2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1649" + "plane" "(-416 -96 -64) (-416 -32 -64) (-448 -32 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1648" + "plane" "(-448 -96 -48) (-448 -96 -64) (-448 -32 -64)" + "material" "MORE DEV TEXTURES/DEV_RED1" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1647" + "plane" "(-416 -96 -64) (-416 -96 -48) (-416 -32 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1646" + "plane" "(-448 -32 -48) (-448 -32 -64) (-416 -32 -64)" + "material" "MORE DEV TEXTURES/DEV_RED1" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1645" + "plane" "(-448 -96 -64) (-448 -96 -48) (-416 -96 -48)" + "material" "MORE DEV TEXTURES/DEV_RED1" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 232 189" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4218" + side + { + "id" "1651" + "plane" "(160 512 448) (160 -512 448) (128 -512 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1652" + "plane" "(160 -512 112) (160 512 112) (128 512 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1653" + "plane" "(128 -512 448) (128 -512 112) (128 512 112)" + "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" "1654" + "plane" "(160 -512 112) (160 -512 448) (160 512 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1655" + "plane" "(128 512 448) (128 512 112) (160 512 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1656" + "plane" "(128 -512 112) (128 -512 448) (160 -512 448)" + "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 142 191" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4300" + side + { + "id" "1692" + "plane" "(-928 -320 192) (-928 -512 192) (-1312 -512 192)" + "material" "MORE DEV TEXTURES/DEV_GRAY2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1691" + "plane" "(-928 -512 -64) (-928 -320 -64) (-1312 -320 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1690" + "plane" "(-1312 -512 192) (-1312 -512 -64) (-1312 -320 -64)" + "material" "MORE DEV TEXTURES/DEV_TF2RED2" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1689" + "plane" "(-928 -512 -64) (-928 -512 192) (-928 -320 192)" + "material" "MORE DEV TEXTURES/DEV_TF2RED2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1688" + "plane" "(-1312 -320 192) (-1312 -320 -64) (-928 -320 -64)" + "material" "MORE DEV TEXTURES/DEV_TF2RED2" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1687" + "plane" "(-1312 -512 -64) (-1312 -512 192) (-928 -512 192)" + "material" "MORE DEV TEXTURES/DEV_TF2RED2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 232 189" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4307" + side + { + "id" "1716" + "plane" "(-1856 -512 448) (-1856 512 448) (-1824 512 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1715" + "plane" "(-1856 512 -64) (-1856 -512 -64) (-1824 -512 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1714" + "plane" "(-1856 512 -64) (-1856 512 448) (-1856 -512 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1713" + "plane" "(-1824 512 448) (-1824 512 -64) (-1824 -512 -64)" + "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" "1712" + "plane" "(-1824 512 -64) (-1824 512 448) (-1856 512 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1711" + "plane" "(-1824 -512 448) (-1824 -512 -64) (-1856 -512 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 142 191" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4314" + side + { + "id" "1764" + "plane" "(128 544 448) (128 512 448) (-1824 512 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1763" + "plane" "(128 512 -96) (128 544 -96) (-1824 544 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1762" + "plane" "(-1824 512 448) (-1824 512 -96) (-1824 544 -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" "1761" + "plane" "(128 512 -96) (128 512 448) (128 544 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1760" + "plane" "(-1824 544 448) (-1824 544 -96) (128 544 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1759" + "plane" "(-1824 512 -96) (-1824 512 448) (128 512 448)" + "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" "0 142 191" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4320" + side + { + "id" "1776" + "plane" "(400 48 96) (416 48 96) (416 -48 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1775" + "plane" "(400 -48 -32) (416 -48 -32) (416 48 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1774" + "plane" "(400 48 96) (400 -48 96) (400 -48 -32)" + "material" "MORE DEV TEXTURES/DEV_GRAY2" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1773" + "plane" "(416 48 -32) (416 -48 -32) (416 -48 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" "1772" + "plane" "(416 48 96) (400 48 96) (400 48 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1771" + "plane" "(416 -48 -32) (400 -48 -32) (400 -48 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 232 189" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4356" + side + { + "id" "1788" + "plane" "(128 -512 464) (-1824 -512 464) (-1824 512 464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1787" + "plane" "(128 512 448) (-1824 512 448) (-1824 -512 448)" + "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" "1786" + "plane" "(-1824 -512 448) (-1824 512 448) (-1824 512 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" "1785" + "plane" "(128 -512 464) (128 512 464) (128 512 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1784" + "plane" "(-1824 512 448) (128 512 448) (128 512 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" + } + side + { + "id" "1783" + "plane" "(-1824 -512 464) (128 -512 464) (128 -512 448)" + "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 142 191" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4410" + side + { + "id" "1800" + "plane" "(-992 -128 224) (-1312 -128 224) (-1312 512 224)" + "material" "MORE DEV TEXTURES/DEV_GRAY2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1799" + "plane" "(-928 512 -64) (-1312 512 -64) (-1312 -128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1798" + "plane" "(-1312 -128 -64) (-1312 512 -64) (-1312 512 224)" + "material" "MORE DEV TEXTURES/DEV_TF2RED2" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1797" + "plane" "(-992 -128 224) (-992 512 224) (-928 512 160)" + "material" "MORE DEV TEXTURES/DEV_GRAY2" + "uaxis" "[0.707107 0 -0.707107 -16.6321] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1796" + "plane" "(-928 512 -64) (-928 512 160) (-992 512 224)" + "material" "MORE DEV TEXTURES/DEV_TF2RED2" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1795" + "plane" "(-992 -128 224) (-928 -128 160) (-928 -128 -64)" + "material" "MORE DEV TEXTURES/DEV_TF2RED2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "0" + "plane" "(-928 512 -64) (-928 -128 -64) (-928 -128 160)" + "material" "MORE DEV TEXTURES/DEV_TF2RED2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 232 189" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4427" + side + { + "id" "1824" + "plane" "(-1312 512 -64) (-1312 -512 -64) (-1824 -512 -64)" + "material" "MORE DEV TEXTURES/DEV_DARKGREEN1" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1823" + "plane" "(-1312 -512 -80) (-1312 512 -80) (-1824 512 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1822" + "plane" "(-1824 -512 -64) (-1824 -512 -80) (-1824 512 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1821" + "plane" "(-1312 -512 -80) (-1312 -512 -64) (-1312 512 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1820" + "plane" "(-1824 512 -64) (-1824 512 -80) (-1312 512 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1819" + "plane" "(-1824 -512 -80) (-1824 -512 -64) (-1312 -512 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 232 189" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4643" + side + { + "id" "1866" + "plane" "(128 160 320) (128 -160 320) (-256 -160 320)" + "material" "MORE DEV TEXTURES/DEV_GRAY2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1865" + "plane" "(128 -160 64) (128 160 64) (-256 160 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1864" + "plane" "(-256 -160 320) (-256 -160 64) (-256 160 64)" + "material" "MORE DEV TEXTURES/DEV_TF2RED2" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1863" + "plane" "(128 -160 64) (128 -160 320) (128 160 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" "1862" + "plane" "(-256 160 320) (-256 160 64) (128 160 64)" + "material" "MORE DEV TEXTURES/DEV_TF2RED2" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1861" + "plane" "(-256 -160 64) (-256 -160 320) (128 -160 320)" + "material" "MORE DEV TEXTURES/DEV_TF2RED2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 232 189" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4681" + side + { + "id" "1878" + "plane" "(-928 -128 -64) (-928 -320 -64) (-1312 -320 -64)" + "material" "MORE DEV TEXTURES/DEV_DARKGREEN1" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1877" + "plane" "(-928 -320 -80) (-928 -128 -80) (-1312 -128 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1876" + "plane" "(-1312 -320 -64) (-1312 -320 -80) (-1312 -128 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1875" + "plane" "(-928 -320 -80) (-928 -320 -64) (-928 -128 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1874" + "plane" "(-1312 -128 -64) (-1312 -128 -80) (-928 -128 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1873" + "plane" "(-1312 -320 -80) (-1312 -320 -64) (-928 -320 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 232 189" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4312" + side + { + "id" "1884" + "plane" "(128 -544 448) (-1824 -544 448) (-1824 -512 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1883" + "plane" "(128 -512 -96) (-1824 -512 -96) (-1824 -544 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1882" + "plane" "(-1824 -544 -96) (-1824 -512 -96) (-1824 -512 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1881" + "plane" "(128 -544 448) (128 -512 448) (128 -512 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1880" + "plane" "(-1824 -512 -96) (128 -512 -96) (128 -512 448)" + "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" "1879" + "plane" "(-1824 -544 448) (128 -544 448) (128 -544 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 142 191" "visgroupshown" "1" "visgroupautoshown" "1" } @@ -3454,105 +3400,102 @@ world } entity { - "id" "7" + "id" "3685" "classname" "info_player_start" "angles" "0 0 0" - "origin" "0 0 -112" + "origin" "0 0 -16" editor { "color" "0 255 0" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 500]" + "logicalpos" "[0 14000]" } } entity { - "id" "263" + "id" "4431" + "classname" "light_environment" + "_ambient" "254 253 222 400" + "_ambientHDR" "-1 -1 -1 1" + "_AmbientScaleHDR" "1" + "_light" "248 254 233 300" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "angles" "-77 352 0" + "pitch" "-77" + "SunSpreadAngle" "5" + "origin" "-672 0 128" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 2500]" + } +} +entity +{ + "id" "4474" "classname" "light" "_castentityshadow" "0" "_constant_attn" "0" "_distance" "0" "_fifty_percent_distance" "0" "_hardfalloff" "0" - "_light" "255 255 255 200" + "_light" "255 255 255 100" "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" "_zero_percent_distance" "0" "style" "0" - "origin" "0 0 0" + "origin" "-320 0 64" editor { "color" "220 30 220" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 15500]" + "logicalpos" "[500 4000]" } } entity { - "id" "566" + "id" "4535" "classname" "light" "_castentityshadow" "0" "_constant_attn" "0" "_distance" "0" "_fifty_percent_distance" "0" "_hardfalloff" "0" - "_light" "255 255 255 200" + "_light" "255 255 255 100" "_lightHDR" "-1 -1 -1 1" "_lightscaleHDR" "1" "_linear_attn" "0" "_quadratic_attn" "1" "_zero_percent_distance" "0" "style" "0" - "origin" "-192 704 0" + "origin" "64 0 64" editor { "color" "220 30 220" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 15500]" + "logicalpos" "[500 4000]" } } entity { - "id" "666" - "classname" "light" - "_castentityshadow" "0" - "_constant_attn" "0" - "_distance" "0" - "_fifty_percent_distance" "0" - "_hardfalloff" "0" - "_light" "255 255 255 200" - "_lightHDR" "-1 -1 -1 1" - "_lightscaleHDR" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "0" - "style" "0" - "origin" "448 192 0" - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 15500]" - } -} -entity -{ - "id" "1811" + "id" "4581" "classname" "func_detail" solid { - "id" "1757" + "id" "4418" side { - "id" "528" - "plane" "(-128 704 -112) (-64 704 -112) (-64 448 -112)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" + "id" "1854" + "plane" "(-896 416 96) (-896 -32 96) (-928 -32 96)" + "material" "MORE DEV TEXTURES/DEV_GRAY2" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -3561,9 +3504,9 @@ entity } side { - "id" "527" - "plane" "(-128 448 -128) (-64 448 -128) (-64 704 -128)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" + "id" "1853" + "plane" "(-896 -32 -64) (-896 416 -64) (-928 416 -64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -3572,9 +3515,9 @@ entity } side { - "id" "526" - "plane" "(-128 704 -112) (-128 448 -112) (-128 448 -128)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" + "id" "1852" + "plane" "(-928 -32 96) (-928 -32 -64) (-928 416 -64)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 -1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -3583,9 +3526,9 @@ entity } side { - "id" "525" - "plane" "(-64 704 -128) (-64 448 -128) (-64 448 -112)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" + "id" "1851" + "plane" "(-896 -32 -64) (-896 -32 96) (-896 416 96)" + "material" "MORE DEV TEXTURES/DEV_TF2RED2" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -3594,9 +3537,9 @@ entity } side { - "id" "524" - "plane" "(-64 704 -112) (-128 704 -112) (-128 704 -128)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" + "id" "1850" + "plane" "(-928 416 96) (-928 416 -64) (-896 416 -64)" + "material" "MORE DEV TEXTURES/DEV_TF2RED2" "uaxis" "[-1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -3605,9 +3548,9 @@ entity } side { - "id" "523" - "plane" "(-64 448 -128) (-128 448 -128) (-128 448 -112)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" + "id" "1849" + "plane" "(-928 -32 -64) (-928 -32 96) (-896 -32 96)" + "material" "MORE DEV TEXTURES/DEV_TF2RED2" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -3621,2136 +3564,12 @@ entity "visgroupautoshown" "1" } } - solid - { - "id" "1763" - side - { - "id" "534" - "plane" "(-128 704 -80) (-64 704 -80) (-64 448 -80)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "533" - "plane" "(-128 448 -96) (-64 448 -96) (-64 704 -96)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "532" - "plane" "(-128 704 -80) (-128 448 -80) (-128 448 -96)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "531" - "plane" "(-64 704 -96) (-64 448 -96) (-64 448 -80)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "530" - "plane" "(-64 704 -80) (-128 704 -80) (-128 704 -96)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "529" - "plane" "(-64 448 -96) (-128 448 -96) (-128 448 -80)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "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" "1775" - side - { - "id" "540" - "plane" "(-128 704 -32) (-64 704 -32) (-64 448 -32)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "539" - "plane" "(-128 448 -48) (-64 448 -48) (-64 704 -48)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "538" - "plane" "(-128 704 -32) (-128 448 -32) (-128 448 -48)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "537" - "plane" "(-64 704 -48) (-64 448 -48) (-64 448 -32)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "536" - "plane" "(-64 704 -32) (-128 704 -32) (-128 704 -48)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "535" - "plane" "(-64 448 -48) (-128 448 -48) (-128 448 -32)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "1777" - side - { - "id" "546" - "plane" "(-128 704 0) (-64 704 0) (-64 448 0)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "545" - "plane" "(-128 448 -16) (-64 448 -16) (-64 704 -16)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "544" - "plane" "(-128 704 0) (-128 448 0) (-128 448 -16)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "543" - "plane" "(-64 704 -16) (-64 448 -16) (-64 448 0)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "542" - "plane" "(-64 704 0) (-128 704 0) (-128 704 -16)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "541" - "plane" "(-64 448 -16) (-128 448 -16) (-128 448 0)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } editor { "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" - "logicalpos" "[0 6000]" - } -} -entity -{ - "id" "1817" - "classname" "func_detail" - solid - { - "id" "1818" - side - { - "id" "576" - "plane" "(0 704 -112) (64 704 -112) (64 448 -112)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "575" - "plane" "(0 448 -128) (64 448 -128) (64 704 -128)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "574" - "plane" "(0 704 -112) (0 448 -112) (0 448 -128)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "573" - "plane" "(64 704 -128) (64 448 -128) (64 448 -112)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "572" - "plane" "(64 704 -112) (0 704 -112) (0 704 -128)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "571" - "plane" "(64 448 -128) (0 448 -128) (0 448 -112)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "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" "1819" - side - { - "id" "582" - "plane" "(0 704 -80) (64 704 -80) (64 448 -80)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "581" - "plane" "(0 448 -96) (64 448 -96) (64 704 -96)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "580" - "plane" "(0 704 -80) (0 448 -80) (0 448 -96)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "579" - "plane" "(64 704 -96) (64 448 -96) (64 448 -80)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "578" - "plane" "(64 704 -80) (0 704 -80) (0 704 -96)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "577" - "plane" "(64 448 -96) (0 448 -96) (0 448 -80)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "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" "1820" - side - { - "id" "588" - "plane" "(0 704 -32) (64 704 -32) (64 448 -32)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "587" - "plane" "(0 448 -48) (64 448 -48) (64 704 -48)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "586" - "plane" "(0 704 -32) (0 448 -32) (0 448 -48)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "585" - "plane" "(64 704 -48) (64 448 -48) (64 448 -32)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "584" - "plane" "(64 704 -32) (0 704 -32) (0 704 -48)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "583" - "plane" "(64 448 -48) (0 448 -48) (0 448 -32)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "1821" - side - { - "id" "594" - "plane" "(0 704 0) (64 704 0) (64 448 0)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "593" - "plane" "(0 448 -16) (64 448 -16) (64 704 -16)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "592" - "plane" "(0 704 0) (0 448 0) (0 448 -16)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "591" - "plane" "(64 704 -16) (64 448 -16) (64 448 0)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "590" - "plane" "(64 704 0) (0 704 0) (0 704 -16)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "589" - "plane" "(64 448 -16) (0 448 -16) (0 448 0)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 6000]" - } -} -entity -{ - "id" "1827" - "classname" "func_detail" - solid - { - "id" "1828" - side - { - "id" "624" - "plane" "(128 576 -112) (192 576 -112) (192 448 -112)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "623" - "plane" "(128 448 -128) (192 448 -128) (192 576 -128)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "622" - "plane" "(128 576 -112) (128 448 -112) (128 448 -128)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "621" - "plane" "(192 576 -128) (192 448 -128) (192 448 -112)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "620" - "plane" "(192 576 -112) (128 576 -112) (128 576 -128)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "619" - "plane" "(192 448 -128) (128 448 -128) (128 448 -112)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "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" "1829" - side - { - "id" "630" - "plane" "(128 576 -80) (192 576 -80) (192 448 -80)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "629" - "plane" "(128 448 -96) (192 448 -96) (192 576 -96)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "628" - "plane" "(128 576 -80) (128 448 -80) (128 448 -96)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "627" - "plane" "(192 576 -96) (192 448 -96) (192 448 -80)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "626" - "plane" "(192 576 -80) (128 576 -80) (128 576 -96)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "625" - "plane" "(192 448 -96) (128 448 -96) (128 448 -80)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "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" "1830" - side - { - "id" "636" - "plane" "(128 576 -32) (192 576 -32) (192 448 -32)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "635" - "plane" "(128 448 -48) (192 448 -48) (192 576 -48)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "634" - "plane" "(128 576 -32) (128 448 -32) (128 448 -48)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "633" - "plane" "(192 576 -48) (192 448 -48) (192 448 -32)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "632" - "plane" "(192 576 -32) (128 576 -32) (128 576 -48)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "631" - "plane" "(192 448 -48) (128 448 -48) (128 448 -32)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "1831" - side - { - "id" "642" - "plane" "(128 576 0) (192 576 0) (192 448 0)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "641" - "plane" "(128 448 -16) (192 448 -16) (192 576 -16)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "640" - "plane" "(128 576 0) (128 448 0) (128 448 -16)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "639" - "plane" "(192 576 -16) (192 448 -16) (192 448 0)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "638" - "plane" "(192 576 0) (128 576 0) (128 576 -16)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "637" - "plane" "(192 448 -16) (128 448 -16) (128 448 0)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 6000]" - } -} -entity -{ - "id" "1837" - "classname" "func_detail" - solid - { - "id" "1838" - side - { - "id" "672" - "plane" "(256 576 -112) (320 576 -112) (320 448 -112)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "671" - "plane" "(256 448 -128) (320 448 -128) (320 576 -128)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "670" - "plane" "(256 576 -112) (256 448 -112) (256 448 -128)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "669" - "plane" "(320 576 -128) (320 448 -128) (320 448 -112)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "668" - "plane" "(320 576 -112) (256 576 -112) (256 576 -128)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "667" - "plane" "(320 448 -128) (256 448 -128) (256 448 -112)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "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" "1839" - side - { - "id" "678" - "plane" "(256 576 -80) (320 576 -80) (320 448 -80)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "677" - "plane" "(256 448 -96) (320 448 -96) (320 576 -96)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "676" - "plane" "(256 576 -80) (256 448 -80) (256 448 -96)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "675" - "plane" "(320 576 -96) (320 448 -96) (320 448 -80)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "674" - "plane" "(320 576 -80) (256 576 -80) (256 576 -96)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "673" - "plane" "(320 448 -96) (256 448 -96) (256 448 -80)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "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" "1840" - side - { - "id" "684" - "plane" "(256 576 -32) (320 576 -32) (320 448 -32)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "683" - "plane" "(256 448 -48) (320 448 -48) (320 576 -48)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "682" - "plane" "(256 576 -32) (256 448 -32) (256 448 -48)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "681" - "plane" "(320 576 -48) (320 448 -48) (320 448 -32)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "680" - "plane" "(320 576 -32) (256 576 -32) (256 576 -48)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "679" - "plane" "(320 448 -48) (256 448 -48) (256 448 -32)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "1841" - side - { - "id" "690" - "plane" "(256 576 0) (320 576 0) (320 448 0)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "689" - "plane" "(256 448 -16) (320 448 -16) (320 576 -16)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "688" - "plane" "(256 576 0) (256 448 0) (256 448 -16)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "687" - "plane" "(320 576 -16) (320 448 -16) (320 448 0)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "686" - "plane" "(320 576 0) (256 576 0) (256 576 -16)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "685" - "plane" "(320 448 -16) (256 448 -16) (256 448 0)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 6000]" - } -} -entity -{ - "id" "1847" - "classname" "func_detail" - solid - { - "id" "1848" - side - { - "id" "720" - "plane" "(384 704 -112) (640 704 -112) (640 640 -112)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "719" - "plane" "(384 640 -128) (640 640 -128) (640 704 -128)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "718" - "plane" "(384 704 -112) (384 640 -112) (384 640 -128)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "717" - "plane" "(640 704 -128) (640 640 -128) (640 640 -112)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "716" - "plane" "(640 704 -112) (384 704 -112) (384 704 -128)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "715" - "plane" "(640 640 -128) (384 640 -128) (384 640 -112)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "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" "1849" - side - { - "id" "726" - "plane" "(384 704 -80) (640 704 -80) (640 640 -80)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "725" - "plane" "(384 640 -96) (640 640 -96) (640 704 -96)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "724" - "plane" "(384 704 -80) (384 640 -80) (384 640 -96)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "723" - "plane" "(640 704 -96) (640 640 -96) (640 640 -80)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "722" - "plane" "(640 704 -80) (384 704 -80) (384 704 -96)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "721" - "plane" "(640 640 -96) (384 640 -96) (384 640 -80)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "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" "1850" - side - { - "id" "732" - "plane" "(384 704 -32) (640 704 -32) (640 640 -32)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "731" - "plane" "(384 640 -48) (640 640 -48) (640 704 -48)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "730" - "plane" "(384 704 -32) (384 640 -32) (384 640 -48)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "729" - "plane" "(640 704 -48) (640 640 -48) (640 640 -32)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "728" - "plane" "(640 704 -32) (384 704 -32) (384 704 -48)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "727" - "plane" "(640 640 -48) (384 640 -48) (384 640 -32)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "1851" - side - { - "id" "738" - "plane" "(384 704 0) (640 704 0) (640 640 0)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "737" - "plane" "(384 640 -16) (640 640 -16) (640 704 -16)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "736" - "plane" "(384 704 0) (384 640 0) (384 640 -16)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "735" - "plane" "(640 704 -16) (640 640 -16) (640 640 0)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "734" - "plane" "(640 704 0) (384 704 0) (384 704 -16)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "733" - "plane" "(640 640 -16) (384 640 -16) (384 640 0)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 6000]" - } -} -entity -{ - "id" "1892" - "classname" "func_detail" - solid - { - "id" "1893" - side - { - "id" "912" - "plane" "(384 512 -112) (640 512 -112) (640 448 -112)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "911" - "plane" "(384 448 -128) (640 448 -128) (640 512 -128)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "910" - "plane" "(384 512 -112) (384 448 -112) (384 448 -128)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "909" - "plane" "(640 512 -128) (640 448 -128) (640 448 -112)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "908" - "plane" "(640 512 -112) (384 512 -112) (384 512 -128)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "907" - "plane" "(640 448 -128) (384 448 -128) (384 448 -112)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "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" "1894" - side - { - "id" "918" - "plane" "(384 512 -80) (640 512 -80) (640 448 -80)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "917" - "plane" "(384 448 -96) (640 448 -96) (640 512 -96)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "916" - "plane" "(384 512 -80) (384 448 -80) (384 448 -96)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "915" - "plane" "(640 512 -96) (640 448 -96) (640 448 -80)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "914" - "plane" "(640 512 -80) (384 512 -80) (384 512 -96)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "913" - "plane" "(640 448 -96) (384 448 -96) (384 448 -80)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "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" "1895" - side - { - "id" "924" - "plane" "(384 512 -32) (640 512 -32) (640 448 -32)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "923" - "plane" "(384 448 -48) (640 448 -48) (640 512 -48)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "922" - "plane" "(384 512 -32) (384 448 -32) (384 448 -48)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "921" - "plane" "(640 512 -48) (640 448 -48) (640 448 -32)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "920" - "plane" "(640 512 -32) (384 512 -32) (384 512 -48)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "919" - "plane" "(640 448 -48) (384 448 -48) (384 448 -32)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "1896" - side - { - "id" "930" - "plane" "(384 512 0) (640 512 0) (640 448 0)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "929" - "plane" "(384 448 -16) (640 448 -16) (640 512 -16)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "928" - "plane" "(384 512 0) (384 448 0) (384 448 -16)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "927" - "plane" "(640 512 -16) (640 448 -16) (640 448 0)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "926" - "plane" "(640 512 0) (384 512 0) (384 512 -16)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "925" - "plane" "(640 448 -16) (384 448 -16) (384 448 0)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 6000]" - } -} -entity -{ - "id" "1897" - "classname" "func_detail" - solid - { - "id" "1898" - side - { - "id" "960" - "plane" "(768 704 -112) (832 704 -112) (832 448 -112)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "959" - "plane" "(768 448 -128) (832 448 -128) (832 704 -128)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "958" - "plane" "(768 704 -112) (768 448 -112) (768 448 -128)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "957" - "plane" "(832 704 -128) (832 448 -128) (832 448 -112)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "956" - "plane" "(832 704 -112) (768 704 -112) (768 704 -128)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "955" - "plane" "(832 448 -128) (768 448 -128) (768 448 -112)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "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" "1899" - side - { - "id" "966" - "plane" "(768 704 -80) (832 704 -80) (832 448 -80)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "965" - "plane" "(768 448 -96) (832 448 -96) (832 704 -96)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "964" - "plane" "(768 704 -80) (768 448 -80) (768 448 -96)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "963" - "plane" "(832 704 -96) (832 448 -96) (832 448 -80)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "962" - "plane" "(832 704 -80) (768 704 -80) (768 704 -96)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "961" - "plane" "(832 448 -96) (768 448 -96) (768 448 -80)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "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" "1900" - side - { - "id" "972" - "plane" "(768 704 -32) (832 704 -32) (832 448 -32)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "971" - "plane" "(768 448 -48) (832 448 -48) (832 704 -48)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "970" - "plane" "(768 704 -32) (768 448 -32) (768 448 -48)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "969" - "plane" "(832 704 -48) (832 448 -48) (832 448 -32)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "968" - "plane" "(832 704 -32) (768 704 -32) (768 704 -48)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "967" - "plane" "(832 448 -48) (768 448 -48) (768 448 -32)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "1901" - side - { - "id" "978" - "plane" "(768 704 0) (832 704 0) (832 448 0)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "977" - "plane" "(768 448 -16) (832 448 -16) (832 704 -16)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "976" - "plane" "(768 704 0) (768 448 0) (768 448 -16)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "975" - "plane" "(832 704 -16) (832 448 -16) (832 448 0)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "974" - "plane" "(832 704 0) (768 704 0) (768 704 -16)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "973" - "plane" "(832 448 -16) (768 448 -16) (768 448 0)" - "material" "MORE DEV TEXTURES/DEV_DARKGRAY1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 6000]" + "logicalpos" "[500 5000]" } } cameras