2008-04-27 00:14:05 +00:00
|
|
|
local t = LoadFallbackB();
|
2008-03-29 15:19:45 +00:00
|
|
|
|
2008-08-17 00:57:23 +00:00
|
|
|
t[#t+1] = StandardDecorationFromFile( "StageFrame", "StageFrame" );
|
2008-03-29 15:19:45 +00:00
|
|
|
|
|
|
|
|
t[#t+1] = LoadActor("_warning") .. {
|
2008-12-21 22:16:54 +00:00
|
|
|
InitCommand=cmd(x,SCREEN_CENTER_X;y,SCREEN_CENTER_Y;
|
|
|
|
|
vertalign,top;
|
|
|
|
|
wag;effectmagnitude,0,0,10;effectperiod,2;
|
|
|
|
|
);
|
|
|
|
|
OnCommand=cmd(diffusealpha,0);
|
|
|
|
|
ShowDangerAllMessageCommand=cmd(stoptweening;accelerate,0.3;diffusealpha,1);
|
|
|
|
|
HideDangerAllMessageCommand=cmd(stoptweening;accelerate,0.3;diffusealpha,0);
|
|
|
|
|
};
|
2008-03-31 11:49:26 +00:00
|
|
|
|
2008-08-17 00:57:23 +00:00
|
|
|
t[#t+1] = StandardDecorationFromFile( "LifeFrame", "LifeFrame" );
|
|
|
|
|
t[#t+1] = StandardDecorationFromFile( "ScoreFrame", "ScoreFrame" );
|
|
|
|
|
t[#t+1] = StandardDecorationFromFile( "LeftFrame", "LeftFrame" );
|
|
|
|
|
t[#t+1] = StandardDecorationFromFile( "RightFrame", "RightFrame" );
|
2008-03-31 04:38:13 +00:00
|
|
|
|
|
|
|
|
|
2008-04-27 21:34:43 +00:00
|
|
|
t[#t+1] = Def.ModIconRow {
|
2008-12-21 22:16:54 +00:00
|
|
|
InitCommand=cmd(x,THEME:GetMetric(Var "LoadingScreen","LeftFrameX");y,THEME:GetMetric(Var "LoadingScreen","LeftFrameY");Load,"ModIconRowGameplayP1",PLAYER_1;player,PLAYER_1;);
|
|
|
|
|
OnCommand=cmd(zoomy,0;linear,0.5;zoomy,1);
|
|
|
|
|
OffCommand=cmd(linear,0.5;zoomy,0);
|
|
|
|
|
};
|
2008-04-27 21:34:43 +00:00
|
|
|
t[#t+1] = Def.ModIconRow {
|
2008-12-21 22:16:54 +00:00
|
|
|
InitCommand=cmd(x,THEME:GetMetric(Var "LoadingScreen","RightFrameX");y,THEME:GetMetric(Var "LoadingScreen","RightFrameY");Load,"ModIconRowGameplayP2",PLAYER_2;player,PLAYER_2;);
|
|
|
|
|
OnCommand=cmd(zoomy,0;linear,0.5;zoomy,1);
|
|
|
|
|
OffCommand=cmd(linear,0.5;zoomy,0);
|
|
|
|
|
};
|
2008-03-31 04:38:13 +00:00
|
|
|
|
2008-03-28 16:31:14 +00:00
|
|
|
|
|
|
|
|
return t;
|