Calculate Impact Force
PureCalculateImpactForceCalculates the approximate impact force from a collision using impulse-momentum theorem.
Type: Pure (no side effects)
Category: Fortuna|Physics & Collision
Keywords: physics & collision
Inputs
| Name | Type | Default | Description |
|---|---|---|---|
| Mass | float | — | Mass parameter |
| Velocity | FVector | — | Velocity parameter |
| ImpactNormal | FVector | — | ImpactNormal parameter |
| DeltaTime | float | — | DeltaTime parameter |
Outputs
| Name | Type | Description |
|---|---|---|
| Force | FVector | Force output |
| ForceMagnitude | float | ForceMagnitude output |
Example Use Cases
Example 1
Determine if a fall is lethal based on impact force.
Example 2
Scale damage from vehicle collisions.