Native referenceFiveMserver

APPLY_FORCE_TO_ENTITY

0xC1C0855A CFX
FUNCTION SIGNATURE
void APPLY_FORCE_TO_ENTITY(Entity entity, int forceType, float x, float y, float z, float offX, float offY, float offZ, int nComponent, BOOL bLocalForce, BOOL bLocalOffset, BOOL bScaleByMass, BOOL bPlayAudio, BOOL bScaleByTimeWarp);
Property Value
Native Name APPLY_FORCE_TO_ENTITY
Hash 0xC1C0855A
Return Type void
API Set server
Parameters entity (Entity), forceType (int), x (float), y (float), z (float), offX (float), offY (float), offZ (float), nComponent (int), bLocalForce (BOOL), bLocalOffset (BOOL), bScaleByMass (BOOL), bPlayAudio (BOOL), bScaleByTimeWarp (BOOL)

Description: ```cpp enum eApplyForceTypes { APPLY_TYPE_FORCE = 0, APPLY_TYPE_IMPULSE = 1, APPLY_TYPE_EXTERNAL_FORCE = 2, APPLY_TYPE_EXTERNAL_IMPULSE = 3, APPLY_TYPE_TORQUE = 4, APPLY_TYPE_ANGULAR_IMPULSE = 5 }


**This is the server-side RPC native equivalent of the client native [APPLY_FORCE_TO_ENTITY](?\_0xC5F68BE9613E2D18).**

### Parameters
- **`entity`** (`Entity`) — The entity handle
- **`forceType`** (`int`) — The force type
- **`x`** (`float`) — The x component of the force to apply
- **`y`** (`float`) — The y component of the force to apply
- **`z`** (`float`) — The z component of the force to apply
- **`offX`** (`float`) — Offset from center of entity (X)
- **`offY`** (`float`) — Offset from center of entity (Y)
- **`offZ`** (`float`) — Offset from center of entity (Z)
- **`nComponent`** (`int`) — Component of the entity to apply the force too. Only matters for breakable or articulated (ragdoll) physics. 0 means the root or parent component
- **`bLocalForce`** (`BOOL`) — Specifies whether the force vector passed in is in local or world coordinates. `true` means the force will get automatically transformed into world space before being applied
- **`bLocalOffset`** (`BOOL`) — Specifies whether the offset passed in is in local or world coordinates
- **`bScaleByMass`** (`BOOL`) — Specifies whether to scale the force by mass
- **`bPlayAudio`** (`BOOL`) — Specifies whether to play audio events related to the force being applied. The audio will depend on the entity type. Currently vehicles are the only entity types supported, and will play a suspension squeal depending on the magnitude of the force
- **`bScaleByTimeWarp`** (`BOOL`) — Specifies whether to scale the force by time warp. Default is `true`
Back to CFX