Files
Webklar.com/node_modules/@dimforge/rapier3d-compat/dynamics/coefficient_combine_rule.d.ts
Basilosaurusrex f027651f9b main repo
2025-11-24 18:09:40 +01:00

14 lines
300 B
TypeScript

/**
* A rule applied to combine coefficients.
*
* Use this when configuring the `ColliderDesc` to specify
* how friction and restitution coefficient should be combined
* in a contact.
*/
export declare enum CoefficientCombineRule {
Average = 0,
Min = 1,
Multiply = 2,
Max = 3
}