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

30 lines
877 B
Lua
Raw Normal View History

2011-03-17 01:47:30 -04:00
local t = Def.ActorFrame {};
t[#t+1] = Def.ActorFrame {
2013-07-18 17:41:24 -04:00
InitCommand=cmd(y,48);
2011-03-17 01:47:30 -04:00
Def.Quad {
2013-09-22 01:59:55 -07:00
InitCommand=cmd(vertalign,bottom;zoomto,SCREEN_WIDTH,48);
OnCommand=cmd(diffuse,Color.Black;diffusealpha,0.75);
2011-03-17 01:47:30 -04:00
};
};
2013-07-18 17:41:24 -04:00
t[#t+1] = Def.ActorFrame { Name="MenuTimerDecoration";
2013-09-22 01:59:55 -07:00
InitCommand=cmd(y,40;visible,false);
2011-03-17 01:47:30 -04:00
LoadFont("Common Normal") .. {
Text="TIME";
2013-07-18 17:41:24 -04:00
InitCommand=cmd(vertalign,bottom;horizalign,right;x,SCREEN_CENTER_X-16;y,-4.5);
OnCommand=cmd(zoom,0.5);
2011-03-17 01:47:30 -04:00
};
2013-07-18 17:41:24 -04:00
--[[ LoadFont("Common Normal") .. {
Text="99";
InitCommand=cmd(vertalign,bottom;horizalign,right;x,SCREEN_CENTER_X-64;y,-4.5);
OnCommand=cmd();
}; --]]
2011-03-17 01:47:30 -04:00
};
2013-07-18 17:41:24 -04:00
t[#t+1] = Def.ActorFrame { Name="HeaderTextDecoration";
2013-09-22 01:59:55 -07:00
InitCommand=cmd(y,40);
2011-03-17 01:47:30 -04:00
LoadFont("Common Normal") .. {
Text="OPTIONS";
2013-09-22 01:59:55 -07:00
InitCommand=cmd(vertalign,bottom;horizalign,left;x,-SCREEN_CENTER_X+16;y,-4.5);
2013-07-18 17:41:24 -04:00
OnCommand=cmd();
2011-03-17 01:47:30 -04:00
};
};
return t