Files
itgmania212121/Themes/default/BGAnimations/ScreenSelectMusic underlay.lua
T

13 lines
350 B
Lua
Raw Normal View History

2014-08-30 16:14:03 -07:00
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);
2014-08-31 23:26:23 -07:00
SongUnchosenMessageCommand=cmd(stoptweening;linear,0.2;diffusealpha,0);
2014-08-30 16:14:03 -07:00
};
};
t.InitCommand=cmd(Center);
return t;