zombiesurvival-evolved/gamemodes/zombiesurvival/entities/effects/explosion_emi.lua
William Moodhe e9da54c2f9 ZS updates for 2014-2018
Too many changes to list.
2018-05-01 18:32:59 -04:00

77 lines
2.1 KiB
Lua

EFFECT.LifeTime = 0.5
function EFFECT:Init(data)
local pos = data:GetOrigin()
local normal = data:GetNormal() * -1
pos = pos + normal
self.Pos = pos
self.Normal = normal
self.DieTime = CurTime() + self.LifeTime
sound.Play("ambient/fire/gascan_ignite1.wav", pos, 75, math.Rand(250, 255))
local emitter = ParticleEmitter(pos)
emitter:SetNearClip(24, 32)
for i=1, math.random(70, 80) do
local heading = VectorRand()
heading:Normalize()
local particle = emitter:Add("effects/spark", pos + heading * 8)
particle:SetVelocity(120 * heading)
particle:SetDieTime(math.Rand(0.5, 0.55))
particle:SetStartAlpha(255)
particle:SetEndAlpha(255)
particle:SetStartSize(math.Rand(3, 4))
particle:SetEndSize(0)
particle:SetColor(110, 110, 110)
particle:SetRoll(math.Rand(0, 360))
particle:SetRollDelta(math.Rand(-10, 10))
particle:SetAirResistance(250)
end
emitter:Finish() emitter = nil collectgarbage("step", 64)
local dlight = DynamicLight(0)
if dlight then
dlight.Pos = pos
dlight.r = 255
dlight.g = 255
dlight.b = 255
dlight.Brightness = 8
dlight.Size = 300
dlight.Decay = 1000
dlight.DieTime = CurTime() + 1
end
end
function EFFECT:Think()
return CurTime() < self.DieTime
end
local matRefract = Material("refract_ring")
local matGlow = Material("sprites/glow04_noz")
local colGlow = Color(215, 215, 215)
function EFFECT:Render()
local delta = (self.DieTime - CurTime()) / self.LifeTime
local basesize = 20
basesize = basesize + basesize ^ (1.5 - delta)
local pos = self.Pos
matRefract:SetFloat("$refractamount", (0.75 + math.abs(math.sin(CurTime() * 5)) * math.pi * 0.25) * delta)
render.SetMaterial(matRefract)
render.UpdateRefractTexture()
render.DrawSprite(pos, basesize, basesize)
render.DrawQuadEasy(pos, self.Normal, basesize, basesize, color_white, 0)
render.DrawQuadEasy(pos, self.Normal, basesize, basesize, color_white, 0)
basesize = basesize * 0.75
colGlow.a = delta * 255
render.SetMaterial(matGlow)
render.DrawSprite(pos, basesize, basesize, colGlow)
render.DrawQuadEasy(pos, self.Normal, basesize, basesize, colGlow, 0)
render.DrawQuadEasy(pos, self.Normal, basesize, basesize, colGlow, 0)
end