diff --git a/gamemodes/benny/entities/weapons/benny.lua b/gamemodes/benny/entities/weapons/benny.lua index b0a0416..793c0e7 100644 --- a/gamemodes/benny/entities/weapons/benny.lua +++ b/gamemodes/benny/entities/weapons/benny.lua @@ -1,4 +1,6 @@ +-- The benny weapon handles the weapon pickups you find throughout the game. + SWEP.Base = "weapon_base" SWEP.PrintName = "Benny Weapon Handler" @@ -6,10 +8,23 @@ SWEP.PrintName = "Benny Weapon Handler" SWEP.ViewModel = "models/weapons/c_pistol.mdl" SWEP.WorldModel = "models/weapons/w_pistol.mdl" +function SWEP:SetupDataTables() + self:NetworkVar( "Float", 0, "Aim" ) +end + function SWEP:PrimaryAttack() + if self:Clip1() == 0 then + self:EmitSound( "benny/weapons/common/06-13.ogg", 80, 100, 1, CHAN_STATIC ) + return + end + if CLIENT then AddCaption( "PISTOL", Color( 61, 61, 61 ), "[Pistol shot]", 0.1, 0.5 ) end + + self:EmitSound( "benny/weapons/1911/0".. math.random(1,3) ..".ogg", 110, 100, 1, CHAN_STATIC ) + + self:SetClip1( self:Clip1() - 1 ) return true end @@ -18,12 +33,23 @@ function SWEP:SecondaryAttack() end function SWEP:Reload() + self:SetClip1( 17 ) return true end function SWEP:Think() - self:SetWeaponHoldType("normal") - self:SetHoldType("normal") + local p = self:GetOwner() + + self:SetAim( math.Approach( self:GetAim(), p:KeyDown(IN_ATTACK2) and 1 or 0, FrameTime()/0.05 ) ) + + local ht = "normal" + if self:GetAim() > 0 then + ht = "revolver" + end + + self:SetWeaponHoldType(ht) + self:SetHoldType(ht) + return true end diff --git a/gamemodes/benny/gamemode/modules/commons/sh_commons.lua b/gamemodes/benny/gamemode/modules/commons/sh_commons.lua new file mode 100644 index 0000000..a0f2741 --- /dev/null +++ b/gamemodes/benny/gamemode/modules/commons/sh_commons.lua @@ -0,0 +1,13 @@ + +local UUID_chars = "0123456789ABCDEF" + +function UUID_generate() + local str = "" + for i=1, 8 do + str = str .. UUID_chars[ math.random( 1, #UUID_chars ) ] + -- if (i%4==0 and i!=8) then + -- str = str .. "-" + -- end + end + return str +end \ No newline at end of file diff --git a/gamemodes/benny/gamemode/modules/player/cl_camera.lua b/gamemodes/benny/gamemode/modules/player/cl_camera.lua index 25c54d9..3ccf1f4 100644 --- a/gamemodes/benny/gamemode/modules/player/cl_camera.lua +++ b/gamemodes/benny/gamemode/modules/player/cl_camera.lua @@ -3,6 +3,27 @@ local debugcolor = Color( 255, 0, 255, 1 ) +local function QuickDrag( self, dist, ply ) + local spos = ply:GetPos() + self.QuickDrag = self.QuickDrag or Vector() + + -- debugoverlay.Box( self.last, Vector( -dist, -dist, 0 ), Vector( dist, dist, 64 ), 0, Color( 0, 0, 255, 0 ) ) + + if spos.x > (self.QuickDrag.x+dist) then + self.QuickDrag.x = spos.x-dist + elseif spos.x < (self.QuickDrag.x-dist) then + self.QuickDrag.x = spos.x+dist + end + + if spos.y > (self.QuickDrag.y+dist) then + self.QuickDrag.y = spos.y-dist + elseif spos.y < (self.QuickDrag.y-dist) then + self.QuickDrag.y = spos.y+dist + end + + return spos +end + tempmapcameras = {} tempmapcameras["benny_caramelldansen"] = {} @@ -10,7 +31,7 @@ tempmapcameras["benny_caramelldansen"] = {} tempmapcameras["benny_caramelldansen"]["main"] = { Type = "Standard", Pos = Vector( -510, 0, 128 ), - Ang = Angle( 12, 0, 0 ), + Ang = Angle( 44, 0, 0 ), FOV = 90, Checks = { { @@ -24,6 +45,10 @@ tempmapcameras["benny_caramelldansen"]["main"] = { local ang = Angle() ang:Set( self.Ang ) + pos:Set( QuickDrag( self, 40, ply ) ) + pos.x = pos.x - 130 + pos.z = 180 + return pos, ang, self.FOV end } @@ -166,23 +191,13 @@ local tempcam = { Special = function( self, ply ) local pos = Vector() - local ang = Angle() - local fov = self.FOV - local ppos = ply:GetPos() - local pang = ply:EyeAngles() - - pos:Set( ppos ) - ang:Add( pang ) - - pos.z = pos.z + 68 - ctrace.start = pos - ctrace.endpos = pos + ( ang:Forward() * -60 ) + ( ang:Right() * 20 ) - ctrace.filter = ply - local tr = util.TraceHull( ctrace ) - - pos = tr.HitPos - - return pos, ang, fov + local ang = Angle( 22, 0, 0 ) + + pos:Set( QuickDrag( self, 40, ply ) ) + pos.x = pos.x - 30 + pos.z = pos.z + 80 + + return pos, ang, self.FOV end } @@ -250,39 +265,65 @@ local function decide_active() return false end +function bennyfp( origin, angles, fov ) + local ply = LocalPlayer() + assert( IsValid( ply:GetActiveWeapon() ) ) + + local pos, ang = Vector(), Angle() + + pos:Set( ply:GetPos() ) + pos.z = pos.z + 64 + ang:Set( angles ) + + pos:Add( 16 * ang:Right() ) + pos:Add( -32 * ang:Forward() ) + pos:Add( 0 * ang:Up() ) + + pos:Add( 16 * ang:Up() * (ang.p/90) ) + + return pos, ang, 90 +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 decide_active() local camera = BENNY_ACTIVECAMERA + local view = {} + view.origin = pos + view.angles = ang + view.fov = 90 if camera then - local view = { - origin = camera.Pos, - angles = camera.Ang, - fov = camera.FOV or 60, - drawviewer = true - } + view.origin = camera.Pos + view.angles = camera.Ang + view.fov = camera.FOV or 60 if camera.Special then view.origin, view.angles, view.fov = camera.Special( camera, ply ) end - - local st = c_over:GetString() - if st != "" then - local st = string.Explode( " ", st ) - view.origin.x = tonumber(st[1]) - view.origin.y = tonumber(st[2]) - view.origin.z = tonumber(st[3]) - - view.angles.x = tonumber(st[4]) - view.angles.y = tonumber(st[5]) - view.angles.z = tonumber(st[6]) - - view.fov = tonumber(st[7]) - end - - --view.fov = Convert( view.fov, (ScrH()/ScrW())/(3/4) ) - return view end + + -- PROTO: Add correct benny weapon check + if IsValid(ply:GetActiveWeapon()) and ply:GetActiveWeapon():GetAim() > 0 then + view.drawviewer = true + view.origin, view.angles, view.fov = bennyfp( view.origin, view.angles, view.fov ) + end + + local st = c_over:GetString() + if st != "" then + local st = string.Explode( " ", st ) + view.origin.x = tonumber(st[1]) + view.origin.y = tonumber(st[2]) + view.origin.z = tonumber(st[3]) + + view.angles.x = tonumber(st[4]) + view.angles.y = tonumber(st[5]) + view.angles.z = tonumber(st[6]) + + view.fov = tonumber(st[7]) + end + + view.fov = Convert( view.fov, (ScrH()/ScrW())/(3/4) ) + return view end ) function Convert( fovDegrees, ratio ) diff --git a/gamemodes/benny/gamemode/modules/player/cl_hud.lua b/gamemodes/benny/gamemode/modules/player/cl_hud.lua index 3a612a9..f66e03f 100644 --- a/gamemodes/benny/gamemode/modules/player/cl_hud.lua +++ b/gamemodes/benny/gamemode/modules/player/cl_hud.lua @@ -8,6 +8,9 @@ local hide = { ["CHudSecondaryAmmo"] = true, ["CHudPoisonDamageIndicator"] = true, ["CHudCrosshair"] = true, + ["CHUDQuickInfo"] = true, + ["CHudSuitPower"] = true, + ["CHudZoom"] = true, } hook.Add( "HUDShouldDraw", "HideHUD", function( name ) @@ -135,11 +138,14 @@ function AddCaption( name, color, text, time_to_type, lifetime ) end local color_caption = Color( 0, 0, 0, 127 ) +local mat_grad = Material( "benny/hud/grad.png", "mips smooth" ) hook.Add( "HUDPaint", "Benny_HUDPaint", function() local sw, sh = ScrW(), ScrH() - localss = ss(1) local b = ss(20) + local p = LocalPlayer() + -- PROTO: Make sure this is the 'benny' weapon. + local wep = p:GetActiveWeapon() local scheme = schemes["benny"] @@ -148,7 +154,8 @@ hook.Add( "HUDPaint", "Benny_HUDPaint", function() surface.SetDrawColor( scheme["bg"] ) surface.DrawRect( b, sh - b - ss(22), ss(140), ss(14+8) ) - local hp = CurTime()*0.5 % 1 + local hp = p:Health()/100 --CurTime()*0.5 % 1 + local ti = (CurTime()*0.75 / (hp)) % 1 -- Text underneath surface.SetFont( "Benny_18" ) @@ -160,6 +167,15 @@ hook.Add( "HUDPaint", "Benny_HUDPaint", function() surface.SetDrawColor( scheme["fg"] ) surface.DrawRect( b + ss(4), sh - b - ss(22) + ss(4), ss((140*hp)-8), ss(14) ) + local gcol = scheme["fg"] + local ch, cs, cl = gcol:ToHSL() + cl = ((cl*0.0) + (1)*hp) + gcol = HSLToColor( ch, cs, cl ) + gcol.a = ((1-ti)*255*hp) + ((1-hp)*255) + surface.SetDrawColor( gcol ) + surface.SetMaterial( mat_grad ) + surface.DrawTexturedRect( b + ss(4), sh - b - ss(22) + ss(4), ss((140*hp*ti)-8), ss(14) ) + -- Bar text surface.SetTextColor( scheme["bg"] ) surface.SetTextPos( b + ss(6), sh - b - ss(22) + ss(3) ) @@ -170,29 +186,30 @@ hook.Add( "HUDPaint", "Benny_HUDPaint", function() do -- Weapon local w, h = 150, 100 + local BOXHEIGHT = 44 -- BG surface.SetDrawColor( scheme["bg"] ) - surface.DrawRect( sw - b - ss(w), sh - b - ss(100), ss(w), ss(100) ) + surface.DrawRect( sw - b - ss(w), sh - b - ss(BOXHEIGHT), ss(w), ss(BOXHEIGHT) ) -- Text bar surface.SetFont( "Benny_18" ) surface.SetDrawColor( scheme["fg"] ) - surface.DrawRect( sw - b - ss(w-4), sh - b - ss(100-4), ss(w-8), ss(14) ) + surface.DrawRect( sw - b - ss(w-4), sh - b - ss(BOXHEIGHT-4), ss(w-8), ss(14) ) surface.SetTextColor( scheme["bg"] ) - surface.SetTextPos( sw - b - ss(w-6), sh - b - ss(100-3) ) + surface.SetTextPos( sw - b - ss(w-6), sh - b - ss(BOXHEIGHT-3) ) surface.DrawText( "GLOCK-17" ) surface.SetDrawColor( scheme["fg"] ) - surface.DrawRect( sw - b - ss(w-4), sh - b + ss(16) - ss(100-4), ss(29), ss(10) ) + surface.DrawRect( sw - b - ss(w-4), sh - b + ss(16) - ss(BOXHEIGHT-4), ss(29), ss(10) ) surface.SetFont( "Benny_12" ) surface.SetTextColor( scheme["bg"] ) - surface.SetTextPos( sw - b - ss(w-7), sh - b + ss(16) - ss(100-4) ) + surface.SetTextPos( sw - b - ss(w-7), sh - b + ss(16) - ss(BOXHEIGHT-4) ) surface.DrawText( "3BST" ) surface.SetFont( "Benny_12" ) - local text = "17 - MAG 3" + local text = wep:Clip1() .. " - MAG 3" local tw = surface.GetTextSize( text ) surface.SetTextColor( scheme["fg"] ) surface.SetTextPos( sw - b - ss(4) - tw, sh - b - ss(24) ) @@ -200,7 +217,10 @@ hook.Add( "HUDPaint", "Benny_HUDPaint", function() for i=1, 17 do surface.SetDrawColor( scheme["fg"] ) - surface.DrawRect( sw - b - ss(3+4) - ( ss(5) * (i-1) ), sh - b - ss(8+4), ss(3), ss(8) ) + surface.DrawOutlinedRect( sw - b - ss(3+4) - ( ss(5) * (i-1) ), sh - b - ss(8+4), ss(3), ss(8), ss(0.5) ) + if i <= wep:Clip1() then + surface.DrawRect( sw - b - ss(3+4) - ( ss(5) * (i-1) ), sh - b - ss(8+4), ss(3), ss(8) ) + end end end @@ -241,4 +261,34 @@ hook.Add( "HUDPaint", "Benny_HUDPaint", function() surface.DrawText( caption.name ) end end + + -- [UUID_generate()] = { + -- Clip1 = 20, + -- Mag1 = 12, + -- Mag2 = 9, + -- Mag3 = 17, + -- } + do -- Inventory + local gap = 0 + for ID, Data in pairs( p:INV_Get() ) do + surface.SetDrawColor( scheme["bg"] ) + surface.DrawRect( b + ss(4), b + ss(4) + gap, ss(140), ss(30) ) + + surface.SetFont( "Benny_12" ) + surface.SetTextColor( scheme["fg"] ) + surface.SetTextPos( b + ss(4 + 4), b + ss(4 + 3) + gap ) + surface.DrawText( ID ) + + local str = "" + for i, v in pairs( Data ) do + str = str .. i .. ": " .. v .. " " + end + + surface.SetFont( "Benny_10" ) + surface.SetTextColor( scheme["fg"] ) + surface.SetTextPos( b + ss(4 + 4), b + ss(4 + 3 + 8) + gap ) + surface.DrawText( str ) + gap = gap + ss(30+4) + end + end end ) \ No newline at end of file diff --git a/gamemodes/benny/gamemode/modules/player/sh_basic.lua b/gamemodes/benny/gamemode/modules/player/sh_basic.lua index 52eb58b..17392e5 100644 --- a/gamemodes/benny/gamemode/modules/player/sh_basic.lua +++ b/gamemodes/benny/gamemode/modules/player/sh_basic.lua @@ -1,8 +1,7 @@ -function GM:PlayerSetModel( ply ) - ply:SetModel( "models/player/group01/male_07.mdl" ) -end - -function GM:PlayerLoadout( ply ) +function GM:PlayerSpawn( ply ) + player_manager.SetPlayerClass( ply, "player_benny" ) + ply:SetModel( "models/player/combine_super_soldier.mdl" ) + ply:SetPlayerColor( Vector( 0.275, 0.2, 0.145 ) ) ply:Give( "benny" ) end \ No newline at end of file diff --git a/gamemodes/benny/gamemode/modules/player/sh_inventory.lua b/gamemodes/benny/gamemode/modules/player/sh_inventory.lua new file mode 100644 index 0000000..7587264 --- /dev/null +++ b/gamemodes/benny/gamemode/modules/player/sh_inventory.lua @@ -0,0 +1,10 @@ + +local PT = FindMetaTable( "Player" ) + +function PT:INV_Get() + if !self.INV then + print( "Inventory created") + self.INV = {} + end + return self.INV +end \ No newline at end of file diff --git a/gamemodes/benny/gamemode/modules/player/sh_movement.lua b/gamemodes/benny/gamemode/modules/player/sh_movement.lua index eca5bc9..50231e5 100644 --- a/gamemodes/benny/gamemode/modules/player/sh_movement.lua +++ b/gamemodes/benny/gamemode/modules/player/sh_movement.lua @@ -6,8 +6,21 @@ local wa, wb = 0, 0 local blop = Angle() hook.Add( "CreateMove", "CamFuck", function( cmd ) - if LocalPlayer():GetMoveType() != MOVETYPE_NOCLIP then + if BENNY_ACTIVECAMERA and LocalPlayer():GetMoveType() != MOVETYPE_NOCLIP then local x, y = cmd:GetForwardMove(), cmd:GetSideMove() + + local lx=input.GetAnalogValue(ANALOG_JOY_X) // Left X Axis: left -, right + + local ly=input.GetAnalogValue(ANALOG_JOY_Y) // Left Y Axis: up -, bottom + + + local lr=input.GetAnalogValue(ANALOG_JOY_R) // Right X Axis: left -, right + + local lu=input.GetAnalogValue(ANALOG_JOY_U) // Right Y Axis: up -, bottom + + + lx=lx/32768; ly=ly/32768; lr=lr/32768; lu=lu/32768; // Conversion to floats -1.0 - 1.0 + + if lx != 0 or ly != 0 then + x, y = ly * -320, lx * 320 + end + wa, wb = x, y local ad = Vector( x, y, 0 ) @@ -23,9 +36,10 @@ hook.Add( "CreateMove", "CamFuck", function( cmd ) ad:Rotate( am ) ad:Rotate( -an ) - ad:Normalize() - ad:Mul(320) + -- ad:Normalize() + -- ad:Mul(320) + cmd:ClearMovement() cmd:SetForwardMove( ad.x ) cmd:SetSideMove( ad.y ) diff --git a/gamemodes/benny/gamemode/modules/player/sh_player_class.lua b/gamemodes/benny/gamemode/modules/player/sh_player_class.lua new file mode 100644 index 0000000..f20d885 --- /dev/null +++ b/gamemodes/benny/gamemode/modules/player/sh_player_class.lua @@ -0,0 +1,28 @@ + +AddCSLuaFile() + +local PLAYER = {} + +PLAYER.DisplayName = "Benny Player Class" + +PLAYER.SlowWalkSpeed = 200 +PLAYER.WalkSpeed = 400 +PLAYER.RunSpeed = 600 +PLAYER.CrouchedWalkSpeed = 0.3 +PLAYER.DuckSpeed = 0.3 +PLAYER.UnDuckSpeed = 0.3 +PLAYER.JumpPower = 200 +PLAYER.CanUseFlashlight = false +PLAYER.MaxHealth = 100 +PLAYER.MaxArmor = 100 +PLAYER.StartHealth = 100 +PLAYER.StartArmor = 0 +PLAYER.DropWeaponOnDie = false +PLAYER.TeammateNoCollide = true +PLAYER.AvoidPlayers = true +PLAYER.UseVMHands = true + +function PLAYER:SetupDataTables() +end + +player_manager.RegisterClass( "player_benny", PLAYER, "player_default" ) diff --git a/gamemodes/benny/gamemode/modules/weapons/sh_weapons.lua b/gamemodes/benny/gamemode/modules/weapons/sh_weapons.lua new file mode 100644 index 0000000..99361fd --- /dev/null +++ b/gamemodes/benny/gamemode/modules/weapons/sh_weapons.lua @@ -0,0 +1,47 @@ + +WEAPONS = {} + +local wep = {} +WEAPONS["glock"] = wep +wep.Name = "GLOCK-18" +wep.WModel = "models/weapons/w_pist_glock18.mdl" +wep.Description = "Superb precision but poor capacity." +wep.Ammo = 17 +wep.Damage = 18 + +local wep = {} +WEAPONS["python"] = wep +wep.Name = "PYTHON" +wep.Description = "Superb precision but poor capacity." +wep.Ammo = 6 +wep.Damage = 36 + +local wep = {} +WEAPONS["tmp"] = wep +wep.Name = "TMP" +wep.Description = "Precise." +wep.Ammo = 15 + +local wep = {} +WEAPONS["mp7"] = wep +wep.Name = "MP7" +wep.Description = "Small, pistol-sized, and simple." +wep.Ammo = 15 + +local wep = {} +WEAPONS["mp5k"] = wep +wep.Name = "MP5K" +wep.Description = "Quality manufacturing, but cumbersome." +wep.Ammo = 15 + +local wep = {} +WEAPONS["mac11"] = wep +wep.Name = "MAC-11" +wep.Description = "More fit for combat in a phone booth." +wep.Ammo = 15 + +local wep = {} +WEAPONS["bizon"] = wep +wep.Name = "BIZON" +wep.Description = "Unwieldy bullet storm." +wep.Ammo = 40 \ No newline at end of file diff --git a/maps/benny_test.bsp b/maps/benny_test.bsp deleted file mode 100644 index 2a427e5..0000000 --- a/maps/benny_test.bsp +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:582355e6ae62d289c13a0316ae7f0abbae5fe8e6cff0afc386046263d7654be2 -size 234184 diff --git a/maps/benny_test.vmf b/maps/benny_test.vmf deleted file mode 100644 index 5ae6f70..0000000 --- a/maps/benny_test.vmf +++ /dev/null @@ -1,5150 +0,0 @@ -versioninfo -{ - "editorversion" "400" - "editorbuild" "9777" - "mapversion" "66" - "formatversion" "100" - "prefab" "0" -} -visgroups -{ -} -viewsettings -{ - "bSnapToGrid" "1" - "bShowGrid" "1" - "bShowLogicalGrid" "0" - "nGridSpacing" "16" - "bShow3DGrid" "0" -} -world -{ - "id" "1" - "mapversion" "66" - "classname" "worldspawn" - "detailmaterial" "detail/detailsprites" - "detailvbsp" "detail.vbsp" - "maxpropscreenwidth" "-1" - "skyname" "train_hdr" - solid - { - "id" "1234" - side - { - "id" "360" - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "359" - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "358" - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "357" - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "356" - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "355" - "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" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "220 220 220" - "groupid" "1246" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "1236" - side - { - "id" "366" - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "365" - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "364" - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "363" - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "362" - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "361" - "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" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "220 220 220" - "groupid" "1246" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "1238" - side - { - "id" "372" - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "371" - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "370" - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "369" - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "368" - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "367" - "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" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "220 220 220" - "groupid" "1246" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "1240" - side - { - "id" "378" - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "377" - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "376" - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "375" - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "374" - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "373" - "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" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "220 220 220" - "groupid" "1246" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "1242" - side - { - "id" "384" - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "383" - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "382" - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "381" - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "380" - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "379" - "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" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "220 220 220" - "groupid" "1246" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "1244" - side - { - "id" "390" - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "389" - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "388" - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "387" - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "386" - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "385" - "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" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "220 220 220" - "groupid" "1246" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "3681" - side - { - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 232 189" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "3702" - side - { - "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" "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" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 232 189" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "3707" - side - { - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "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" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "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 112 96) (128 112 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" "1373" - "plane" "(144 128 -32) (128 128 -32) (128 112 -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 112 -32) (128 128 -32) (128 128 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" "1371" - "plane" "(144 112 96) (144 128 96) (144 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" "1370" - "plane" "(128 128 -32) (144 128 -32) (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" - } - side - { - "id" "1369" - "plane" "(128 112 96) (144 112 96) (144 112 -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" - } - editor - { - "color" "0 232 189" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "3711" - side - { - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "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" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 232 189" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "3714" - side - { - "id" "1410" - "plane" "(160 96 96) (160 32 96) (144 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" "(160 32 64) (160 96 64) (144 96 64)" - "material" "MORE DEV TEXTURES/DEV_GRAY2" - "uaxis" "[-1 0 0 64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1408" - "plane" "(144 32 96) (144 32 64) (144 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" "1407" - "plane" "(160 32 64) (160 32 96) (160 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" "1406" - "plane" "(144 96 96) (144 96 64) (160 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" "1405" - "plane" "(144 32 64) (144 32 96) (160 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 16 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 16 -32) (128 16 -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 16 -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 16 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 16 96) (128 16 -32) (144 16 -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" "(160 128 96) (432 128 96) (432 112 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" "(160 112 -32) (432 112 -32) (432 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" "1432" - "plane" "(160 128 96) (160 112 96) (160 112 -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" "(432 128 -32) (432 112 -32) (432 112 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" "(432 128 96) (160 128 96) (160 128 -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" "(432 112 -32) (160 112 -32) (160 112 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" "(176 -128 96) (416 -128 96) (416 -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" "1445" - "plane" "(176 -144 -32) (416 -144 -32) (416 -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" "1444" - "plane" "(176 -128 96) (176 -144 96) (176 -144 -32)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1443" - "plane" "(416 -128 -32) (416 -144 -32) (416 -144 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1442" - "plane" "(416 -128 96) (176 -128 96) (176 -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" "1441" - "plane" "(416 -144 -32) (176 -144 -32) (176 -144 96)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 232 189" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "3738" - side - { - "id" "1458" - "plane" "(160 112 -32) (416 112 -32) (416 -128 -32)" - "material" "MORE DEV TEXTURES/DEV_TF2BLUE1" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1457" - "plane" "(160 -128 -48) (416 -128 -48) (416 112 -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" "(160 112 -32) (160 -128 -32) (160 -128 -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" "(416 112 -48) (416 -128 -48) (416 -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" "1454" - "plane" "(416 112 -32) (160 112 -32) (160 112 -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" "(416 -128 -48) (160 -128 -48) (160 -128 -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" "(176 112 112) (432 112 112) (432 -128 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" "(176 -128 96) (432 -128 96) (432 112 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" "(176 112 112) (176 -128 112) (176 -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" "1467" - "plane" "(432 112 96) (432 -128 96) (432 -128 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" "(432 112 112) (176 112 112) (176 112 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" "(432 -128 96) (176 -128 96) (176 -128 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" "(144 96 -32) (160 96 -32) (160 32 -32)" - "material" "MORE DEV TEXTURES/DEV_TF2BLUE1" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1481" - "plane" "(144 32 -48) (160 32 -48) (160 96 -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" "(144 96 -32) (144 32 -32) (144 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" "(160 96 -48) (160 32 -48) (160 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" "(160 96 -32) (144 96 -32) (144 96 -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" "(160 32 -48) (144 32 -48) (144 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" "(416 112 96) (432 112 96) (432 -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" "1775" - "plane" "(416 -128 -32) (432 -128 -32) (432 112 -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" "(416 112 96) (416 -128 96) (416 -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" "1773" - "plane" "(432 112 -32) (432 -128 -32) (432 -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" "1772" - "plane" "(432 112 96) (416 112 96) (416 112 -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" "(432 -128 -32) (416 -128 -32) (416 -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" "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 112) (128 160 112) (-256 160 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" "1864" - "plane" "(-256 -160 320) (-256 -160 112) (-256 160 112)" - "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 112) (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 112) (128 160 112)" - "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 112) (-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" - } - } - solid - { - "id" "4785" - side - { - "id" "1896" - "plane" "(160 112 96) (160 96 96) (144 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" "1895" - "plane" "(160 96 -32) (160 112 -32) (144 112 -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" "1894" - "plane" "(144 96 96) (144 96 -32) (144 112 -32)" - "material" "MORE DEV TEXTURES/DEV_GRAY2" - "uaxis" "[0 -1 0 64] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1893" - "plane" "(160 96 -32) (160 96 96) (160 112 96)" - "material" "MORE DEV TEXTURES/DEV_GRAY2" - "uaxis" "[0 1 0 -64] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1892" - "plane" "(144 112 96) (144 112 -32) (160 112 -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" "1891" - "plane" "(144 96 -32) (144 96 96) (160 96 96)" - "material" "MORE DEV TEXTURES/DEV_GRAY2" - "uaxis" "[1 0 0 -64] 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" "4789" - side - { - "id" "1908" - "plane" "(160 32 96) (160 16 96) (144 16 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" "1907" - "plane" "(160 16 -32) (160 32 -32) (144 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" "1906" - "plane" "(144 16 96) (144 16 -32) (144 32 -32)" - "material" "MORE DEV TEXTURES/DEV_GRAY2" - "uaxis" "[0 -1 0 64] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1905" - "plane" "(160 16 -32) (160 16 96) (160 32 96)" - "material" "MORE DEV TEXTURES/DEV_GRAY2" - "uaxis" "[0 1 0 -64] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1904" - "plane" "(144 32 96) (144 32 -32) (160 32 -32)" - "material" "MORE DEV TEXTURES/DEV_GRAY2" - "uaxis" "[-1 0 0 64] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1903" - "plane" "(144 16 -32) (144 16 96) (160 16 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" "4792" - side - { - "id" "1920" - "plane" "(128 112 -32) (144 112 -32) (144 16 -32)" - "material" "MORE DEV TEXTURES/DEV_TF2BLUE1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1919" - "plane" "(128 16 -48) (144 16 -48) (144 112 -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" "1918" - "plane" "(128 112 -32) (128 16 -32) (128 16 -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" "1917" - "plane" "(144 112 -48) (144 16 -48) (144 16 -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" "1916" - "plane" "(144 112 -32) (128 112 -32) (128 112 -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" "1915" - "plane" "(144 16 -48) (128 16 -48) (128 16 -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" "4794" - side - { - "id" "1932" - "plane" "(144 112 112) (144 16 112) (128 16 112)" - "material" "MORE DEV TEXTURES/DEV_GRAY2" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1931" - "plane" "(144 16 96) (144 112 96) (128 112 96)" - "material" "MORE DEV TEXTURES/DEV_GRAY1" - "uaxis" "[-1 0 0 64] 0.25" - "vaxis" "[0 -1 0 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1930" - "plane" "(128 16 112) (128 16 96) (128 112 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" "1929" - "plane" "(144 16 96) (144 16 112) (144 112 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" "1928" - "plane" "(128 112 112) (128 112 96) (144 112 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" "1927" - "plane" "(128 16 96) (128 16 112) (144 16 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" "4891" - side - { - "id" "2094" - "plane" "(176 16 96) (176 -128 96) (160 -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" "2093" - "plane" "(176 -128 -32) (176 16 -32) (160 16 -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" "2092" - "plane" "(160 -128 96) (160 -128 -32) (160 16 -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" "2091" - "plane" "(176 -128 -32) (176 -128 96) (176 16 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" "2090" - "plane" "(160 16 96) (160 16 -32) (176 16 -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" "2089" - "plane" "(160 -128 -32) (160 -128 96) (176 -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" "4902" - side - { - "id" "2118" - "plane" "(176 112 112) (176 16 112) (160 16 112)" - "material" "MORE DEV TEXTURES/DEV_GRAY2" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2117" - "plane" "(176 16 96) (176 112 96) (160 112 96)" - "material" "MORE DEV TEXTURES/DEV_GRAY1" - "uaxis" "[-1 0 0 64] 0.25" - "vaxis" "[0 -1 0 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2116" - "plane" "(160 16 112) (160 16 96) (160 112 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" "2115" - "plane" "(176 16 96) (176 16 112) (176 112 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" "2114" - "plane" "(160 112 112) (160 112 96) (176 112 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" "2113" - "plane" "(160 16 96) (160 16 112) (176 16 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" "4908" - side - { - "id" "2119" - "plane" "(176 0 16) (304 0 16) (304 -32 16)" - "material" "MORE DEV TEXTURES/DEV_BLACK1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2120" - "plane" "(176 -32 -32) (304 -32 -32) (304 0 -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" "2121" - "plane" "(176 0 16) (176 -32 16) (176 -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" "2122" - "plane" "(304 0 -32) (304 -32 -32) (304 -32 16)" - "material" "MORE DEV TEXTURES/DEV_LIGHTBROWN1" - "uaxis" "[0 1 0 -64] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2123" - "plane" "(304 0 16) (176 0 16) (176 0 -32)" - "material" "MORE DEV TEXTURES/DEV_LIGHTBROWN1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2124" - "plane" "(304 -32 -32) (176 -32 -32) (176 -32 16)" - "material" "MORE DEV TEXTURES/DEV_LIGHTBROWN1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 196 133" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - group - { - "id" "1246" - editor - { - "color" "220 220 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } -} -entity -{ - "id" "3685" - "classname" "info_player_start" - "angles" "0 0 0" - "origin" "0 0 -16" - editor - { - "color" "0 255 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 14000]" - } -} -entity -{ - "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 50" - "_lightHDR" "-1 -1 -1 1" - "_lightscaleHDR" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "0" - "style" "0" - "origin" "-320 96 64" - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[500 4000]" - } -} -entity -{ - "id" "4535" - "classname" "light" - "_castentityshadow" "0" - "_constant_attn" "0" - "_distance" "0" - "_fifty_percent_distance" "0" - "_hardfalloff" "0" - "_light" "255 255 255 50" - "_lightHDR" "-1 -1 -1 1" - "_lightscaleHDR" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "0" - "style" "0" - "origin" "64 96 64" - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[500 4000]" - } -} -entity -{ - "id" "4581" - "classname" "func_detail" - solid - { - "id" "4418" - side - { - "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" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "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" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "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" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "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" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "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" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "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" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[500 5000]" - } -} -entity -{ - "id" "4720" - "classname" "light" - "_castentityshadow" "0" - "_constant_attn" "0" - "_distance" "0" - "_fifty_percent_distance" "0" - "_hardfalloff" "0" - "_light" "255 255 255 50" - "_lightHDR" "-1 -1 -1 1" - "_lightscaleHDR" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "0" - "style" "0" - "origin" "-320 -96 64" - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[500 4000]" - } -} -entity -{ - "id" "4725" - "classname" "light" - "_castentityshadow" "0" - "_constant_attn" "0" - "_distance" "0" - "_fifty_percent_distance" "0" - "_hardfalloff" "0" - "_light" "255 255 255 50" - "_lightHDR" "-1 -1 -1 1" - "_lightscaleHDR" "1" - "_linear_attn" "0" - "_quadratic_attn" "1" - "_zero_percent_distance" "0" - "style" "0" - "origin" "64 -96 64" - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[500 4000]" - } -} -entity -{ - "id" "4821" - "classname" "func_detail" - solid - { - "id" "4805" - side - { - "id" "1956" - "plane" "(-304 128 80) (-240 128 80) (-240 112 80)" - "material" "MORE DEV TEXTURES/DEV_BLUE1" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1955" - "plane" "(-304 112 16) (-240 112 16) (-240 128 16)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1954" - "plane" "(-304 128 80) (-304 112 80) (-304 112 16)" - "material" "MORE DEV TEXTURES/DEV_BLUE1" - "uaxis" "[0 -1 0 -64] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1953" - "plane" "(-240 128 16) (-240 112 16) (-240 112 80)" - "material" "MORE DEV TEXTURES/DEV_BLUE1" - "uaxis" "[0 1 0 -64] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1952" - "plane" "(-240 128 80) (-304 128 80) (-304 128 16)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1951" - "plane" "(-240 112 16) (-304 112 16) (-304 112 80)" - "material" "MORE DEV TEXTURES/DEV_BLUE2" - "uaxis" "[1 0 0 -64] 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" "4798" - side - { - "id" "1962" - "plane" "(-320 128 16) (-224 128 16) (-224 96 16)" - "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" "1961" - "plane" "(-320 96 -32) (-224 96 -32) (-224 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" "1960" - "plane" "(-320 128 16) (-320 96 16) (-320 96 -32)" - "material" "MORE DEV TEXTURES/DEV_LIGHTBROWN1" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1959" - "plane" "(-224 128 -32) (-224 96 -32) (-224 96 16)" - "material" "MORE DEV TEXTURES/DEV_LIGHTBROWN1" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1958" - "plane" "(-224 128 16) (-320 128 16) (-320 128 -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" "1957" - "plane" "(-224 96 -32) (-320 96 -32) (-320 96 16)" - "material" "MORE DEV TEXTURES/DEV_LIGHTBROWN1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[500 10000]" - } -} -entity -{ - "id" "4825" - "classname" "func_detail" - solid - { - "id" "4826" - side - { - "id" "1980" - "plane" "(-176 128 80) (-112 128 80) (-112 112 80)" - "material" "MORE DEV TEXTURES/DEV_BLUE1" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1979" - "plane" "(-176 112 16) (-112 112 16) (-112 128 16)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1978" - "plane" "(-176 128 80) (-176 112 80) (-176 112 16)" - "material" "MORE DEV TEXTURES/DEV_BLUE1" - "uaxis" "[0 -1 0 -64] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1977" - "plane" "(-112 128 16) (-112 112 16) (-112 112 80)" - "material" "MORE DEV TEXTURES/DEV_BLUE1" - "uaxis" "[0 1 0 -64] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1976" - "plane" "(-112 128 80) (-176 128 80) (-176 128 16)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1975" - "plane" "(-112 112 16) (-176 112 16) (-176 112 80)" - "material" "MORE DEV TEXTURES/DEV_BLUE2" - "uaxis" "[1 0 0 -64] 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" "4827" - side - { - "id" "1986" - "plane" "(-192 128 16) (-96 128 16) (-96 96 16)" - "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" "1985" - "plane" "(-192 96 -32) (-96 96 -32) (-96 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" "1984" - "plane" "(-192 128 16) (-192 96 16) (-192 96 -32)" - "material" "MORE DEV TEXTURES/DEV_LIGHTBROWN1" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1983" - "plane" "(-96 128 -32) (-96 96 -32) (-96 96 16)" - "material" "MORE DEV TEXTURES/DEV_LIGHTBROWN1" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1982" - "plane" "(-96 128 16) (-192 128 16) (-192 128 -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" "1981" - "plane" "(-96 96 -32) (-192 96 -32) (-192 96 16)" - "material" "MORE DEV TEXTURES/DEV_LIGHTBROWN1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[500 10000]" - } -} -entity -{ - "id" "4828" - "classname" "func_detail" - solid - { - "id" "4829" - side - { - "id" "2004" - "plane" "(-48 128 80) (16 128 80) (16 112 80)" - "material" "MORE DEV TEXTURES/DEV_BLUE1" - "uaxis" "[1 0 0 -64] 0.25" - "vaxis" "[0 -1 0 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2003" - "plane" "(-48 112 16) (16 112 16) (16 128 16)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2002" - "plane" "(-48 128 80) (-48 112 80) (-48 112 16)" - "material" "MORE DEV TEXTURES/DEV_BLUE1" - "uaxis" "[0 -1 0 -64] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2001" - "plane" "(16 128 16) (16 112 16) (16 112 80)" - "material" "MORE DEV TEXTURES/DEV_BLUE1" - "uaxis" "[0 1 0 -64] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2000" - "plane" "(16 128 80) (-48 128 80) (-48 128 16)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "1999" - "plane" "(16 112 16) (-48 112 16) (-48 112 80)" - "material" "MORE DEV TEXTURES/DEV_BLUE2" - "uaxis" "[1 0 0 -64] 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" "4830" - side - { - "id" "2010" - "plane" "(-64 128 16) (32 128 16) (32 96 16)" - "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" "2009" - "plane" "(-64 96 -32) (32 96 -32) (32 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" "2008" - "plane" "(-64 128 16) (-64 96 16) (-64 96 -32)" - "material" "MORE DEV TEXTURES/DEV_LIGHTBROWN1" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2007" - "plane" "(32 128 -32) (32 96 -32) (32 96 16)" - "material" "MORE DEV TEXTURES/DEV_LIGHTBROWN1" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2006" - "plane" "(32 128 16) (-64 128 16) (-64 128 -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" "2005" - "plane" "(32 96 -32) (-64 96 -32) (-64 96 16)" - "material" "MORE DEV TEXTURES/DEV_LIGHTBROWN1" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[500 10000]" - } -} -entity -{ - "id" "4831" - "classname" "func_detail" - solid - { - "id" "4832" - side - { - "id" "2052" - "plane" "(-240 -128 80) (-304 -128 80) (-304 -112 80)" - "material" "MORE DEV TEXTURES/DEV_BLUE1" - "uaxis" "[-1 0 0 -64] 0.25" - "vaxis" "[0 1 0 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2051" - "plane" "(-240 -112 16) (-304 -112 16) (-304 -128 16)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2050" - "plane" "(-240 -128 80) (-240 -112 80) (-240 -112 16)" - "material" "MORE DEV TEXTURES/DEV_BLUE1" - "uaxis" "[0 1 0 -64] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2049" - "plane" "(-304 -128 16) (-304 -112 16) (-304 -112 80)" - "material" "MORE DEV TEXTURES/DEV_BLUE1" - "uaxis" "[0 -1 0 64] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2048" - "plane" "(-304 -128 80) (-240 -128 80) (-240 -128 16)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2047" - "plane" "(-304 -112 16) (-240 -112 16) (-240 -112 80)" - "material" "MORE DEV TEXTURES/DEV_BLUE2" - "uaxis" "[-1 0 0 -64] 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" "4833" - side - { - "id" "2058" - "plane" "(-224 -128 16) (-320 -128 16) (-320 -96 16)" - "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" "2057" - "plane" "(-224 -96 -32) (-320 -96 -32) (-320 -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" "2056" - "plane" "(-224 -128 16) (-224 -96 16) (-224 -96 -32)" - "material" "MORE DEV TEXTURES/DEV_LIGHTBROWN1" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2055" - "plane" "(-320 -128 -32) (-320 -96 -32) (-320 -96 16)" - "material" "MORE DEV TEXTURES/DEV_LIGHTBROWN1" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2054" - "plane" "(-320 -128 16) (-224 -128 16) (-224 -128 -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" "2053" - "plane" "(-320 -96 -32) (-224 -96 -32) (-224 -96 16)" - "material" "MORE DEV TEXTURES/DEV_LIGHTBROWN1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[500 10000]" - } -} -entity -{ - "id" "4834" - "classname" "func_detail" - solid - { - "id" "4835" - side - { - "id" "2064" - "plane" "(16 -128 80) (-48 -128 80) (-48 -112 80)" - "material" "MORE DEV TEXTURES/DEV_BLUE1" - "uaxis" "[-1 0 0 -64] 0.25" - "vaxis" "[0 1 0 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2063" - "plane" "(16 -112 16) (-48 -112 16) (-48 -128 16)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2062" - "plane" "(16 -128 80) (16 -112 80) (16 -112 16)" - "material" "MORE DEV TEXTURES/DEV_BLUE1" - "uaxis" "[0 1 0 -64] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2061" - "plane" "(-48 -128 16) (-48 -112 16) (-48 -112 80)" - "material" "MORE DEV TEXTURES/DEV_BLUE1" - "uaxis" "[0 -1 0 64] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2060" - "plane" "(-48 -128 80) (16 -128 80) (16 -128 16)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2059" - "plane" "(-48 -112 16) (16 -112 16) (16 -112 80)" - "material" "MORE DEV TEXTURES/DEV_BLUE2" - "uaxis" "[-1 0 0 -64] 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" "4836" - side - { - "id" "2070" - "plane" "(32 -128 16) (-64 -128 16) (-64 -96 16)" - "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" "2069" - "plane" "(32 -96 -32) (-64 -96 -32) (-64 -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" "2068" - "plane" "(32 -128 16) (32 -96 16) (32 -96 -32)" - "material" "MORE DEV TEXTURES/DEV_LIGHTBROWN1" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2067" - "plane" "(-64 -128 -32) (-64 -96 -32) (-64 -96 16)" - "material" "MORE DEV TEXTURES/DEV_LIGHTBROWN1" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2066" - "plane" "(-64 -128 16) (32 -128 16) (32 -128 -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" "2065" - "plane" "(-64 -96 -32) (32 -96 -32) (32 -96 16)" - "material" "MORE DEV TEXTURES/DEV_LIGHTBROWN1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[500 10000]" - } -} -entity -{ - "id" "4837" - "classname" "func_detail" - solid - { - "id" "4838" - side - { - "id" "2076" - "plane" "(-112 -128 80) (-176 -128 80) (-176 -112 80)" - "material" "MORE DEV TEXTURES/DEV_BLUE1" - "uaxis" "[-1 0 0 -64] 0.25" - "vaxis" "[0 1 0 -64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2075" - "plane" "(-112 -112 16) (-176 -112 16) (-176 -128 16)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2074" - "plane" "(-112 -128 80) (-112 -112 80) (-112 -112 16)" - "material" "MORE DEV TEXTURES/DEV_BLUE1" - "uaxis" "[0 1 0 -64] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2073" - "plane" "(-176 -128 16) (-176 -112 16) (-176 -112 80)" - "material" "MORE DEV TEXTURES/DEV_BLUE1" - "uaxis" "[0 -1 0 64] 0.25" - "vaxis" "[0 0 -1 64] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2072" - "plane" "(-176 -128 80) (-112 -128 80) (-112 -128 16)" - "material" "TOOLS/TOOLSNODRAW" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2071" - "plane" "(-176 -112 16) (-112 -112 16) (-112 -112 80)" - "material" "MORE DEV TEXTURES/DEV_BLUE2" - "uaxis" "[-1 0 0 -64] 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" "4839" - side - { - "id" "2082" - "plane" "(-96 -128 16) (-192 -128 16) (-192 -96 16)" - "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" "2081" - "plane" "(-96 -96 -32) (-192 -96 -32) (-192 -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" "2080" - "plane" "(-96 -128 16) (-96 -96 16) (-96 -96 -32)" - "material" "MORE DEV TEXTURES/DEV_LIGHTBROWN1" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2079" - "plane" "(-192 -128 -32) (-192 -96 -32) (-192 -96 16)" - "material" "MORE DEV TEXTURES/DEV_LIGHTBROWN1" - "uaxis" "[0 -1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "2078" - "plane" "(-192 -128 16) (-96 -128 16) (-96 -128 -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" "2077" - "plane" "(-192 -96 -32) (-96 -96 -32) (-96 -96 16)" - "material" "MORE DEV TEXTURES/DEV_LIGHTBROWN1" - "uaxis" "[-1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - editor - { - "color" "0 180 0" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[500 10000]" - } -} -cameras -{ - "activecamera" "-1" -} -cordon -{ - "mins" "(-1024 -1024 -1024)" - "maxs" "(1024 1024 1024)" - "active" "0" -}