part_system_drawit

Draws the particles in a given system.

语法:

part_system_drawit(ind);


参数 描述
ind The index of the particle system to draw the particles of.


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


描述

With this function you can force a particle system to draw all the current particles on the screen. If part_system_automatic_draw is switched off then this function will show the particles when used in the draw event of an instance, or it can be used when the drawing target is set to a surface (using surface_set_target) to draw the particles in the system to that surface.


例如:

if surface_exists(surf)
   {
   surface_set_target(surf);
   part_system_drawit();
   surface_reset_target();
   }

The above code checks to see if the surface indexed in the variable "surf" exists, and if it does it then sets the drawing target to the surface, draws the particles and then resets the drawing target so all normal drawing appears on the screen once more.


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