Files
wnsrc/gamemodes/sandbox/entities/effects/phys_unfreeze.lua

42 lines
997 B
Lua
Raw Normal View History

2024-08-04 22:55:00 +03:00
--[[
| 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 effects_unfreeze = CreateClientConVar( "effects_unfreeze", "1", true, false, "Whether to display Physics Gun unfreeze effects?" )
function EFFECT:Init( data )
if ( effects_unfreeze:GetBool() == false ) then return end
self.Target = data:GetEntity()
self.StartTime = CurTime()
self.Length = 0.3
end
function EFFECT:Think()
if ( effects_unfreeze:GetBool() == false ) then return false end
return self.StartTime + self.Length > CurTime()
end
function EFFECT:Render()
if ( !IsValid( self.Target ) ) then return end
local delta = ( ( CurTime() - self.StartTime ) / self.Length ) ^ 0.5
local idelta = 1 - delta
local size = 1
halo.Add( { self.Target }, Color( 255, 0, 0, 255 * idelta ), size, size, 1, true, false )
end