RSR theme covered.

This commit is contained in:
Jason Felds
2013-07-01 21:30:10 -04:00
parent 2330c87501
commit c31d1f1c9d
7 changed files with 148 additions and 59 deletions
@@ -1,9 +1,16 @@
local t = Def.ActorFrame {};
t[#t+1] = Def.ActorFrame {
InitCommand=cmd(y,-64);
InitCommand=function(self)
self:y(-64);
end;
Def.Quad {
InitCommand=cmd(vertalign,top;zoomto,SCREEN_WIDTH-32,2);
OnCommand=cmd(diffusealpha,0.5);
InitCommand=function(self)
self:vertalign(top);
self:zoomto(SCREEN_WIDTH - 32, 2);
end;
OnCommand=function(self)
self:diffusealpha(0.5);
end;
};
};
return t