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

beta.r3js.org
-=yb4f310 2018-03-21 10:30:03 +01:00
parent 68b77ecc3b
commit 360ddedce7
1 changed files with 2 additions and 2 deletions

View File

@ -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
)
);