RSR stuff ( copyright data is in here watch out. )

This commit is contained in:
Jonathan Payne
2011-01-21 14:24:08 -08:00
parent c380d23d0b
commit 761ea33580
13 changed files with 139 additions and 0 deletions
@@ -0,0 +1,35 @@
local t = Def.ActorFrame {};
t[#t+1] = Def.ActorFrame {
InitCommand=cmd(y,48);
Def.Quad {
InitCommand=cmd(vertalign,bottom;zoomto,SCREEN_WIDTH-32,2);
OnCommand=cmd(diffusealpha,0.5);
};
};
t[#t+1] = Def.ActorFrame { Name="MenuTimerDecoration";
InitCommand=cmd(y,48);
LoadFont("Common Normal") .. {
Text="TIME";
InitCommand=cmd(vertalign,bottom;horizalign,right;x,SCREEN_CENTER_X-16;y,-4.5);
OnCommand=cmd(zoom,0.5);
};
--[[ LoadFont("Common Normal") .. {
Text="99";
InitCommand=cmd(vertalign,bottom;horizalign,right;x,SCREEN_CENTER_X-64;y,-4.5);
OnCommand=cmd();
}; --]]
};
t[#t+1] = Def.ActorFrame { Name="HeaderTextDecoration";
InitCommand=cmd(y,48);
LoadFont("Common Normal") .. {
Text="SELECT";
InitCommand=cmd(vertalign,bottom;horizalign,left;x,-SCREEN_CENTER_X+16;y,-4.5);
OnCommand=cmd(zoom,0.5);
};
LoadFont("Common Normal") .. {
Text="OPTIONS";
InitCommand=cmd(vertalign,bottom;horizalign,left;x,-SCREEN_CENTER_X+64;y,-4.5);
OnCommand=cmd();
};
};
return t