Browse Source

Object3D: Setting matrixWorldNeedsUpdate to false by default. Fixes #4506.

Mr.doob 11 years ago
parent
commit
797916e050
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/core/Object3D.js

+ 1 - 1
src/core/Object3D.js

@@ -35,7 +35,7 @@ THREE.Object3D = function () {
 	this.matrixWorld = new THREE.Matrix4();
 	this.matrixWorld = new THREE.Matrix4();
 
 
 	this.matrixAutoUpdate = true;
 	this.matrixAutoUpdate = true;
-	this.matrixWorldNeedsUpdate = true;
+	this.matrixWorldNeedsUpdate = false;
 
 
 	this.visible = true;
 	this.visible = true;