Update: CC - Snake FS - Entity Loaded (21g30t1e75.js) 8 bytes modified

beta.r3js.org
-=yb4f310 2018-03-23 13:05:49 +01:00
parent ac0610e7ab
commit 38f24821d6
1 changed files with 4 additions and 4 deletions

View File

@ -1087,10 +1087,10 @@ GameLib.CustomCode.prototype.advanceSnake = function(delta) {
case GameLib.CustomCode.OBJECT_TYPE_SNAKE_BODY :
if (body.orientation !== backup.orientation) {
body.orientation = backup.orientation;
body.flip = backup.flip;
backup.orientation = this.state.orientation;
backup.flip = this.state.flip;
//body.orientation = backup.orientation;
//body.flip = backup.flip;
//backup.orientation = this.state.orientation;
//backup.flip = this.state.flip;
this.createCorner(body, backup);
body.applyToMesh();
}