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

51 lines
1.2 KiB
Lua
Raw Normal View History

2013-10-02 06:32:27 -05:00
local t = Def.ActorFrame{};
2011-03-17 01:47:30 -04:00
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-10-02 06:32:27 -05:00
2013-10-05 18:00:51 -07:00
t[#t+1] = Def.ActorFrame {
InitCommand=cmd(y,48);
Def.Quad {
InitCommand=cmd(vertalign,bottom;zoomto,SCREEN_WIDTH,24);
OnCommand=cmd(diffuse,Color.Orange;diffusealpha,0.125;fadetop,1);
};
Def.Quad {
InitCommand=cmd(vertalign,bottom;zoomto,SCREEN_WIDTH,2);
OnCommand=cmd(diffuse,Color.Orange);
};
};
2013-10-02 06:32:27 -05:00
t[#t+1] = Def.ActorFrame {
Name="MenuTimerDecoration";
2013-09-22 01:59:55 -07:00
InitCommand=cmd(y,40;visible,false);
2013-10-02 06:32:27 -05:00
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-10-02 06:32:27 -05:00
t[#t+1] = Def.ActorFrame {
Name="HeaderTextDecoration";
2013-09-22 01:59:55 -07:00
InitCommand=cmd(y,40);
2013-10-02 06:32:27 -05:00
2011-03-17 01:47:30 -04:00
LoadFont("Common Normal") .. {
Text="OPTIONS";
2013-10-02 06:32:27 -05:00
InitCommand=cmd(vertalign,bottom;horizalign,left;x,-SCREEN_CENTER_X+16;y,-4.5;diffusebottomedge,color("#EEEEEE"));
2013-07-18 17:41:24 -04:00
OnCommand=cmd();
2011-03-17 01:47:30 -04:00
};
};
2013-10-02 06:32:27 -05:00
2013-10-05 18:00:51 -07:00
return t