physics_particle_group_get_inertia

With this function you can retrieve the inertia of an entire group of particles. The group value is that which was returned when you created the group of particles using the function physics_particle_group_end(), and the function will return a value which is the combined value of the currently set flags.

 

Syntax:

physics_particle_group_get_inertia(group)

ArgumentTypeDescription
groupPhysics Particle Group IDThe particle group to get.

 

Returns:

Real

 

Example:

i = physics_particle_group_get_inertia(group1);

The above code will get the inertia of the particle group indexed in the variable "group1" and store it in a variable.