Files
itgmania212121/Themes/_themekit-piu/Graphics/ScreenTitleMenu scroll.lua
T
2011-04-29 14:58:59 -04:00

18 lines
536 B
Lua

local gc = Var("GameCommand");
return Def.ActorFrame {
InitCommand=function(self)
local this = self:GetChildren()
this.ttf:settext(gc:GetText());
this.ttf:Stroke(color("#000000"));
this.ttf:diffuse(color("#ffffff"));
--this.bkg:zoomto(150,40);
--this.bkg:diffuse(color("#c0c0c0"));
--this.bkg:fadeleft(0.2);
--this.bkg:faderight(0.2);
end;
--GainFocusCommand=cmd(stoptweening;zoom,1.2);
--LoseFocusCommand=cmd(stoptweening;zoom,1.0);
--Def.Quad { Name="bkg" };
LoadFont("_arial", "black 20px")..{ Name="ttf" };
};