Files
itgmania212121/Themes/_fallback/Graphics/ScreenSelectMaster scroll.lua
T
2013-07-03 20:08:34 -04:00

15 lines
260 B
Lua

local gc = Var("GameCommand");
local t = Def.ActorFrame {};
t[#t+1] = LoadFont("Common Normal") .. {
Text=gc:GetName();
};
t.GainFocusCommand=function(self)
self:visible(true);
end;
t.LoseFocusCommand=function(self)
self:visible(false);
end;
return t;