Files
itgmania212121/Themes/default/BGAnimations/ScreenDemonstration out.lua
T

15 lines
284 B
Lua
Raw Normal View History

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:FullScreen();
self:diffuse(color("0,0,0,1"));
self:cropbottom(1);
self:fadebottom(1);
end;
OnCommand=function(self)
self:decelerate(0.5);
self:cropbottom(0);
self:fadebottom(0);
end;
2011-03-17 01:47:30 -04:00
};
};