Bubbles will float up from the river and burst at the surface.
A Bubble is a single sprite with 2 animations. (Float and Burst) save the images below.
You should have a sprite with 2 animations
These are the properties of the Burst Animation
Add the Tween Behaviour to the Bubble
Tween - Fills in the steps inbeTWEEN
In simple terms, Tween helps you smoothly animate things like:
Moving an object from one position to another.
Changing the size of an object (making it grow or shrink).
Fading an object in or out (changing its transparency).
For example, if you want a character to slide from the left side of the screen to the right smoothly, Tween will handle the motion, gradually moving the character rather than teleporting it instantly. You just specify the start, end, and duration, and Tween does the rest!
Spawn, Float and Burst those Bubbles!