| Parameter | Description |
|---|---|
| input | The fluid and force configuration. See BuoyancyInput. |
| deltaTime | The simulation step duration in seconds. Used to clamp damping so it cannot overshoot in a single step. |
Apply buoyancy, flow and damping forces to this shape based on how it is submerged in a fluid plane. Unlike PhysicsBody.ApplyBuoyancy, only this shape contributes to its owning body's buoyancy - sibling shapes on the same body are left alone. Forces and torques are continuous (not impulses), so this is expected to be called every simulation step. The shape's owning body must be PhysicsBody.BodyType.Dynamic; otherwise a warning is logged and the call is a no-op.
| Parameter | Description |
|---|---|
| input | The fluid and force configuration. See BuoyancyInput. |
| shapes | The shapes that buoyancy should be applied to. |
| deltaTime | The simulation step duration in seconds. Used to clamp damping so it cannot overshoot in a single step. |
Apply buoyancy, flow and damping forces to every shape in based on how each is submerged in a fluid plane. The same BuoyancyInput is applied to all listed shapes. Each shape's owning body must be PhysicsBody.BodyType.Dynamic; shapes on non-dynamic or invalid bodies log a warning and are skipped. Per-body sleep/wake decisions and damping clamps aggregate only across the listed shapes for each body, so siblings not in contribute nothing - this is the difference from PhysicsBody.ApplyBuoyancy, which always processes every shape on each listed body. Forces and torques are continuous (not impulses), so this is expected to be called every simulation step.