2011-03-17 01:47:30 -04:00
|
|
|
local t = Def.ActorFrame{};
|
|
|
|
|
|
|
|
|
|
-- todo: add event mode indicators and such
|
|
|
|
|
if GAMESTATE:IsEventMode() then
|
|
|
|
|
t[#t+1] = LoadFont("Common normal")..{
|
|
|
|
|
Text=Screen.String("EventMode");
|
2013-07-18 17:43:31 -04:00
|
|
|
InitCommand=cmd(CenterX;y,SCREEN_BOTTOM-72;zoom,0.75;diffuse,HSV(56,0.8,1);shadowlength,1);
|
2011-03-17 01:47:30 -04:00
|
|
|
};
|
|
|
|
|
end;
|
|
|
|
|
|
2010-05-15 15:56:45 -05:00
|
|
|
return t;
|