Is it possible to tween global_position.x
andglobal_position.y
separately?
I know I could do:
tween.interpolate_property(self, "global_position", position1, position2, 5, Tween.TRANS_LINEAR, Tween.TRANS_LINEAR)
But I would like to tween the x and y values separately.
Is it possible?