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
|
|
|
|
|
|
|
|
|
2009-04-12 01:48:29 +00:00
|
|
|
if ShowStandardDecoration("ModIconRows") then
|
|
|
|
|
for pn in ivalues(PlayerNumber) do
|
|
|
|
|
local t2 = Def.ModIconRow {
|
|
|
|
|
InitCommand=cmd(Load,"ModIconRowGameplay"..ToEnumShortString(pn),pn);
|
|
|
|
|
};
|
|
|
|
|
t[#t+1] = StandardDecorationFromTable( "ModIconRow" .. ToEnumShortString(pn), t2 );
|
|
|
|
|
end
|
|
|
|
|
end
|
2008-03-28 16:31:14 +00:00
|
|
|
|
|
|
|
|
return t;
|