Explorar el Código

PropertyBinding: Fix _getValue_direct(). (#22290)

Michael Herzog hace 4 años
padre
commit
49dd5f1174
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/animation/PropertyBinding.js

+ 1 - 1
src/animation/PropertyBinding.js

@@ -261,7 +261,7 @@ class PropertyBinding {
 
 	_getValue_direct( buffer, offset ) {
 
-		buffer[ offset ] = this.node[ this.propertyName ];
+		buffer[ offset ] = this.targetObject[ this.propertyName ];
 
 	}