Browse Source

PropertyBinding: Fix _getValue_direct(). (#22290)

Michael Herzog 4 năm trước cách đây
mục cha
commit
49dd5f1174
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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 ];
 
 	}