Files
itgmania212121/Themes/_portKit-sm4/BGAnimations/_fade in normal.lua
T
2013-07-02 17:48:24 -04:00

12 lines
277 B
Lua

return Def.Quad {
InitCommand=function(self)
self:diffuse(color("#000000"));
self:stretchto(SCREEN_LEFT, SCREEN_TOP, SCREEN_RIGHT, SCREEN_BOTTOM);
end;
StartTransitioningCommand=function(self)
self:diffusealpha(1);
self:linear(0.3);
self:diffusealpha(0);
end;
};