Hi
I have bunch of Walls moving down with correct speed position etc. and I cant's change it. Few of this walls needs to move also in side ways with randomly generated values. The best option for me in this situation will be Tween.
How can I use Tween only for one Axis?
I have found some info in internet about it but it's seems to now working: https://github.com/godotengine/godot/issues/8257
tween.interpolate_property(get_node("Node2D_to_move"), "transform/posX", 0, 100, 1, Tween.TRANS_LINEAR, Tween.EASE_IN_OUT)
My walls are moving down using WallPos.y += 512*delta
Of course i have tween.start()
and with normal values (for both axis) it's working correctly.
Best!