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

beta.r3js.org
-=yb4f310 2018-03-21 10:33:19 +01:00
parent f9dec9faa8
commit 73cdd18980
1 changed files with 2 additions and 2 deletions

View File

@ -310,8 +310,8 @@ GameLib.CustomCode.SnakeBody.LastZ = 0;
GameLib.CustomCode.SnakeBody.prototype.applyToMesh = function() {
this.mesh.position.x = this.position.x + GameLib.CustomCode.GRID_OFFSET_X;
this.mesh.position.y = this.position.y + GameLib.CustomCode.GRID_OFFSET_Y;
this.mesh.position.x = (this.position.x * GameLib.CustomCode.BODY_SCALE_X) + GameLib.CustomCode.GRID_OFFSET_X;
this.mesh.position.y = (this.position.y * GameLib.CustomCode.BODY_SCALE_Y) + GameLib.CustomCode.GRID_OFFSET_Y;
//if ((this.mesh.rotation.z - (this.orientation * Math.PI / 2)) > Math.PI) {
// this.mesh.rotation.z -= Math.PI;