/**
!#en
Returns a copy of the position (x, y, z) of the node in its parent's coordinates.
You can pass a cc.Vec2 or cc.Vec3 as the argument to receive the return values.
!#zh
获取节点在父节点坐标系中的位置(x, y, z)。
你可以传一个 cc.Vec2 或者 cc.Vec3 作为参数来接收返回值。
@param out The return value to receive position
@example
```js
cc.log("Node Position: " + node.getPosition());
```
*/
getPosition(out?: Vec2|Vec3): Vec2;
/** !#en The position (x, y) of the node in its parent’s coordinates.
!#zh 节点在父节点坐标系中的位置(x, y)。 */
position: Vec3;
这两个按道理来说应该是一致的才对呀,求个解释