Files
itgmania212121/Themes/legacy/BGAnimations/ScreenSelectMusic underlay.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

13 lines
350 B
Lua

local t = Def.ActorFrame {
Def.Quad {
InitCommand=cmd(zoomto,SCREEN_WIDTH,SCREEN_HEIGHT);
OnCommand=cmd(diffuse,Color.Black;diffusealpha,0);
StartSelectingStepsMessageCommand=cmd(stoptweening;linear,0.2;diffusealpha,0.75);
SongUnchosenMessageCommand=cmd(stoptweening;linear,0.2;diffusealpha,0);
};
};
t.InitCommand=cmd(Center);
return t;