The "new" theme is handled.

This commit is contained in:
Jason Felds
2013-07-02 18:22:43 -04:00
parent f373dd9add
commit 2d5d45e365
11 changed files with 212 additions and 95 deletions
@@ -1,10 +1,21 @@
return Def.ActorFrame {
-- Default BG
Def.Quad {
InitCommand=cmd(vertalign,top;zoomto,SCREEN_WIDTH,48;diffuse,Color.Black;diffusealpha,0.65);
InitCommand=function(self)
self:vertalign(top);
self:zoomto(SCREEN_WIDTH, 48);
self:diffuse(Color.Black);
self:diffusealpha(0.65);
end;
};
-- Highlight
Def.Quad {
InitCommand=cmd(vertalign,top;zoomto,SCREEN_WIDTH,1;diffuse,Color.Blue;faderight,1;y,46);
InitCommand=function(self)
self:vertalign(top);
self:zoomto(SCREEN_WIDTH, 1);
self:diffuse(Color.Blue);
self:faderight(1);
self:y(46);
end;
};
};