physics_particle_set_damping

Set the damping value for all particles in a physics simulation.

Syntax:

physics_particle_set_damping(damping)


Argument Description
damping The linear damping to be applied to the particle fixture.


Returns: N/A


Description

With this function you can set the linear damping of particles in the simulation. Damping is used to reduce the physics simulation velocity of instances over time, much like air resistance in the real world. This function is global in scope, in that it will change the damping not just for new particles created after the change, but also for those already present in the simulation.


Example:

physics_particle_set_radius(15);
physics_particle_set_density(0.5);
physics_particle_set_damping(1);
physics_particle_set_gravity_scale(1);

The above code will set the base properties for all particles in the simulation.


Back: Soft Body Particles
Next: physics_particle_set_gravity_scale
© Copyright YoYo Games Ltd. 2018 All Rights Reserved