Parcourir la source

fixed a typo.

Nico Kruithof il y a 14 ans
Parent
commit
82a0bcfc26
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      src/core/Vector3.js

+ 1 - 1
src/core/Vector3.js

@@ -112,7 +112,7 @@ THREE.Vector3.prototype = {
 
 		this.x *= v.x;
 		this.y *= v.y;
-		this.z *= v.y;
+		this.z *= v.z;
 
 		return this;