Files
itgmania212121/Themes/rsr/Graphics/ScreenWithMenuElements HelpDisplay.lua
T

14 lines
445 B
Lua
Raw Normal View History

2013-10-09 01:39:11 -07:00
local t = Def.HelpDisplay {
File = THEME:GetPathF("HelpDisplay", "text");
InitCommand=function(self)
local s = THEME:GetString(Var "LoadingScreen","HelpText");
self:SetTipsColonSeparated(s);
end;
SetHelpTextCommand=function(self, params)
self:SetTipsColonSeparated( params.Text );
end;
};
t.ScreenChangedMessageCommand=cmd(playcommand,"SetHelpText",{ Text = "&MENULEFT; Left &START; Start &SELECT; Select"});
return t;