2010-01-26 21:00:30 -06:00
|
|
|
local t = Def.ActorFrame {};
|
|
|
|
|
|
|
|
|
|
t[#t+1] = Def.ActorFrame {
|
|
|
|
|
InitCommand=cmd(Center);
|
|
|
|
|
Def.Quad {
|
2010-02-17 19:47:36 -06:00
|
|
|
InitCommand=cmd(scaletoclipped,SCREEN_WIDTH+1,SCREEN_HEIGHT);
|
2010-01-26 21:00:30 -06:00
|
|
|
OnCommand=cmd(diffuse,color("#FFCB05");diffusebottomedge,color("#F0BA00"));
|
|
|
|
|
};
|
|
|
|
|
LoadActor("_bg top") .. {
|
2010-02-17 19:47:36 -06:00
|
|
|
InitCommand=cmd(scaletoclipped,SCREEN_WIDTH+1,SCREEN_HEIGHT);
|
2008-02-19 03:13:39 +00:00
|
|
|
};
|
|
|
|
|
};
|
2010-01-26 21:00:30 -06:00
|
|
|
|
|
|
|
|
return t;
|