Files
itgmania212121/Themes/legacy/BGAnimations/ScreenPlayerOptions out.lua
T
ListenerJubatus f257f19dad Add new 5.1 default theme Lambda
I'd like to thank everyone who made this possible;, including but not
limited to Riakodoadm, MrThatKid, kyzentun, Luizsan, JoseVarelaP,
everyone else who provided feedback and bug reports.
2017-08-08 01:07:34 -06:00

39 lines
930 B
Lua

if PREFSMAN:GetPreference( "ShowSongOptions" ) ~= "Maybe_Ask" then
return LoadActor( THEME:GetPathB("Screen", "out") );
end
local t = Def.ActorFrame {
LoadActor( THEME:GetPathB("Screen", "out") );
LoadFont( "common normal" ) .. {
InitCommand=cmd(settext,"Press &START; for more options";x,SCREEN_CENTER_X;y,SCREEN_CENTER_Y+100;visible,false);
AskForGoToOptionsCommand=cmd(
visible,true;
diffusealpha,0;
linear,0.15;
zoomy,1;
diffusealpha,1;
sleep,1;
linear,0.15;
diffusealpha,0;
zoomy,0;
);
GoToOptionsCommand=cmd(visible,false);
};
LoadFont( "common normal" ) .. {
InitCommand=cmd(settext,"entering options...";x,SCREEN_CENTER_X;y,SCREEN_CENTER_Y+100;visible,false);
AskForGoToOptionsCommand=cmd(
visible,false;
linear,0.15;
zoomy,1;
diffusealpha,1;
sleep,1;
linear,0.15;
diffusealpha,0;
zoomy,0;
);
GoToOptionsCommand=cmd(visible,true);
};
};
return t;