2011-03-17 01:47:30 -04:00
|
|
|
local t = Def.ActorFrame {};
|
|
|
|
|
t[#t+1] = Def.ActorFrame {
|
2013-07-01 21:30:10 -04:00
|
|
|
InitCommand=function(self)
|
|
|
|
|
self:y(-64);
|
|
|
|
|
end;
|
2011-03-17 01:47:30 -04:00
|
|
|
Def.Quad {
|
2013-07-01 21:30:10 -04:00
|
|
|
InitCommand=function(self)
|
|
|
|
|
self:vertalign(top);
|
|
|
|
|
self:zoomto(SCREEN_WIDTH - 32, 2);
|
|
|
|
|
end;
|
|
|
|
|
OnCommand=function(self)
|
|
|
|
|
self:diffusealpha(0.5);
|
|
|
|
|
end;
|
2011-03-17 01:47:30 -04:00
|
|
|
};
|
|
|
|
|
};
|
2011-01-21 14:24:08 -08:00
|
|
|
return t
|