Please, explain why doesn't change global position with de tween

If global position doesn’t change with de tween property “global_position” what position is changing?

I can only assume you’re talking about the challenge slide. What Bram explains is that if you are setting up multiple tweens in sequence like the challenge asks for, you don’t set up the second tween as though the first has already executed. This is because once a tween is set, it can’t be changed, so further changes to a variable’s value don’t affect it anymore. Since both tweens are set at the same time, you are using global_position's original value and returning to global_position, not global_position - destination. Watch the solution and this will make more sense.

1 Like

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.

Privacy & Terms