Some of default. Better break this up.

This commit is contained in:
Jason Felds
2013-07-04 13:09:03 -04:00
parent 986d510a88
commit 8833ab5bc6
59 changed files with 1548 additions and 970 deletions
@@ -1,14 +1,25 @@
return Def.ActorFrame {
LoadFont("Common Normal") .. {
Text=string.format("%s %s", ProductFamily(), ProductVersion());
AltText="StepMania";
InitCommand=cmd(zoom,0.675);
OnCommand=cmd(horizalign,right;shadowlength,1);
};
LoadFont("Common Normal") .. {
Text=string.format("%s", VersionDate());
AltText="Unknown Version";
InitCommand=cmd(y,16;zoom,0.5);
OnCommand=cmd(horizalign,right;shadowlength,1);
};
return Def.ActorFrame {
LoadFont("Common Normal") .. {
Text=string.format("%s %s", ProductFamily(), ProductVersion());
AltText="StepMania";
InitCommand=function(self)
self:zoom(0.675);
end;
OnCommand=function(self)
self:horizalign(right);
self:shadowlength(1);
end;
};
LoadFont("Common Normal") .. {
Text=string.format("%s", VersionDate());
AltText="Unknown Version";
InitCommand=function(self)
self:y(16);
self:zoom(0.5);
end;
OnCommand=function(self)
self:horizalign(right);
self:shadowlength(1);
end;
};
};