The Dink Network

Reply to Re: growing sprites from small

If you don't have an account, just leave the password field blank.
Username:
Password:
Subject:
Antispam: Enter Dink Smallwood's last name (surname) below.
Formatting: :) :( ;( :P ;) :D >( : :s :O evil cat blood
Bold font Italic font hyperlink Code tags
Message:
 
 
April 22nd 2003, 08:52 PM
burntree.gif
Striker
Noble She/Her United States
Daniel, there are clowns. 
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.