Files
itgmania212121/Themes/rsr/Graphics/ScreenWithMenuElements header/default.lua
T

63 lines
1.2 KiB
Lua
Raw Normal View History

2011-03-17 01:47:30 -04:00
local t = Def.ActorFrame {};
t[#t+1] = Def.ActorFrame {
2013-07-01 21:30:10 -04:00
InitCommand=function(self)
self:y(48);
end;
2011-03-17 01:47:30 -04:00
Def.Quad {
2013-07-01 21:30:10 -04:00
InitCommand=function(self)
self:vertalign(bottom);
self:zoomto(SCREEN_WIDTH - 32, 2);
end;
OnCommand=function(self)
self:diffusealpha(0.5);
end;
2011-03-17 01:47:30 -04:00
};
};
2013-07-01 21:30:10 -04:00
t[#t+1] = Def.ActorFrame {
Name="MenuTimerDecoration";
InitCommand=function(self)
self:y(48);
end;
2011-03-17 01:47:30 -04:00
LoadFont("Common Normal") .. {
Text="TIME";
2013-07-01 21:30:10 -04:00
InitCommand=function(self)
self:vertalign(bottom);
self:horizalign(right);
self:x(SCREEN_CENTER_X - 16);
self:y,(-4.5);
end;
OnCommand=function(self)
self:zoom(0.5);
end;
2011-03-17 01:47:30 -04:00
};
};
2013-07-01 21:30:10 -04:00
t[#t+1] = Def.ActorFrame {
Name="HeaderTextDecoration";
InitCommand=function(self)
self:y(48);
end;
2011-03-17 01:47:30 -04:00
LoadFont("Common Normal") .. {
Text="SELECT";
2013-07-01 21:30:10 -04:00
InitCommand=function(self)
self:vertalign(bottom);
self:horizalign(right);
self:x(SCREEN_CENTER_X - 16);
self:y,(-4.5);
end;
OnCommand=function(self)
self:zoom(0.5);
end;
2011-03-17 01:47:30 -04:00
};
LoadFont("Common Normal") .. {
Text="OPTIONS";
2013-07-01 21:30:10 -04:00
InitCommand=function(self)
self:vertalign(bottom);
self:horizalign(right);
self:x(SCREEN_CENTER_X - 16);
self:y,(-4.5);
end;
OnCommand=function(self)
end;
2011-03-17 01:47:30 -04:00
};
};
return t