2011-03-17 01:47:30 -04:00
|
|
|
local t = Def.ActorFrame {};
|
|
|
|
|
t[#t+1] = Def.ActorFrame {
|
2013-07-18 17:41:24 -04:00
|
|
|
InitCommand=cmd(y,-64);
|
2011-03-17 01:47:30 -04:00
|
|
|
Def.Quad {
|
2013-09-22 01:59:55 -07:00
|
|
|
InitCommand=cmd(vertalign,top;zoomto,SCREEN_WIDTH,64);
|
|
|
|
|
OnCommand=cmd(diffuse,Color.Black;diffusealpha,0.75);
|
2011-03-17 01:47:30 -04:00
|
|
|
};
|
|
|
|
|
};
|
2013-10-05 18:00:51 -07:00
|
|
|
t[#t+1] = Def.ActorFrame {
|
|
|
|
|
InitCommand=cmd(y,-64);
|
|
|
|
|
Def.Quad {
|
|
|
|
|
InitCommand=cmd(vertalign,top;zoomto,SCREEN_WIDTH,48);
|
|
|
|
|
OnCommand=cmd(diffuse,Color.Orange;diffusealpha,0.125;fadebottom,1);
|
|
|
|
|
};
|
|
|
|
|
Def.Quad {
|
|
|
|
|
InitCommand=cmd(vertalign,top;zoomto,SCREEN_WIDTH,2);
|
|
|
|
|
OnCommand=cmd(diffuse,Color.Orange);
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
return t
|