Files
itgmania212121/Themes/default/BGAnimations/ScreenHowToPlay overlay/_message tap.lua
T

16 lines
344 B
Lua
Raw Normal View History

2013-07-04 13:09:03 -04:00
return Def.ActorFrame{
LoadActor("tapmessage") .. {
InitCommand=function(self)
self:x(SCREEN_CENTER_X + 160);
self:y(SCREEN_CENTER_Y + 40);
self:diffusealpha(0);
end;
ShowCommand=function(self)
self:linear(0);
self:diffusealpha(1);
self:sleep(2);
self:linear(0);
self:diffusealpha(0);
end;
};
2012-02-19 12:57:58 -06:00
};