Files
itgmania212121/Themes/default/BGAnimations/ScreenTitleJoin overlay.lua
T

12 lines
409 B
Lua
Raw Normal View History

2011-03-17 01:47:30 -04:00
local t = Def.ActorFrame{};
-- todo: add event mode indicators and such
if GAMESTATE:IsEventMode() then
2014-09-16 17:14:07 -07:00
t[#t+1] = LoadFont("Common Large")..{
2011-03-17 01:47:30 -04:00
Text=Screen.String("EventMode");
2014-09-16 17:14:07 -07:00
InitCommand=cmd(CenterX;y,SCREEN_BOTTOM-72;zoom,0.675;diffuse,Color.Yellow;strokecolor,ColorDarkTone(Color.Yellow);shadowlength,1);
OnCommand=cmd(glowshift;textglowmode,'TextGlowMode_Inner';effectperiod,2);
2011-03-17 01:47:30 -04:00
};
end;
return t;