Appearance
sp_editor_num
Prototypeint sp_editor_num(int active_sprite)
sp_editor_num()
returns the editor sprite number of active_sprite
. This editor sprite number is only used in the editor_type(), editor_seq(), editor_frame(), and sp() commands.
If the active_sprite
does not have an editor sprite number (such as for sprites created with create_sprite()), it will return 0.
c
// kill a sprite so it never comes back
int &hold = sp_editor_num(¤t_sprite);
if (&hold != 0)
editor_type(&hold, 1);