2012-08-01 23:15:05 -07:00
|
|
|
return Def.ActorFrame {
|
|
|
|
|
-- Default BG
|
|
|
|
|
Def.Quad {
|
2013-07-02 18:22:43 -04:00
|
|
|
InitCommand=function(self)
|
|
|
|
|
self:vertalign(bottom);
|
|
|
|
|
self:zoomto(SCREEN_WIDTH, 60);
|
|
|
|
|
self:diffuse(Color.Black);
|
|
|
|
|
self:diffusealpha(0.65);
|
|
|
|
|
end;
|
2012-08-01 23:15:05 -07:00
|
|
|
};
|
|
|
|
|
-- Highlight
|
|
|
|
|
Def.Quad {
|
2013-07-02 18:22:43 -04:00
|
|
|
InitCommand=function(self)
|
|
|
|
|
self:vertalign(bottom);
|
|
|
|
|
self:zoomto(SCREEN_WIDTH, 1);
|
|
|
|
|
self:diffuse(Color.Blue);
|
|
|
|
|
self:fadeleft(1);
|
|
|
|
|
self:y(-58);
|
|
|
|
|
end;
|
2012-08-01 23:15:05 -07:00
|
|
|
};
|
|
|
|
|
};
|