mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-16 21:33:46 +03:00
82 lines
1.9 KiB
Lua
82 lines
1.9 KiB
Lua
--[[
|
|
| This file was obtained through the combined efforts
|
|
| of Madbluntz & Plymouth Antiquarian Society.
|
|
|
|
|
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
|
| Maloy, DrPepper10 @ RIP, Atle!
|
|
|
|
|
| Visit for more: https://plymouth.thetwilightzone.ru/
|
|
--]]
|
|
|
|
AddCSLuaFile()
|
|
|
|
ENT.Base = "portals_in"
|
|
ENT.RenderGroup = RENDERGROUP_TRANSLUCENT
|
|
|
|
ENT.PrintName = "Classic Portal (Entrance)"
|
|
ENT.Category = "Portals"
|
|
|
|
ENT.Spawnable = true
|
|
ENT.Editable = true
|
|
|
|
ENT.BaseColor = Color(255, 136, 0)
|
|
|
|
ENT.ExitType = "portals_classic_out"
|
|
|
|
local defaultSound = GetConVar("portals_default_sound")
|
|
|
|
function ENT:SetupDataTables()
|
|
self:NetworkVar("String", 0, "Group", {
|
|
KeyName = "group",
|
|
Edit = {
|
|
order = 0,
|
|
type = "Generic"
|
|
}
|
|
})
|
|
|
|
self:NetworkVar("String", 1, "TeleportSound", {
|
|
KeyName = "sound",
|
|
Edit = {
|
|
title = "Teleport Sound",
|
|
order = 1,
|
|
type = "Generic"
|
|
}
|
|
})
|
|
|
|
self:SetTeleportSound(defaultSound:GetString())
|
|
end
|
|
|
|
function ENT:GetCustomColor()
|
|
return self.BaseColor
|
|
end
|
|
|
|
if CLIENT then
|
|
local developer = GetConVar("developer")
|
|
local sprite = Material("sprites/portals/classic_in")
|
|
|
|
function ENT:DrawTranslucent()
|
|
if developer:GetBool() then
|
|
local mins = self.Mins - Vector(0.1, 0.1, 0.1)
|
|
local maxs = self.Maxs + Vector(0.1, 0.1, 0.1)
|
|
|
|
local color = ColorAlpha(self:GetCustomColor(), 50)
|
|
|
|
render.SetColorMaterial()
|
|
render.DrawBox(self:GetPos(), self:GetNetworkAngles(), mins, maxs, color, true)
|
|
render.DrawWireframeBox(self:GetPos(), self:GetNetworkAngles(), mins, maxs, color, true)
|
|
|
|
render.DrawLine(self:GetPos(), self:GetPos() + self:GetForward() * 50, self:GetCustomColor(), true)
|
|
end
|
|
|
|
render.OverrideBlend(true, BLEND_ONE, BLEND_ONE_MINUS_SRC_COLOR, BLENDFUNC_ADD)
|
|
render.SetMaterial(sprite)
|
|
render.DrawSprite(self:GetPos(), 50, 50)
|
|
render.OverrideBlend(false)
|
|
|
|
local ang = (EyePos() - self:GetPos()):Angle()
|
|
|
|
self:SetRenderAngles(ang)
|
|
self:SetupBones()
|
|
end
|
|
end
|