Files
itgmania212121/Themes/default/Graphics/ScreenTitleMenu scroll.lua
T

10 lines
362 B
Lua
Raw Normal View History

2011-03-17 01:47:30 -04:00
local gc = Var("GameCommand");
return Def.ActorFrame {
2017-08-08 01:07:34 -06:00
LoadFont("_roboto condensed Bold 48px") .. {
2011-08-01 17:03:12 -05:00
Text=THEME:GetString("ScreenTitleMenu",gc:GetText());
2013-07-18 18:02:01 -04:00
OnCommand=cmd(shadowlength,1);
2017-08-08 01:07:34 -06:00
GainFocusCommand=cmd(stoptweening;linear,0.1;zoom,1;diffuse,color("#A3375C"));
LoseFocusCommand=cmd(stoptweening;linear,0.1;zoom,0.75;diffuse,color("#512232"));
2011-03-17 01:47:30 -04:00
};
2010-01-26 21:00:30 -06:00
};