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

13 lines
290 B
Lua

local t = 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(0);
self:linear(0.3);
self:diffusealpha(1);
end;
};
return t;