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;
|
|
|
|
|
|
2010-05-15 15:56:45 -05:00
|
|
|
return t;
|