I'm working on a VR game. When the player grabs an object, I'm using a Tween to move the object from it's current location/orientation into the player's hand. I'm using follow_property like this:
$Tween.follow_property(item, "transform",
item.transform,
hand, "global_transform",
5,
Tween.TRANS_QUART, Tween.EASE_IN_OUT)
This almost works, the item ends up in the right place, but it gets distorted as it moves. I was going to try following_property with item, "translation", but there is no "global_translation" for it to follow. Is lerp () a better option for something like this? Any suggestions or pointers to tutorials would be great.