StaticBody2D¶
Inherits: PhysicsBody2D < CollisionObject2D < Node2D < CanvasItem < Node < Object
Physics body for 2D physics which is static or moves only by script. Useful for floor and walls.
Description¶
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:
Static transform change: 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.
Constant velocity: When constant_linear_velocity or 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.
Properties¶
|
||
|
||
Property Descriptions¶
float bounce
The body's bounciness. Values range from 0
(no bounce) to 1
(full bounciness).
Deprecated, use PhysicsMaterial.bounce instead via physics_material_override.
float constant_angular_velocity = 0.0
The body's constant angular velocity. This does not rotate the body, but affects colliding bodies, as if it were rotating.
Vector2 constant_linear_velocity = Vector2( 0, 0 )
The body's constant linear velocity. This does not move the body, but affects colliding bodies, as if it were moving.
float friction
The body's friction. Values range from 0
(no friction) to 1
(full friction).
Deprecated, use PhysicsMaterial.friction instead via physics_material_override.
PhysicsMaterial physics_material_override
void set_physics_material_override ( PhysicsMaterial value )
PhysicsMaterial get_physics_material_override ( )
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.