Reply to Re: growing sprites from small
If you don't have an account, just leave the password field blank.
That's because the shrink/grow brain kills the sprite one it reaches the size you set it to.
If you want something to grow to a size and keep it that way, you have to "fake it", like this:
sp_size(&felm, 5);
wait(50);
sp_size(&felm, 20);
wait(50);
sp_size(&felm, 40);
wait(50);
sp_size(&felm, 60);
wait(50);
sp_size(&felm, 80);
wait(50);
... you get the idea. Tweak it for speed how smoothly you want it to grow.
If you want something to grow to a size and keep it that way, you have to "fake it", like this:
sp_size(&felm, 5);
wait(50);
sp_size(&felm, 20);
wait(50);
sp_size(&felm, 40);
wait(50);
sp_size(&felm, 60);
wait(50);
sp_size(&felm, 80);
wait(50);
... you get the idea. Tweak it for speed how smoothly you want it to grow.