Files
itgmania212121/Themes/default/BGAnimations/_ScreenTitleMenu out/default.lua
T

23 lines
956 B
Lua
Raw Normal View History

2011-03-17 01:47:30 -04:00
return Def.ActorFrame {
2013-07-18 18:02:01 -04:00
InitCommand=cmd(Center);
2011-03-17 01:47:30 -04:00
Def.Quad {
2013-07-18 18:02:01 -04:00
InitCommand=cmd(zoomto,SCREEN_WIDTH,SCREEN_HEIGHT;visible,false);
StartTransitioningCommand=cmd(visible,true;diffuse,Color("Black");sleep,3.5;diffusealpha,0);
2011-03-17 01:47:30 -04:00
};
-- Sublime
Def.Quad {
2013-07-18 18:02:01 -04:00
InitCommand=cmd(zoomto,SCREEN_WIDTH,80;diffuse,Color("Orange");visible,false);
StartTransitioningCommand=cmd(visible,true;decelerate,2;zoomy,44;decelerate,0.5;diffusealpha,0);
2011-03-17 01:47:30 -04:00
};
LoadFont("Common Normal") .. {
Text="This is only the beginning...";
2013-07-18 18:02:01 -04:00
InitCommand=cmd(visible,false;shadowlength,1;shadowcolor,BoostColor(Color("Orange"),0.5));
StartTransitioningCommand=cmd(visible,true;zoom,0.75;fadeleft,1;faderight,1;linear,1;faderight,0;fadeleft,0;sleep,1;decelerate,0.5;y,12;diffusealpha,0);
2011-03-17 01:47:30 -04:00
};
-- End
Def.Quad {
2013-07-18 18:02:01 -04:00
InitCommand=cmd(zoomto,SCREEN_WIDTH,SCREEN_HEIGHT;diffuse,Color("White");visible,false);
StartTransitioningCommand=cmd(visible,true;decelerate,1;diffusealpha,0);
2011-03-17 01:47:30 -04:00
};
2010-01-26 21:00:30 -06:00
};