Files
itgmania212121/BGAnimations/white reverse flash/default.lua
T

13 lines
326 B
Lua
Raw Normal View History

2013-07-01 21:09:06 -04:00
return Def.Quad {
InitCommand=function(self)
self:x(SCREEN_CENTER_X);
self:y(SCREEN_CENTER_Y);
self:scaletoclipped(SCREEN_WIDTH * 2, SCREEN_HEIGHT * 2);
end;
GainFocusCommand=function(self)
self:finishtweening();
self:diffusealpha(0);
self:accelerate(0.6);
self:diffusealpha(1);
end;
2012-05-31 02:43:17 -05:00
};