Revert "The "new" theme is handled."

This reverts commit 2d5d45e365.
This commit is contained in:
Jason Felds
2013-07-18 17:42:22 -04:00
parent f57abda0bc
commit c872bb311c
11 changed files with 95 additions and 212 deletions
@@ -1,21 +1,10 @@
return Def.ActorFrame {
-- Default BG
Def.Quad {
InitCommand=function(self)
self:vertalign(bottom);
self:zoomto(SCREEN_WIDTH, 60);
self:diffuse(Color.Black);
self:diffusealpha(0.65);
end;
InitCommand=cmd(vertalign,bottom;zoomto,SCREEN_WIDTH,60;diffuse,Color.Black;diffusealpha,0.65);
};
-- Highlight
Def.Quad {
InitCommand=function(self)
self:vertalign(bottom);
self:zoomto(SCREEN_WIDTH, 1);
self:diffuse(Color.Blue);
self:fadeleft(1);
self:y(-58);
end;
InitCommand=cmd(vertalign,bottom;zoomto,SCREEN_WIDTH,1;diffuse,Color.Blue;fadeleft,1;y,-58);
};
};