diff --git a/8a0m30eevi.js b/8a0m30eevi.js index 376c3a7..1b095ff 100644 --- a/8a0m30eevi.js +++ b/8a0m30eevi.js @@ -3,7 +3,6 @@ if (!this.entityLoaded) { } if (!this.initialized) { - this.mouseIsDown = false; //gets set from MouseDown this.mouse = this.entityLoaded.mouse; this.raycaster = this.entityLoaded.raycaster; this.camera = this.entityLoaded.camera; @@ -11,7 +10,6 @@ if (!this.initialized) { this.cursor = this.entityLoaded.cursor; this.thrower = this.entityLoaded.thrower; this.throwerParticleEngine = this.entityLoaded.throwerParticleEngine; - this.toBlack = new THREE.Color(0.05, 0.05, 0.05); this.initialized = true; } @@ -71,33 +69,6 @@ this.scene.meshes.map( ); */ -var intersects = this.raycaster.getIntersectedObjects(this.scene.meshes); -intersects.map( - function(intersect) { - - var mesh = intersect.mesh; - - if ( - mesh.id !== 'ykfzwmaw9j' && //crosshair - mesh.id !== 't3uije6lwm' && //floor - mesh.id !== 'x4rhvbj8cn' && //flamethrower - mesh.id !== 'xztyfgwq7i' && //skybox - mesh.name.indexOf('Stone') === -1 //stones - ) { - - if (this.mouseIsDown) { - if (mesh.instance.material instanceof Array) { - mesh.instance.material.map( - function(material) { - material.color.sub(this.toBlack); - } - ); - } else { - mesh.instance.material.color.sub(this.toBlack); - } - } - } - }.bind(this) -); + //@ sourceURL=mouseMove.js \ No newline at end of file