Explorar el Código

OrthographicTrackballControls: set changed flag on reset.

Max Smolens hace 10 años
padre
commit
a852ae6958
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      examples/js/controls/OrthographicTrackballControls.js

+ 1 - 1
examples/js/controls/OrthographicTrackballControls.js

@@ -366,7 +366,7 @@ THREE.OrthographicTrackballControls = function ( object, domElement ) {
 
 		_this.dispatchEvent( changeEvent );
 
-		_changed = false;
+		_changed = true;
 
 	};