Files
itgmania212121/stepmania/Themes/default/BGAnimations/ScreenProfileLoad overlay.lua
T
2007-04-18 00:53:11 +00:00

23 lines
477 B
Lua
Executable File

local t = Def.ActorFrame { };
t[#t+1] = LoadActor( THEME:GetPathB("ScreenWithMenuElements","underlay") );
t[#t+1] = LoadActor( THEME:GetPathB("", "_moveon") ) .. {
InitCommand=cmd(x,SCREEN_CENTER_X;y,SCREEN_CENTER_Y);
};
t[#t+1] = Def.Actor {
BeginCommand=function(self)
if SCREENMAN:GetTopScreen():HaveProfileToLoad() then
self:sleep(0.3);
end;
self:queuecommand("Load");
end;
LoadCommand=function()
SCREENMAN:GetTopScreen():Continue();
end;
};
return t;