Part_system_draw_order - hpgDesigns/hpgdesigns-dev.io GitHub Wiki

Description

Sets the order in which the given particle system will render particles, to either oldest to newest or newest to oldest.

Parameters

Parameter Data Type Description
ind integer index of the particle system
oldtonew boolean whether or not particles should be drawn in the order of oldest to newest

Return Values

void: This function does not return anything.

Example Call

// demonstrates setting a particle system to draw the newer particles first
part_system_draw_order(sys, false);

NOTOC