addForce: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Fix) |
Lou Montana (talk | contribs) m (Text replacement - "\[ *(https?:\/\/[^ = ]+) +([^= ]+) *\]" to "{{Link|$1|$2}}") |
||
Line 11: | Line 11: | ||
|descr= Applies impulse force to unit or given PhysX object at given position. | |descr= Applies impulse force to unit or given PhysX object at given position. | ||
{{Feature|informative|For more information see | {{Feature|informative|For more information see {{Link|http://docs.nvidia.com/gameworks/content/gameworkslibrary/physx/apireference/files/classPxRigidBody.html|NVIDIA docs}}.}} | ||
|s1= object [[addForce]] [force, position] | |s1= object [[addForce]] [force, position] | ||
Line 17: | Line 17: | ||
|p1= object: [[Object]] - PhysX object or {{GVI|arma3|2.04|size= 0.75}}{{Icon|localargument|24}} unit, in which case the unit must be local and will be [[setUnconscious|set unconscious]] | |p1= object: [[Object]] - PhysX object or {{GVI|arma3|2.04|size= 0.75}}{{Icon|localargument|24}} unit, in which case the unit must be local and will be [[setUnconscious|set unconscious]] | ||
|p2= force: [[Array]] - in format [x,y,z], force vector in '''world''' space. Force is in | |p2= force: [[Array]] - in format [x,y,z], force vector in '''world''' space. Force is in {{Link|https://docs.nvidia.com/gameworks/content/gameworkslibrary/physx/apireference/files/structPxForceMode.html|Newton}} | ||
|p3= position: [[Array]] - in format [x,y,z], in ''object''<nowiki/>'s [[Position#PositionRelative|relative position]] | |p3= position: [[Array]] - in format [x,y,z], in ''object''<nowiki/>'s [[Position#PositionRelative|relative position]] |
Revision as of 15:11, 28 April 2023
Description
- Description:
- Applies impulse force to unit or given PhysX object at given position.
- Groups:
- Object Manipulation
Syntax
- Syntax:
- object addForce [force, position]
- Parameters:
- object: Object - PhysX object or 2.04LALocal unit, in which case the unit must be local and will be set unconscious
- 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]:
- 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
- See also:
- addTorque awake isAwake vectorModelToWorld vectorModelToWorldVisual selectionPosition disableBrakes brakesDisabled
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