Update /rsr slightly.

This commit is contained in:
Jonathan Payne
2013-09-22 13:38:25 -04:00
committed by Devin J. Pohly
parent 90fe50a064
commit db4acae2c5
5 changed files with 36 additions and 19 deletions
@@ -2,12 +2,12 @@ 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);
InitCommand=cmd(vertalign,bottom;zoomto,SCREEN_WIDTH,48);
OnCommand=cmd(diffuse,Color.Black;diffusealpha,0.75);
};
};
t[#t+1] = Def.ActorFrame { Name="MenuTimerDecoration";
InitCommand=cmd(y,48);
InitCommand=cmd(y,40;visible,false);
LoadFont("Common Normal") .. {
Text="TIME";
InitCommand=cmd(vertalign,bottom;horizalign,right;x,SCREEN_CENTER_X-16;y,-4.5);
@@ -20,15 +20,10 @@ t[#t+1] = Def.ActorFrame { Name="MenuTimerDecoration";
}; --]]
};
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);
};
InitCommand=cmd(y,40);
LoadFont("Common Normal") .. {
Text="OPTIONS";
InitCommand=cmd(vertalign,bottom;horizalign,left;x,-SCREEN_CENTER_X+64;y,-4.5);
InitCommand=cmd(vertalign,bottom;horizalign,left;x,-SCREEN_CENTER_X+16;y,-4.5);
OnCommand=cmd();
};
};