2012-07-12 16:58:45 -05:00
|
|
|
return Def.ActorFrame {
|
|
|
|
|
LoadFont("Common Normal") .. {
|
|
|
|
|
Text=GetTimingDifficulty();
|
|
|
|
|
AltText="";
|
2013-07-05 22:17:42 -04:00
|
|
|
InitCommand=function(self)
|
|
|
|
|
self:horizalign(left);
|
|
|
|
|
self:zoom(0.675);
|
|
|
|
|
end;
|
|
|
|
|
OnCommand=function(self)
|
|
|
|
|
self:shadowlength(1);
|
|
|
|
|
end;
|
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-05 22:17:42 -04:00
|
|
|
InitCommand=function(self)
|
|
|
|
|
self:x(136);
|
|
|
|
|
self:zoom(0.675);
|
|
|
|
|
self:halign(0);
|
|
|
|
|
end;
|
2012-07-12 16:58:45 -05:00
|
|
|
OnCommand=function(self)
|
2013-07-05 22:17:42 -04:00
|
|
|
self:shadowlength(1);
|
|
|
|
|
self:skewx(-0.125);
|
2012-07-12 16:58:45 -05:00
|
|
|
if GetTimingDifficulty() == 9 then
|
|
|
|
|
self:settext("Justice");
|
2013-07-05 22:17:42 -04:00
|
|
|
self:zoom(0.5);
|
|
|
|
|
self:diffuse(ColorLightTone( Color("Orange")) );
|
2012-07-12 16:58:45 -05:00
|
|
|
else
|
|
|
|
|
self:settext( GetTimingDifficulty() );
|
|
|
|
|
end
|
|
|
|
|
end;
|
|
|
|
|
};
|
2010-04-26 14:24:38 -05:00
|
|
|
};
|