Files
itgmania212121/Themes/default/BGAnimations/Screen in/default.lua
T

16 lines
363 B
Lua
Raw Normal View History

2011-03-17 01:47:30 -04:00
local fSleepTime = THEME:GetMetric( Var "LoadingScreen","ScreenInDelay");
2013-06-15 05:54:55 -07:00
2011-03-17 01:47:30 -04:00
return Def.ActorFrame {
Def.Quad {
2013-07-04 13:09:03 -04:00
InitCommand=function(self)
self:Center();
self:zoomto(SCREEN_WIDTH + 1, SCREEN_HEIGHT);
end;
OnCommand=function(self)
self:diffuse(color("0,0,0,1"));
self:sleep(fSleepTime);
self:linear(0.01);
self:diffusealpha(0);
end;
2011-03-17 01:47:30 -04:00
};
2010-01-26 21:00:30 -06:00
};