2
0
Эх сурвалжийг харах

PropertyBinding: Fix _getValue_direct(). (#22290)

Michael Herzog 4 жил өмнө
parent
commit
49dd5f1174

+ 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 ];
 
 	}