2012-07-22 22:45:10 -07:00
|
|
|
local t = Def.ActorFrame {};
|
|
|
|
|
--
|
|
|
|
|
t[#t+1] = Def.ActorFrame {
|
2013-07-18 17:42:22 -04:00
|
|
|
InitCommand=cmd(Center);
|
2012-07-22 22:45:10 -07:00
|
|
|
--
|
|
|
|
|
Def.Quad {
|
2013-07-18 17:42:22 -04:00
|
|
|
InitCommand=cmd(zoomto,SCREEN_WIDTH,SCREEN_HEIGHT;diffuse,Color.Black;diffusealpha,1);
|
|
|
|
|
StartTransitioningCommand=cmd(smooth,0.2;diffusealpha,0);
|
2012-07-22 22:45:10 -07:00
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
--
|
|
|
|
|
return t
|