From 78ea140bb379e1364d22e8c1df675117ad0a07af Mon Sep 17 00:00:00 2001 From: Haoyu Qiu Date: Thu, 6 Oct 2022 15:08:16 +0800 Subject: [PATCH] Improve StaticBody description --- doc/classes/StaticBody.xml | 9 ++++++--- doc/classes/StaticBody2D.xml | 9 ++++++--- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/doc/classes/StaticBody.xml b/doc/classes/StaticBody.xml index c6a4fd08d70..9e24833f56a 100644 --- a/doc/classes/StaticBody.xml +++ b/doc/classes/StaticBody.xml @@ -1,11 +1,14 @@ - Static body for 3D physics. + Physics body for 3D physics which is static or moves only by script. Useful for floor and walls. - Static body for 3D physics. A static body is a simple body that is not intended to move. In contrast to [RigidBody], they don't consume any CPU resources as long as they don't move. - Additionally, a constant linear or angular velocity can be set for the static body, so even if it doesn't move, it affects other bodies as if it was moving (this is useful for simulating conveyor belts or conveyor wheels). + Static body for 3D physics. + A static body is a simple body that doesn't move under physics simulation, i.e. it can't be moved by external forces or contacts but its transformation can still be updated manually by the user. It is ideal for implementing objects in the environment, such as walls or platforms. In contrast to [RigidBody], it doesn't consume any CPU resources as long as they don't move. + They have extra functionalities to move and affect other bodies: + [b]Static transform change:[/b] Static bodies can be moved by animation or script. In this case, they are just teleported and don't affect other bodies on their path. + [b]Constant velocity:[/b] When [member constant_linear_velocity] or [member constant_angular_velocity] is set, static bodies don't move themselves but affect touching bodies as if they were moving. This is useful for simulating conveyor belts or conveyor wheels. https://godotengine.org/asset-library/asset/675 diff --git a/doc/classes/StaticBody2D.xml b/doc/classes/StaticBody2D.xml index c0d6e8b552c..cf4ae76e086 100644 --- a/doc/classes/StaticBody2D.xml +++ b/doc/classes/StaticBody2D.xml @@ -1,11 +1,14 @@ - Static body for 2D physics. + Physics body for 2D physics which is static or moves only by script. Useful for floor and walls. - Static body for 2D physics. A StaticBody2D is a body that is not intended to move. It is ideal for implementing objects in the environment, such as walls or platforms. - Additionally, a constant linear or angular velocity can be set for the static body, which will affect colliding bodies as if it were moving (for example, a conveyor belt). + Static body for 2D physics. + A static body is a simple body that doesn't move under physics simulation, i.e. it can't be moved by external forces or contacts but its transformation can still be updated manually by the user. It is ideal for implementing objects in the environment, such as walls or platforms. In contrast to [RigidBody2D], it doesn't consume any CPU resources as long as they don't move. + They have extra functionalities to move and affect other bodies: + [b]Static transform change:[/b] Static bodies can be moved by animation or script. In this case, they are just teleported and don't affect other bodies on their path. + [b]Constant velocity:[/b] When [member constant_linear_velocity] or [member constant_angular_velocity] is set, static bodies don't move themselves but affect touching bodies as if they were moving. This is useful for simulating conveyor belts or conveyor wheels.