GUI Animation Delay

I’m trying to get a node to increase in size decrease in size then fade out. However, the node only does one of the changes in size at a time even though I’ve set a delay between the two.


How would I fix this?

Please avoid uploading screenshots of text.
It makes it harder to read, and above all it cannot be easily searched etc.

Currently, you are immediately replacing first animation with the second one.

You need to do the animations one after another.
You do that by using the animation done callback. The complete_function in the documentation

1 Like