Files
itgmania212121/Themes/rsr/Graphics/ScreenTitleMenu scroll.lua
T
2013-07-01 21:30:10 -04:00

15 lines
265 B
Lua

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