2011-03-17 01:47:30 -04:00
|
|
|
local gc = Var("GameCommand");
|
|
|
|
|
|
|
|
|
|
return Def.ActorFrame {
|
|
|
|
|
Def.Quad{
|
2013-07-18 18:02:01 -04:00
|
|
|
InitCommand=cmd(zoomto,256,26;fadeleft,0.45;faderight,0.45);
|
|
|
|
|
OnCommand=cmd(diffuseshift;effectcolor1,color("0,0,0,0.5");effectcolor2,color("0,0,0,0.5"));
|
|
|
|
|
GainFocusCommand=cmd(stoptweening;decelerate,0.1;zoomto,256,26;diffusealpha,1);
|
|
|
|
|
LoseFocusCommand=cmd(stoptweening;accelerate,0.1;zoomto,SCREEN_WIDTH,0;diffusealpha,0);
|
2011-03-17 01:47:30 -04:00
|
|
|
};
|
|
|
|
|
LoadFont("Common Normal") .. {
|
2011-08-01 17:03:12 -05:00
|
|
|
Text=THEME:GetString("ScreenTitleMenu",gc:GetText());
|
2013-07-18 18:02:01 -04:00
|
|
|
OnCommand=cmd(shadowlength,1);
|
|
|
|
|
GainFocusCommand=cmd(stoptweening;linear,0.1;zoom,1;diffuse,color("1,1,1,1"));
|
|
|
|
|
LoseFocusCommand=cmd(stoptweening;linear,0.1;zoom,0.75;diffuse,color("0.5,0.5,0.5,1"));
|
2011-03-17 01:47:30 -04:00
|
|
|
};
|
2010-01-26 21:00:30 -06:00
|
|
|
};
|