Files
itgmania212121/Themes/_portKit-sm4/BGAnimations/_fade out normal.lua
T

13 lines
290 B
Lua
Raw Normal View History

2011-03-17 01:47:30 -04:00
local t = Def.Quad {
2013-07-02 17:48:24 -04:00
InitCommand=function(self)
self:diffuse(color("#000000"));
self:stretchto(SCREEN_LEFT, SCREEN_TOP, SCREEN_RIGHT, SCREEN_BOTTOM);
end;
StartTransitioningCommand=function(self)
self:diffusealpha(0);
self:linear(0.3);
self:diffusealpha(1);
end;
2011-03-17 01:47:30 -04:00
};
return t;