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

21 lines
424 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(bottom);
self:zoomto(SCREEN_WIDTH, 60);
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(bottom);
self:zoomto(SCREEN_WIDTH, 1);
self:diffuse(Color.Blue);
self:fadeleft(1);
self:y(-58);
end;
2012-08-01 23:15:05 -07:00
};
};