From 360ddedce793994e50cda7addb424b7cb4e05e54 Mon Sep 17 00:00:00 2001 From: -=yb4f310 Date: Wed, 21 Mar 2018 10:30:03 +0100 Subject: [PATCH] Update: CC - Snake FS - Entity Loaded (21g30t1e75.js) 72 bytes modified --- 21g30t1e75.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/21g30t1e75.js b/21g30t1e75.js index 165edf5..9f652e4 100644 --- a/21g30t1e75.js +++ b/21g30t1e75.js @@ -111,8 +111,8 @@ GameLib.CustomCode.prototype.visualizeGrid = function (color) { function(y, yIndex) { this.starsGeometry.vertices.push( new THREE.Vector3( - xIndex + GameLib.CustomCode.GRID_OFFSET_X, - yIndex + GameLib.CustomCode.GRID_OFFSET_Y, + (xIndex + GameLib.CustomCode.GRID_OFFSET_X) * GameLib.CustomCode.BODY_SCALE_X, + (yIndex + GameLib.CustomCode.GRID_OFFSET_Y) * GameLib.CustomCode.BODY_SCALE_Y, 5 ) );