Files
itgmania212121/Themes/HelloWorld/BGAnimations/ScreenTitleMenu out.lua
T

13 lines
243 B
Lua
Raw Normal View History

2011-03-17 01:47:30 -04:00
return Def.ActorFrame{
Def.Quad{
2013-07-02 20:28:29 -04:00
InitCommand=function(self)
self:FullScreen();
self:diffuse(color("#fffdf200"));
end;
OnCommand=function(self)
self:sleep(1.125);
self:decelerate(0.875);
self:diffusealpha,(1);
end;
2011-03-17 01:47:30 -04:00
};
2011-02-22 21:26:41 -06:00
}