17 lines
514 B
Lua
17 lines
514 B
Lua
return Def.ActorFrame {
|
|
LoadActor(THEME:GetPathG("ScreenTitleMenu","PreferenceFrame")) .. {
|
|
OnCommand=cmd(diffuse,color("#f7941d");diffusetopedge,color("#fff200");diffusealpha,0.25);
|
|
};
|
|
LoadFont("Common Normal") .. {
|
|
Text=ProductID();
|
|
AltText="";
|
|
InitCommand=cmd(y,-5;zoom,0.6);
|
|
OnCommand=cmd(shadowlength,1);
|
|
};
|
|
LoadFont("Common Normal") .. {
|
|
Text=ProductVersion() .. " (".. VersionDate() ..")";
|
|
AltText="";
|
|
InitCommand=cmd(y,8;zoom,0.45);
|
|
OnCommand=cmd(shadowlength,1;skewx,-0.125);
|
|
};
|
|
}; |