mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-16 21:33:46 +03:00
41 lines
988 B
Lua
41 lines
988 B
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/
|
|
--]]
|
|
|
|
local lifetime = 0.3
|
|
local inverse = 1 / 0.3
|
|
|
|
function EFFECT:Init(data)
|
|
self.DieTime = CurTime() + lifetime
|
|
|
|
self.Entity = data:GetEntity()
|
|
self.Attachment = data:GetAttachment()
|
|
self.StartPos = data:GetStart() or Vector(0, 0, 0)
|
|
|
|
if(IsValid(self.Entity)) then
|
|
self.StartPos = self.Entity:GetAttachment(self.Attachment).Pos
|
|
end
|
|
|
|
self.EndPos = data:GetOrigin()
|
|
|
|
self:SetRenderBoundsWS(self.StartPos, self.EndPos)
|
|
end
|
|
|
|
local beam = Material("sprites/bluelaser1")
|
|
|
|
function EFFECT:Render()
|
|
local size = Lerp( (self.DieTime - CurTime()) * inverse, 0, 32 )
|
|
|
|
render.SetMaterial(beam)
|
|
render.DrawBeam(self.StartPos, self.EndPos, size, 0, 1, Color(100, 100, 255))
|
|
end
|
|
|
|
function EFFECT:Think()
|
|
return self.DieTime > CurTime()
|
|
end |