summaryrefslogtreecommitdiffstats
path: root/doc/classes/RigidBody2D.xml
diff options
context:
space:
mode:
authorPaul Joannon <437025+paulloz@users.noreply.github.com>2021-03-18 12:04:28 +0100
committerPaul Joannon <hello@pauljoannon.com>2021-03-19 13:21:20 +0100
commit8455e901f39c90d581aeb8913640219fb8754e77 (patch)
tree9b4c919e2b8b2637ca7b914f74aaea73e198fa75 /doc/classes/RigidBody2D.xml
parent3b380f4cdcfd54ebb1f4b32654618502571a43df (diff)
downloadredot-engine-8455e901f39c90d581aeb8913640219fb8754e77.tar.gz
class reference proofreading
Diffstat (limited to 'doc/classes/RigidBody2D.xml')
-rw-r--r--doc/classes/RigidBody2D.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/RigidBody2D.xml b/doc/classes/RigidBody2D.xml
index 6b27c77f26..ed375a8b1e 100644
--- a/doc/classes/RigidBody2D.xml
+++ b/doc/classes/RigidBody2D.xml
@@ -4,7 +4,7 @@
A body that is controlled by the 2D physics engine.
</brief_description>
<description>
- This node implements simulated 2D physics. You do not control a RigidBody2D directly. Instead you apply forces to it (gravity, impulses, etc.) and the physics simulation calculates the resulting movement based on its mass, friction, and other physical properties.
+ This node implements simulated 2D physics. You do not control a RigidBody2D directly. Instead, you apply forces to it (gravity, impulses, etc.) and the physics simulation calculates the resulting movement based on its mass, friction, and other physical properties.
A RigidBody2D has 4 behavior [member mode]s: Rigid, Static, Character, and Kinematic.
[b]Note:[/b] You should not change a RigidBody2D's [code]position[/code] or [code]linear_velocity[/code] every frame or even very often. If you need to directly affect the body's state, use [method _integrate_forces], which allows you to directly access the physics state.
Please also keep in mind that physics bodies manage their own transform which overwrites the ones you set. So any direct or indirect transformation (including scaling of the node or its parent) will be visible in the editor only, and immediately reset at runtime.