2011-03-17 01:47:30 -04:00
|
|
|
local t = Def.ActorFrame {};
|
|
|
|
|
|
|
|
|
|
t[#t+1] = Def.ActorFrame {
|
2013-07-04 13:09:03 -04:00
|
|
|
InitCommand=function(self)
|
|
|
|
|
self:Center();
|
|
|
|
|
end;
|
2011-03-17 01:47:30 -04:00
|
|
|
Def.Quad {
|
2013-07-04 13:09:03 -04:00
|
|
|
InitCommand=function(self)
|
|
|
|
|
self:scaletoclipped(SCREEN_WIDTH, SCREEN_HEIGHT);
|
|
|
|
|
end;
|
|
|
|
|
OnCommand=function(self)
|
|
|
|
|
self:diffuse(color("#00bfe8"));
|
|
|
|
|
self:diffusetopedge(color("#009ad5"));
|
|
|
|
|
end;
|
2011-03-17 01:47:30 -04:00
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2010-01-26 21:00:30 -06:00
|
|
|
return t
|