Fallback handled. Yes, I tested this.

This commit is contained in:
Jason Felds
2013-07-03 20:08:34 -04:00
parent a5ef44a838
commit 986d510a88
29 changed files with 1314 additions and 793 deletions
+10 -2
View File
@@ -1,8 +1,16 @@
return Def.ActorFrame {
Def.Quad {
InitCommand=cmd(zoomto,10,10;y,-5;skewx,-1);
InitCommand=function(self)
self:zoomto(10, 10);
self:y(-5);
self:skewx(-1);
end;
};
Def.Quad {
InitCommand=cmd(zoomto,10,10;y,5;skewx,1);
InitCommand=function(self)
self:zoomto(10, 10);
self:y(5);
self:skewx(1);
end;
};
}