瀏覽代碼

PropertyBinding: Fix _getValue_direct(). (#22290)

Michael Herzog 4 年之前
父節點
當前提交
49dd5f1174
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/animation/PropertyBinding.js

+ 1 - 1
src/animation/PropertyBinding.js

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