part_type_destroy

Destroys a given particle type.

语法:

part_type_destroy(ind);


参数 描述
ind The index of the particle type to destroy.


返回: N/A(无返回值)


描述

With this function you can remove the specified particle type from the game. When you use this function, all particles of the given type will disappear from the room and the particle itself is removed form memory, so this function should be used only when you no longer need the particle.


例如:

if part_particles_count(smoke_sys) = 0
   {
   part_type_destroy(smoke_part);
   part_system_destroy(smoke_sys);
   instance_destroy();
   }
else alarm[0] = 1;

The above code checks a particle system to see if any particles are currently visible in the room and if not, the particles, the system and the instance are destroyed.


上一页: Particle Types
下一页: part_type_clear
© Copyright YoYo Games Ltd. 2018 All Rights Reserved