diff options
author | PouleyKetchoupp <pouleyketchoup@gmail.com> | 2020-04-12 11:27:29 +0200 |
---|---|---|
committer | PouleyKetchoupp <pouleyketchoup@gmail.com> | 2020-04-12 11:27:29 +0200 |
commit | 219c5712f0d69297db659253bc814652dd180465 (patch) | |
tree | 05abc3f553ccd5f1957f2787a7fa98524ef945ea /doc/classes | |
parent | 67f7ba2645cb06a4bcf781e274e9c253b91b68cb (diff) |
More details in Rigid Body add_force documentation
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/RigidBody3D.xml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/classes/RigidBody3D.xml b/doc/classes/RigidBody3D.xml index 829589f650..667bb2bbb8 100644 --- a/doc/classes/RigidBody3D.xml +++ b/doc/classes/RigidBody3D.xml @@ -28,7 +28,7 @@ <argument index="0" name="force" type="Vector3"> </argument> <description> - Adds a constant directional force without affecting rotation. + Adds a constant directional force (i.e. acceleration) without affecting rotation. This is equivalent to [code]add_force(force, Vector3(0,0,0))[/code]. </description> </method> @@ -40,7 +40,8 @@ <argument index="1" name="position" type="Vector3"> </argument> <description> - Adds a constant force (i.e. acceleration). + Adds a constant directional force (i.e. acceleration). + The position uses the rotation of the global coordinate system, but is centered at the object's origin. </description> </method> <method name="add_torque"> |