Files
itgmania212121/Themes/default/Graphics/_JudgmentLineLabel/default.lua
T

19 lines
633 B
Lua
Raw Normal View History

2008-04-05 19:24:26 +00:00
local jl = Var "JudgmentLine";
return Def.ActorFrame {
2010-03-01 00:41:15 -06:00
Def.Quad {
InitCommand=cmd(horizalign,right;zoomto,256,18);
OnCommand=cmd(diffuse,Color("Black");fadeleft,1);
};
Def.Quad {
InitCommand=cmd(horizalign,left;zoomto,256,18);
OnCommand=cmd(diffuse,Color("Black");faderight,1);
};
2010-01-26 21:00:30 -06:00
LoadActor("_frame") .. {
InitCommand=cmd(zoomy,0.75;diffuse,JudgmentLineToColor(jl));
2008-04-05 19:24:26 +00:00
};
2010-01-26 21:00:30 -06:00
LoadFont("Common Normal") .. {
InitCommand=cmd(zoom,0.75;settext,string.upper(JudgmentLineToLocalizedString(jl));diffuse,JudgmentLineToColor(jl);strokecolor,JudgmentLineToStrokeColor(jl);shadowlength,0;maxwidth,180);
2008-04-05 19:24:26 +00:00
};
};