2011-05-12 16:54:51 -05:00
|
|
|
local t = Def.ActorFrame {
|
|
|
|
|
InitCommand=cmd(x,SCREEN_CENTER_X;y,SCREEN_CENTER_Y);
|
|
|
|
|
};
|
|
|
|
|
--
|
|
|
|
|
t[#t+1] = LoadActor("grid") .. {
|
|
|
|
|
InitCommand=cmd(zoomto,SCREEN_WIDTH,SCREEN_HEIGHT;customtexturerect,0,0,SCREEN_WIDTH/16,SCREEN_HEIGHT/16);
|
|
|
|
|
OnCommand=cmd(diffuse,color("0,0,0,0.125"));
|
|
|
|
|
};
|
|
|
|
|
t[#t+1] = LoadActor("grid") .. {
|
|
|
|
|
InitCommand=cmd(zoomto,SCREEN_WIDTH,SCREEN_HEIGHT;customtexturerect,0,0,SCREEN_WIDTH/32,SCREEN_HEIGHT/32);
|
|
|
|
|
OnCommand=cmd(diffuse,color("0,0,0,0.25"));
|
|
|
|
|
};
|
|
|
|
|
--
|
2011-05-11 14:34:02 -07:00
|
|
|
return t
|