2017-09-13 04:42:36 +08:00
<?xml version="1.0" encoding="UTF-8" ?>
2020-02-01 09:03:48 +08:00
<class name= "StaticBody2D" inherits= "PhysicsBody2D" version= "4.0" >
2017-09-13 04:42:36 +08:00
<brief_description >
2019-06-22 07:04:47 +08:00
Static body for 2D physics.
2017-09-13 04:42:36 +08:00
</brief_description>
<description >
2019-06-22 07:04:47 +08:00
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.
2017-09-24 00:28:16 +08:00
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).
2017-09-13 04:42:36 +08:00
</description>
<tutorials >
</tutorials>
<methods >
</methods>
<members >
2019-06-29 18:38:01 +08:00
<member name= "constant_angular_velocity" type= "float" setter= "set_constant_angular_velocity" getter= "get_constant_angular_velocity" default= "0.0" >
2019-06-22 07:04:47 +08:00
The body's constant angular velocity. This does not rotate the body, but affects colliding bodies, as if it were rotating.
2017-09-13 04:42:36 +08:00
</member>
2019-06-29 18:38:01 +08:00
<member name= "constant_linear_velocity" type= "Vector2" setter= "set_constant_linear_velocity" getter= "get_constant_linear_velocity" default= "Vector2( 0, 0 )" >
2019-06-22 07:04:47 +08:00
The body's constant linear velocity. This does not move the body, but affects colliding bodies, as if it were moving.
2017-09-13 04:42:36 +08:00
</member>
2019-07-16 02:42:47 +08:00
<member name= "physics_material_override" type= "PhysicsMaterial" setter= "set_physics_material_override" getter= "get_physics_material_override" >
2019-10-07 02:54:58 +08:00
The physics material override for the body.
If a material is assigned to this property, it will be used instead of any other physics material, such as an inherited one.
2018-07-26 17:56:21 +08:00
</member>
2017-09-13 04:42:36 +08:00
</members>
<constants >
</constants>
</class>