Advertisement
Guest User

For MadkaT

a guest
Jul 14th, 2016
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     InitCommand=function(self)
  2.         self:diffusealpha(0)
  3.             :diffuseshift()
  4.             :effectcolor1(1,1,1,0)
  5.             :effectcolor2(1,1,1,1)
  6.             :effectperiod(2)
  7.     end,
  8.     OnCommand=function(self)
  9.         self:Center()
  10.             :FullScreen()
  11.             :blend("BlendMode_Add")
  12.     end,
  13.     GlowCommand=function(self)
  14.         self:stoptweening()
  15.             :diffusealpha(1)
  16.     end,
  17.     HideCommand=function(self)
  18.         if self:GetTweenTimeLeft() == 0 then
  19.             self:linear(1)
  20.                 :diffusealpha(0)
  21.         end
  22.     end,
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement