Some of default. Better break this up.

This commit is contained in:
Jason Felds
2013-07-04 13:09:03 -04:00
parent 986d510a88
commit 8833ab5bc6
59 changed files with 1548 additions and 970 deletions
@@ -1,10 +1,17 @@
local t = Def.ActorFrame {};
t[#t+1] = Def.ActorFrame {
InitCommand=cmd(Center);
InitCommand=function(self)
self:Center();
end;
Def.Quad {
InitCommand=cmd(scaletoclipped,SCREEN_WIDTH,SCREEN_HEIGHT);
OnCommand=cmd(diffuse,color("#00bfe8");diffusetopedge,color("#009ad5"));
InitCommand=function(self)
self:scaletoclipped(SCREEN_WIDTH, SCREEN_HEIGHT);
end;
OnCommand=function(self)
self:diffuse(color("#00bfe8"));
self:diffusetopedge(color("#009ad5"));
end;
};
};