SPLoad
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
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;
|
||||
|
||||
Reference in New Issue
Block a user