Files
itgmania212121/Themes/default/Graphics/ScreenEvaluation SongInformation.lua
T

35 lines
683 B
Lua
Raw Normal View History

2011-03-17 01:47:30 -04:00
return Def.ActorFrame {
LoadFont("Common Normal") .. {
Name="TextTitle";
2013-07-05 22:17:42 -04:00
InitCommand=function(self)
self:y(-16.5);
self:zoom(0.875);
self:maxwidth(256/0.875);
end;
OnCommand=function(self)
self:shadowlength(1);
end;
2011-03-17 01:47:30 -04:00
};
LoadFont("Common Normal") .. {
Name="TextSubtitle";
2013-07-05 22:17:42 -04:00
InitCommand=function(self)
self:zoom(0.5);
self:maxwidth(256/0.5);
end;
OnCommand=function(self)
self:shadowlength(1);
end;
2011-03-17 01:47:30 -04:00
};
LoadFont("Common Normal") .. {
Name="TextArtist";
2013-07-05 22:17:42 -04:00
InitCommand=function(self)
self:y(18);
self:zoom(0.75);
self:maxwidth(256/0.75);
end;
OnCommand=function(self)
self:shadowlength(1);
self:skewx(-0.2);
end;
2011-03-17 01:47:30 -04:00
};
2010-12-22 11:13:25 -08:00
};