RigidBody2D
继承: PhysicsBody2D
< CollisionObject2D
< Node2D
< CanvasItem
< Node
< Object
派生: PhysicalBone2D
A 2D physics body that is moved by a physics simulation.
描述
RigidBody2D implements full 2D physics. It cannot be controlled directly, instead, you must apply forces to it (gravity, impulses, etc.), and the physics simulation will calculate the resulting movement, rotation, react to collisions, and affect other physics bodies in its path.
The body's behavior can be adjusted via lock_rotation
, freeze
, and freeze_mode
. By changing various properties of the object, such as mass
, you can control how the physics simulation acts on it.
A rigid body will always maintain its shape and size, even when forces are applied to it. It is useful for objects that can be interacted with in an environment, such as a tree that can be knocked over or a stack of crates that can be pushed around.
If you need to override the default physics behavior, you can write a custom force integration function. See custom_integrator
.
Note: Changing the 2D transform or linear_velocity
of a RigidBody2D very often may lead to some unpredictable behaviors. If you need to directly affect the body, prefer _integrate_forces
as it allows you to directly access the physics state.
属性
方法
void | _integrate_forces ( state: PhysicsDirectBodyState2D ) virtual1 |
void | add_constant_central_force ( force: Vector2 ) |
void | add_constant_force ( force: Vector2 , position: Vector2 = Vector2(0, 0) ) |
void | add_constant_torque ( torque: float ) |
void | apply_central_force ( force: Vector2 ) |
void | apply_central_impulse ( impulse: Vector2 = Vector2(0, 0) ) |
void | apply_force ( force: Vector2 , position: Vector2 = Vector2(0, 0) ) |
void | apply_impulse ( impulse: Vector2 , position: Vector2 = Vector2(0, 0) ) |
void | apply_torque ( torque: float ) |
void | apply_torque_impulse ( torque: float ) |
Array Node2D | get_colliding_bodies ( ) const2 |
int | get_contact_count ( ) const2 |
void | set_axis_velocity ( axis_velocity: Vector2 ) |
信号
body_entered ( body: Node
)
Emitted when a collision with another PhysicsBody2D
or TileMap
occurs. Requires contact_monitor
to be set to true
and max_contacts_reported
to be set high enough to detect all the collisions. TileMap
s are detected if the TileSet
has Collision Shape2D
s.
body
the Node
, if it exists in the tree, of the other PhysicsBody2D
or TileMap
.
body_exited ( body: Node
)
Emitted when the collision with another PhysicsBody2D
or TileMap
ends. Requires contact_monitor
to be set to true
and max_contacts_reported
to be set high enough to detect all the collisions. TileMap
s are detected if the TileSet
has Collision Shape2D
s.
body
the Node
, if it exists in the tree, of the other PhysicsBody2D
or TileMap
.
body_shape_entered ( body_rid: RID
, body: Node
, body_shape_index: int
, local_shape_index: int
)
Emitted when one of this RigidBody2D's Shape2D
s collides with another PhysicsBody2D
or TileMap
's Shape2D
s. Requires contact_monitor
to be set to true
and max_contacts_reported
to be set high enough to detect all the collisions. TileMap
s are detected if the TileSet
has Collision Shape2D
s.
body_rid
the RID
of the other PhysicsBody2D
or TileSet
's CollisionObject2D
used by the PhysicsServer2D
.
body
the Node
, if it exists in the tree, of the other PhysicsBody2D
or TileMap
.
body_shape_index
the index of the Shape2D
of the other PhysicsBody2D
or TileMap
used by the PhysicsServer2D
. Get the CollisionShape2D
node with body.shape_owner_get_owner(body.shape_find_owner(body_shape_index))
.
local_shape_index
the index of the Shape2D
of this RigidBody2D used by the PhysicsServer2D
. Get the CollisionShape2D
node with self.shape_owner_get_owner(self.shape_find_owner(local_shape_index))
.
body_shape_exited ( body_rid: RID
, body: Node
, body_shape_index: int
, local_shape_index: int
)
Emitted when the collision between one of this RigidBody2D's Shape2D
s and another PhysicsBody2D
or TileMap
's Shape2D
s ends. Requires contact_monitor
to be set to true
and max_contacts_reported
to be set high enough to detect all the collisions. TileMap
s are detected if the TileSet
has Collision Shape2D
s.
body_rid
the RID
of the other PhysicsBody2D
or TileSet
's CollisionObject2D
used by the PhysicsServer2D
.
body
the Node
, if it exists in the tree, of the other PhysicsBody2D
or TileMap
.
body_shape_index
the index of the Shape2D
of the other PhysicsBody2D
or TileMap
used by the PhysicsServer2D
. Get the CollisionShape2D
node with body.shape_owner_get_owner(body.shape_find_owner(body_shape_index))
.
local_shape_index
the index of the Shape2D
of this RigidBody2D used by the PhysicsServer2D
. Get the CollisionShape2D
node with self.shape_owner_get_owner(self.shape_find_owner(local_shape_index))
.
sleeping_state_changed ( )
Emitted when the physics engine changes the body's sleeping state.
Note: Changing the value sleeping
will not trigger this signal. It is only emitted if the sleeping state is changed by the physics engine or emit_signal("sleeping_state_changed")
is used.
枚举
enum FreezeMode:
FreezeMode FREEZE_MODE_STATIC = 0
Static body freeze mode (default). The body is not affected by gravity and forces. It can be only moved by user code and doesn't collide with other bodies along its path.
FreezeMode FREEZE_MODE_KINEMATIC = 1
Kinematic body freeze mode. Similar to FREEZE_MODE_STATIC
, but collides with other bodies along its path when moved. Useful for a frozen body that needs to be animated.
enum CenterOfMassMode:
CenterOfMassMode CENTER_OF_MASS_MODE_AUTO = 0
In this mode, the body's center of mass is calculated automatically based on its shapes. This assumes that the shapes' origins are also their center of mass.
CenterOfMassMode CENTER_OF_MASS_MODE_CUSTOM = 1
In this mode, the body's center of mass is set through center_of_mass
. Defaults to the body's origin position.
enum DampMode:
DampMode DAMP_MODE_COMBINE = 0
In this mode, the body's damping value is added to any value set in areas or the default value.
DampMode DAMP_MODE_REPLACE = 1
In this mode, the body's damping value replaces any value set in areas or the default value.
enum CCDMode:
CCDMode CCD_MODE_DISABLED = 0
Continuous collision detection disabled. This is the fastest way to detect body collisions, but can miss small, fast-moving objects.
CCDMode CCD_MODE_CAST_RAY = 1
Continuous collision detection enabled using raycasting. This is faster than shapecasting but less precise.
CCDMode CCD_MODE_CAST_SHAPE = 2
Continuous collision detection enabled using shapecasting. This is the slowest CCD method and the most precise.
属性说明
float
angular_damp = 0.0
Damps the body's rotation. By default, the body will use the Default Angular Damp in Project > Project Settings > Physics > 2d or any value override set by an Area2D
the body is in. Depending on angular_damp_mode
, you can set angular_damp
to be added to or to replace the body's damping value.
See ProjectSettings.physics/2d/default_angular_damp
for more details about damping.
DampMode angular_damp_mode = 0
Defines how angular_damp
is applied. See DampMode for possible values.
float
angular_velocity = 0.0
The body's rotational velocity in radians per second.
bool
can_sleep = true
If true
, the body can enter sleep mode when there is no movement. See sleeping
.
Vector2
center_of_mass = Vector2(0, 0)
The body's custom center of mass, relative to the body's origin position, when center_of_mass_mode
is set to CENTER_OF_MASS_MODE_CUSTOM
. This is the balanced point of the body, where applied forces only cause linear acceleration. Applying forces outside of the center of mass causes angular acceleration.
When center_of_mass_mode
is set to CENTER_OF_MASS_MODE_AUTO
(default value), the center of mass is automatically computed.
CenterOfMassMode center_of_mass_mode = 0
void
set_center_of_mass_mode ( value: CenterOfMassMode )- CenterOfMassMode get_center_of_mass_mode ( )
Defines the way the body's center of mass is set. See CenterOfMassMode for possible values.
Vector2
constant_force = Vector2(0, 0)
The body's total constant positional forces applied during each physics update.
See add_constant_force
and add_constant_central_force
.
float
constant_torque = 0.0
The body's total constant rotational forces applied during each physics update.
See add_constant_torque
.
bool
contact_monitor = false
If true
, the RigidBody2D will emit signals when it collides with another body.
Note: By default the maximum contacts reported is set to 0, meaning nothing will be recorded, see max_contacts_reported
.
CCDMode continuous_cd = 0
void
set_continuous_collision_detection_mode ( value: CCDMode )- CCDMode get_continuous_collision_detection_mode ( )
Continuous collision detection mode.
Continuous collision detection tries to predict where a moving body will collide instead of moving it and correcting its movement after collision. Continuous collision detection is slower, but more precise and misses fewer collisions with small, fast-moving objects. Raycasting and shapecasting methods are available. See CCDMode for details.
bool
custom_integrator = false
If true
, the standard force integration (like gravity or damping) will be disabled for this body. Other than collision response, the body will only move as determined by the _integrate_forces
method, if that virtual method is overridden.
Setting this property will call the method PhysicsServer2D.body_set_omit_force_integration
internally.
bool
freeze = false
If true
, the body is frozen. Gravity and forces are not applied anymore.
See freeze_mode
to set the body's behavior when frozen.
For a body that is always frozen, use StaticBody2D
or AnimatableBody2D
instead.
FreezeMode freeze_mode = 0
void
set_freeze_mode ( value: FreezeMode )- FreezeMode get_freeze_mode ( )
The body's freeze mode. Can be used to set the body's behavior when freeze
is enabled. See FreezeMode for possible values.
For a body that is always frozen, use StaticBody2D
or AnimatableBody2D
instead.
float
gravity_scale = 1.0
Multiplies the gravity applied to the body. The body's gravity is calculated from the Default Gravity value in Project > Project Settings > Physics > 2d and/or any additional gravity vector applied by Area2D
s.
float
inertia = 0.0
The body's moment of inertia. This is like mass, but for rotation: it determines how much torque it takes to rotate the body. The moment of inertia is usually computed automatically from the mass and the shapes, but this property allows you to set a custom value.
If set to 0
, inertia is automatically computed (default value).
Note: This value does not change when inertia is automatically computed. Use PhysicsServer2D
to get the computed inertia.
@onready var ball = $Ball
func get_ball_inertia():
return 1.0 / PhysicsServer2D.body_get_direct_state(ball.get_rid()).inverse_inertia
private RigidBody2D _ball;
public override void _Ready()
{
_ball = GetNode<RigidBody2D>("Ball");
}
private float GetBallInertia()
{
return 1.0f / PhysicsServer2D.BodyGetDirectState(_ball.GetRid()).InverseInertia;
}
float
linear_damp = 0.0
Damps the body's movement. By default, the body will use the Default Linear Damp in Project > Project Settings > Physics > 2d or any value override set by an Area2D
the body is in. Depending on linear_damp_mode
, you can set linear_damp
to be added to or to replace the body's damping value.
See ProjectSettings.physics/2d/default_linear_damp
for more details about damping.
DampMode linear_damp_mode = 0
Defines how linear_damp
is applied. See DampMode for possible values.
Vector2
linear_velocity = Vector2(0, 0)
The body's linear velocity in pixels per second. Can be used sporadically, but don't set this every frame, because physics may run in another thread and runs at a different granularity. Use _integrate_forces
as your process loop for precise control of the body state.
bool
lock_rotation = false
If true
, the body cannot rotate. Gravity and forces only apply linear movement.
float
mass = 1.0
The body's mass.
int
max_contacts_reported = 0
The maximum number of contacts that will be recorded. Requires a value greater than 0 and contact_monitor
to be set to true
to start to register contacts. Use get_contact_count
to retrieve the count or get_colliding_bodies
to retrieve bodies that have been collided with.
Note: The number of contacts is different from the number of collisions. Collisions between parallel edges will result in two contacts (one at each end), and collisions between parallel faces will result in four contacts (one at each corner).
PhysicsMaterial
physics_material_override
void
set_physics_material_override ( value:PhysicsMaterial
)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.
bool
sleeping = false
If true
, the body will not move and will not calculate forces until woken up by another body through, for example, a collision, or by using the apply_impulse
or apply_force
methods.
方法说明
void
_integrate_forces ( state: PhysicsDirectBodyState2D
) virtual1
Called during physics processing, allowing you to read and safely modify the simulation state for the object. By default, it is called before the standard force integration, but the custom_integrator
property allows you to disable the standard force integration and do fully custom force integration for a body.
void
add_constant_central_force ( force: Vector2
)
Adds a constant directional force without affecting rotation that keeps being applied over time until cleared with constant_force = Vector2(0, 0)
.
This is equivalent to using add_constant_force
at the body's center of mass.
void
add_constant_force ( force: Vector2
, position: Vector2
= Vector2(0, 0) )
Adds a constant positioned force to the body that keeps being applied over time until cleared with constant_force = Vector2(0, 0)
.
position
is the offset from the body origin in global coordinates.
void
add_constant_torque ( torque: float
)
Adds a constant rotational force without affecting position that keeps being applied over time until cleared with constant_torque = 0
.
void
apply_central_force ( force: Vector2
)
Applies a directional force without affecting rotation. A force is time dependent and meant to be applied every physics update.
This is equivalent to using apply_force
at the body's center of mass.
void
apply_central_impulse ( impulse: Vector2
= Vector2(0, 0) )
Applies a directional impulse without affecting rotation.
An impulse is time-independent! Applying an impulse every frame would result in a framerate-dependent force. For this reason, it should only be used when simulating one-time impacts (use the "_force" functions otherwise).
This is equivalent to using apply_impulse
at the body's center of mass.
void
apply_force ( force: Vector2
, position: Vector2
= Vector2(0, 0) )
Applies a positioned force to the body. A force is time dependent and meant to be applied every physics update.
position
is the offset from the body origin in global coordinates.
void
apply_impulse ( impulse: Vector2
, position: Vector2
= Vector2(0, 0) )
Applies a positioned impulse to the body.
An impulse is time-independent! Applying an impulse every frame would result in a framerate-dependent force. For this reason, it should only be used when simulating one-time impacts (use the "_force" functions otherwise).
position
is the offset from the body origin in global coordinates.
void
apply_torque ( torque: float
)
Applies a rotational force without affecting position. A force is time dependent and meant to be applied every physics update.
Note: inertia
is required for this to work. To have inertia
, an active CollisionShape2D
must be a child of the node, or you can manually set inertia
.
void
apply_torque_impulse ( torque: float
)
Applies a rotational impulse to the body without affecting the position.
An impulse is time-independent! Applying an impulse every frame would result in a framerate-dependent force. For this reason, it should only be used when simulating one-time impacts (use the "_force" functions otherwise).
Note: inertia
is required for this to work. To have inertia
, an active CollisionShape2D
must be a child of the node, or you can manually set inertia
.
Array Node2D
get_colliding_bodies ( ) const2
Returns a list of the bodies colliding with this one. Requires contact_monitor
to be set to true
and max_contacts_reported
to be set high enough to detect all the collisions.
Note: The result of this test is not immediate after moving objects. For performance, list of collisions is updated once per frame and before the physics step. Consider using signals instead.
int
get_contact_count ( ) const2
Returns the number of contacts this body has with other bodies. By default, this returns 0 unless bodies are configured to monitor contacts (see contact_monitor
).
Note: To retrieve the colliding bodies, use get_colliding_bodies
.
void
set_axis_velocity ( axis_velocity: Vector2
)
Sets the body's velocity on the given axis. The velocity in the given vector axis will be set as the given vector length. This is useful for jumping behavior.
本方法通常需要用户覆盖才能生效。
本方法无副作用,不会修改该实例的任何成员变量。
本方法除了能接受在此处描述的参数外,还能够继续接受任意数量的参数。
本方法用于构造某个类型。
调用本方法无需实例,可直接使用类名进行调用。
本方法描述的是使用本类型作为左操作数的有效运算符。
这个值是由下列位标志构成位掩码的整数。
无返回值。