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