e9da54c2f9
Too many changes to list.
40 lines
1,011 B
Lua
40 lines
1,011 B
Lua
function EFFECT:Init(effectdata)
|
|
local pos = effectdata:GetOrigin()
|
|
self.Pos = pos
|
|
local normal = effectdata:GetNormal()
|
|
|
|
self.Alpha = 255
|
|
self.Life = 0
|
|
|
|
local emitter = ParticleEmitter(pos)
|
|
emitter:SetNearClip(24, 32)
|
|
|
|
for i=1, 15 do
|
|
local particle = emitter:Add("sprites/glow04_noz", pos)
|
|
particle:SetDieTime(0.2)
|
|
particle:SetColor(40,255,70)
|
|
particle:SetStartAlpha(255)
|
|
particle:SetEndAlpha(0)
|
|
particle:SetStartSize(1)
|
|
particle:SetEndSize(2)
|
|
particle:SetVelocity((normal + VectorRand()):GetNormal() * 150)
|
|
particle:SetCollide(true)
|
|
particle:SetBounce(0.75)
|
|
particle:SetAirResistance(12)
|
|
end
|
|
emitter:Finish() emitter = nil collectgarbage("step", 64)
|
|
end
|
|
|
|
function EFFECT:Think()
|
|
self.Life = self.Life + FrameTime() * 3
|
|
self.Alpha = 255 * (1 - self.Life)
|
|
return (self.Life < 1)
|
|
end
|
|
|
|
local glowmat = Material("sprites/glow04_noz")
|
|
function EFFECT:Render()
|
|
local pos = self.Pos
|
|
|
|
render.SetMaterial(glowmat)
|
|
render.DrawSprite(pos, 25, 25, Color(40, 255, 70, self.Alpha))
|
|
end
|