Skip to content

Instantly share code, notes, and snippets.

@CapsAdmin
Created April 23, 2014 17:05
Show Gist options
  • Select an option

  • Save CapsAdmin/11223742 to your computer and use it in GitHub Desktop.

Select an option

Save CapsAdmin/11223742 to your computer and use it in GitHub Desktop.
function EFFECT:Init()
self.Time = 1
end
function EFFECT:Think()
self.Time = self.Time - (FrameTime() * 0.5) -- lower for slower speed
if self.Time < 0 then
return false
end
end
function EFFECT:Render()
local alpha = self.Time * 255
MyDrawThing(alpha)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment