2012-07-12 16:58:45 -05:00
|
|
|
return Def.ActorFrame {
|
|
|
|
|
LoadFont("Common Normal") .. {
|
|
|
|
|
Text=GetTimingDifficulty();
|
|
|
|
|
AltText="";
|
2013-07-18 18:02:01 -04:00
|
|
|
InitCommand=cmd(horizalign,left;zoom,0.675);
|
|
|
|
|
OnCommand=cmd(shadowlength,1);
|
2012-07-12 16:58:45 -05:00
|
|
|
BeginCommand=function(self)
|
|
|
|
|
self:settextf( Screen.String("TimingDifficulty"), "" );
|
|
|
|
|
end
|
|
|
|
|
};
|
|
|
|
|
LoadFont("Common Normal") .. {
|
|
|
|
|
Text=GetTimingDifficulty();
|
|
|
|
|
AltText="";
|
2013-07-18 18:02:01 -04:00
|
|
|
InitCommand=cmd(x,136;zoom,0.675;halign,0);
|
2012-07-12 16:58:45 -05:00
|
|
|
OnCommand=function(self)
|
2013-07-18 18:02:01 -04:00
|
|
|
(cmd(shadowlength,1;skewx,-0.125))(self);
|
2012-07-12 16:58:45 -05:00
|
|
|
if GetTimingDifficulty() == 9 then
|
|
|
|
|
self:settext("Justice");
|
2013-07-18 18:02:01 -04:00
|
|
|
(cmd(zoom,0.5;diffuse,ColorLightTone( Color("Orange")) ))(self);
|
2012-07-12 16:58:45 -05:00
|
|
|
else
|
|
|
|
|
self:settext( GetTimingDifficulty() );
|
|
|
|
|
end
|
|
|
|
|
end;
|
|
|
|
|
};
|
2010-04-26 14:24:38 -05:00
|
|
|
};
|