Files
itgmania212121/Themes/new/Graphics/ScreenWithMenuElements Header/default.lua
T

21 lines
418 B
Lua
Raw Normal View History

2012-08-01 23:15:05 -07:00
return Def.ActorFrame {
-- Default BG
Def.Quad {
2013-07-02 18:22:43 -04:00
InitCommand=function(self)
self:vertalign(top);
self:zoomto(SCREEN_WIDTH, 48);
self:diffuse(Color.Black);
self:diffusealpha(0.65);
end;
2012-08-01 23:15:05 -07:00
};
-- Highlight
Def.Quad {
2013-07-02 18:22:43 -04:00
InitCommand=function(self)
self:vertalign(top);
self:zoomto(SCREEN_WIDTH, 1);
self:diffuse(Color.Blue);
self:faderight(1);
self:y(46);
end;
2012-08-01 23:15:05 -07:00
};
};