Revert "Some of default. Better break this up."
This reverts commit 8833ab5bc6.
This commit is contained in:
@@ -1,25 +1,14 @@
|
||||
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;
|
||||
};
|
||||
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);
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user