2017-08-08 01:07:34 -06:00
|
|
|
local t = Def.ActorFrame {};
|
|
|
|
|
|
2013-07-18 17:43:31 -04:00
|
|
|
t[#t+1] = Def.ActorFrame {
|
2017-08-08 01:07:34 -06:00
|
|
|
FOV=90;
|
2013-07-18 17:43:31 -04:00
|
|
|
InitCommand=cmd(Center);
|
2017-08-08 01:07:34 -06:00
|
|
|
Def.Quad {
|
2013-07-18 17:43:31 -04:00
|
|
|
InitCommand=cmd(scaletoclipped,SCREEN_WIDTH,SCREEN_HEIGHT);
|
2017-08-08 01:07:34 -06:00
|
|
|
OnCommand=cmd(diffuse,ColorMidTone(color("#451A20"));diffusebottomedge,ColorMidTone(color("#5E2A30"));diffusealpha,0.9);
|
2013-07-18 17:43:31 -04:00
|
|
|
};
|
2017-08-08 01:07:34 -06:00
|
|
|
LoadActor (GetSongBackground()) .. {
|
|
|
|
|
InitCommand=cmd(scaletoclipped,SCREEN_WIDTH,SCREEN_HEIGHT);
|
|
|
|
|
OnCommand=cmd(diffusealpha,0.1;);
|
2013-07-18 17:43:31 -04:00
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return t;
|