Browse Source

fixed a typo.

Nico Kruithof 14 năm trước cách đây
mục cha
commit
82a0bcfc26
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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;