Răsfoiți Sursa

change error to warning and reword a bit (#26386)

hybridherbst 2 ani în urmă
părinte
comite
b08acb89c5
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      src/animation/PropertyBinding.js

+ 1 - 1
src/animation/PropertyBinding.js

@@ -436,7 +436,7 @@ class PropertyBinding {
 		// ensure there is a value node
 		if ( ! targetObject ) {
 
-			console.error( 'THREE.PropertyBinding: Trying to update node for track: ' + this.path + ' but it wasn\'t found.' );
+			console.warn( 'THREE.PropertyBinding: No target node found for track: ' + this.path + '.' );
 			return;
 
 		}