addForce: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) (Add units) |
No edit summary |
||
Line 10: | Line 10: | ||
|gr1= Object Manipulation | |gr1= Object Manipulation | ||
|descr= Applies impulse force to given object at given position. | |descr= Applies impulse force to given PhysX object at given position. | ||
{{Feature|informative|Since {{arma3}} v2.04 | {{Feature|informative|Since {{arma3}} v2.04 the command works on units as well: | ||
* the unit will be [[setUnconscious|set unconscious]] | * the unit will be [[setUnconscious|set unconscious]] and will enter the ragdoll state | ||
* the unit has to be [[Multiplayer Scripting#Locality|local]] | * the unit has to be [[Multiplayer Scripting#Locality|local]] | ||
}} | }} |
Revision as of 12:49, 3 November 2021
Description
- Description:
- Applies impulse force to given PhysX object at given position.
- Groups:
- Object Manipulation
Syntax
- Syntax:
- object addForce [force, position]
- Parameters:
- object: Object - PhysX object or unit
- force: Array - in format [x,y,z], force vector in world space. Force is in Newton
- position: Array - in format [x,y,z], in object's relative position
- Return Value:
- Nothing
Examples
- Example 1:
- Apply force [0,1000,0] defined in world space (not factoring object actual positioning) to object position [1,0,0]:
_object addForce [[0,1000,0], [1,0,0]];
- Example 2:
- Apply force [0,1000,0] defined in model space (relative to object) to object position [1,0,0]:
_object addForce [_object vectorModelToWorld [0,1000,0], [1,0,0]];
- Example 3:
- Can be used on units since Arma 3 v2.04:
if (local bob) then { [] spawn { bob addForce [bob vectorModelToWorld [0,-200,0], bob selectionPosition "rightfoot"]; sleep 5; bob setUnconscious false; }; };
Additional Information
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note