I have the sprite starting at 0, 0 and would like to smoothly increase its size to 1.
Right now i have:
system > start of layout: sprite > set size to (0, 0)
logo > start fade
logo > enable effect "warp radial"
system > every tick: logo > set size to (self.width + 16 * 0.5, selfheight + 9 * 0.5)
I've tried many different things but the sprite either... doesn't stop growing or it snaps to the 1,1 size, which looks bad.
So how can i smoothly grow the sprite and have it stop at its original size?
Any help is greatly appreciated.