Up to date
This page is up to date for Godot 4.2
.
If you still find outdated information, please open an issue.
PhysicsDirectBodyState2D¶
Inherits: Object
Inherited By: PhysicsDirectBodyState2DExtension
Provides direct access to a physics body in the PhysicsServer2D.
Description¶
Provides direct access to a physics body in the PhysicsServer2D, allowing safe changes to physics properties. This object is passed via the direct state callback of RigidBody2D, and is intended for changing the direct state of that body. See RigidBody2D._integrate_forces.
Tutorials¶
Properties¶
Methods¶
Property Descriptions¶
float angular_velocity
The body's rotational velocity in radians per second.
Vector2 center_of_mass
Vector2 get_center_of_mass ( )
The body's center of mass position relative to the body's center in the global coordinate system.
Vector2 center_of_mass_local
Vector2 get_center_of_mass_local ( )
The body's center of mass position in the body's local coordinate system.
float inverse_inertia
float get_inverse_inertia ( )
The inverse of the inertia of the body.
float inverse_mass
float get_inverse_mass ( )
The inverse of the mass of the body.
Vector2 linear_velocity
The body's linear velocity in pixels per second.
bool sleeping
If true
, this body is currently sleeping (not active).
float step
float get_step ( )
The timestep (delta) used for the simulation.
float total_angular_damp
float get_total_angular_damp ( )
The rate at which the body stops rotating, if there are not any other forces moving it.
Vector2 total_gravity
Vector2 get_total_gravity ( )
The total gravity vector being currently applied to this body.
float total_linear_damp
float get_total_linear_damp ( )
The rate at which the body stops moving, if there are not any other forces moving it.
Transform2D transform
void set_transform ( Transform2D value )
Transform2D get_transform ( )
The body's transformation matrix.
Method Descriptions¶
void add_constant_central_force ( Vector2 force=Vector2(0, 0) )
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 ( Vector2 force, Vector2 position=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 ( float torque )
Adds a constant rotational force without affecting position that keeps being applied over time until cleared with constant_torque = 0
.
void apply_central_force ( Vector2 force=Vector2(0, 0) )
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.