TitleScreen tweaks.

This commit is contained in:
Jonathan Payne
2013-01-05 23:21:32 -08:00
parent 4c836c48d6
commit d915050656
11 changed files with 97 additions and 103 deletions
@@ -1,17 +1,14 @@
return Def.ActorFrame {
LoadActor(THEME:GetPathG("ScreenTitleMenu","PreferenceFrame")) .. {
OnCommand=cmd(diffuse,color("#f7941d");diffusetopedge,color("#fff200");diffusealpha,0.25);
};
LoadFont("Common Normal") .. {
Text=ProductFamily();
Text=string.format("%s %s", ProductFamily(), ProductVersion());
AltText="StepMania";
InitCommand=cmd(y,-5;zoom,0.6);
OnCommand=cmd(shadowlength,1);
InitCommand=cmd(zoom,0.675);
OnCommand=cmd(horizalign,right;shadowlength,1);
};
LoadFont("Common Normal") .. {
Text=ProductVersion() .. " (".. VersionDate() ..")";
AltText="";
InitCommand=cmd(y,8;zoom,0.45);
OnCommand=cmd(shadowlength,1;skewx,-0.125);
Text=string.format("%s", VersionDate());
AltText="Unknown Version";
InitCommand=cmd(y,16;zoom,0.5);
OnCommand=cmd(horizalign,right;shadowlength,1);
};
};