Files
itgmania212121/Themes/_portKit-sm4/BGAnimations/_menu out.lua
T

19 lines
358 B
Lua
Raw Normal View History

2011-03-17 01:47:30 -04:00
return Def.ActorFrame {
LoadActor( THEME:GetPathS("", "_swoosh normal") ) .. {
2013-07-02 17:48:24 -04:00
2011-03-17 01:47:30 -04:00
};
LoadActor("_moveon") .. {
2013-07-02 17:48:24 -04:00
OnCommand=function(self)
self:hibernate(0.1);
self:x(SCREEN_CENTER_X);
self:y(SCREEN_CENTER_Y);
self:zoomx(1);
self:zoomy(0);
self:diffusealpha(0);
self:linear(0.35);
self:diffusealpha(1);
self:zoom(1);
end;
2011-03-17 01:47:30 -04:00
};
};