addForce: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (Text replacement - "\[ *(https?:\/\/[^ = ]+) +([^= ]+) *\]" to "{{Link|$1|$2}}")
 
(25 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Command|Comments=
{{RV|type=command
____________________________________________________________________________________________
|arma3 |= Game
|1.72|Game Version=
|arg= global |Multiplayer Arguments=
|eff= global |Multiplayer Effects=


|gr1= Object Manipulation |GROUP1=
|game1= arma3
|version1= 1.72
 
|arg= global
 
|eff= global
 
|gr1= Object Manipulation
 
|descr= Applies impulse force to unit or given PhysX object at given position.
{{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]
 
|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 {{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]]
 
|r1= [[Nothing]]


____________________________________________________________________________________________
| Applies force to given object at given position. Force is defined as vector [x, y, z] in world space, position is vector [x, y, z] in model space. If you need to define force in model space, use [[vectorModelToWorld]] or [[vectorModelToWorldVisual]] commands first. The force applied as impulse. For more information see [http://docs.nvidia.com/gameworks/content/gameworkslibrary/physx/apireference/files/classPxRigidBody.html#a22b0a1ef0b6c5656a6063c5c38f5679c NVIDIA docs]|DESCRIPTION=
____________________________________________________________________________________________
| object '''addForce''' [force, position] |SYNTAX=
|p1= object: [[Object]] - PhysX object |PARAMETER1=
|p2= [force, position]: [[Array]] |PARAMETER2=
|p3= force: [[Array]] - force vector (in world space) in format [x,y,z]|PARAMETER3=
|p4= position: [[Array]] - model [[PositionRelative]] to which force is applied in format [x,y,z] |PARAMETER4=
|p5=  |PARAMETER5=
|p6=  |PARAMETER6=
| [[Nothing]] |RETURNVALUE=
|x1= Apply force [0,1000,0] defined in world space (not factoring object actual positioning) to object position [1,0,0]:
|x1= Apply force [0,1000,0] defined in world space (not factoring object actual positioning) to object position [1,0,0]:
<code>_object [[addForce]] [[0,1000,0],[1,0,0]];</code>|EXAMPLE1=
<sqf>_object addForce [[0,1000,0], [1,0,0]];</sqf>
 
|x2= Apply force [0,1000,0] defined in model space (relative to object) to object position [1,0,0]:
|x2= Apply force [0,1000,0] defined in model space (relative to object) to object position [1,0,0]:
<code>_object [[addForce]] [_object [[vectorModelToWorld]] [0,1000,0],[1,0,0]];</code>|EXAMPLE2=
<sqf>_object addForce [_object vectorModelToWorld [0,1000,0], [1,0,0]];</sqf>
|[[addTorque]], [[vectorModelToWorld]], [[vectorModelToWorldVisual]] |SEEALSO=
}}


<dl class='command_description'>
|x3= Can be used on units since {{arma3}} v2.04:
<!-- BEGIN Note Section -->
<sqf>
<!-- For example:
if (local bob) then
<dd class='notedate'>Posted on Month Day, Year - Time (UTC)</dd>
{
<dt class='note'>'''[[User:User Name|User Name]]'''</dt>
[] spawn
<dd class='note'>This is an example note. It is true and verifiable, and contains a little code snippet.
{
<code>[[if]] ([[_this]] == anExample) [[then]] { [[hint]] Leave it here for others to read; };</code></dd>
bob addForce [bob vectorModelToWorld [0,-200,0], bob selectionPosition "rightfoot"];
-->
sleep 5;
<!-- END Note Section -->
bob setUnconscious false;
</dl>
};
};
</sqf>


<h3 style='display:none'>Bottom Section</h3>
|seealso= [[addTorque]] [[awake]] [[isAwake]] [[vectorModelToWorld]] [[vectorModelToWorldVisual]] [[selectionPosition]] [[disableBrakes]] [[brakesDisabled]]
<!-- Appropriate categories go here -->
}}
 
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]

Latest revision as of 16:11, 28 April 2023

Hover & click on the images for description

Description

Description:
Applies impulse force to unit or given PhysX object at given position.
For more information see NVIDIA docs.
Groups:
Object Manipulation

Syntax

Syntax:
object addForce [force, position]
Parameters:
object: Object - PhysX object or Arma 3 logo black.png2.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]:
_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

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