.. Generated automatically by doc/tools/makerst.py in Godot's source tree. .. DO NOT EDIT THIS FILE, but the doc/base/classes.xml source instead. .. _class_RigidBody2D: RigidBody2D =========== **Inherits:** :ref:`PhysicsBody2D` **<** :ref:`CollisionObject2D` **<** :ref:`Node2D` **<** :ref:`CanvasItem` **<** :ref:`Node` **<** :ref:`Object` **Category:** Core Brief Description ----------------- Rigid body 2D node. Member Functions ---------------- +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`_integrate_forces` **(** :ref:`Physics2DDirectBodyState` state **)** virtual | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`add_force` **(** :ref:`Vector2` offset, :ref:`Vector2` force **)** | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`apply_impulse` **(** :ref:`Vector2` offset, :ref:`Vector2` impulse **)** | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`float` | :ref:`get_angular_damp` **(** **)** const | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`float` | :ref:`get_angular_velocity` **(** **)** const | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`Vector2` | :ref:`get_applied_force` **(** **)** const | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`float` | :ref:`get_applied_torque` **(** **)** const | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`float` | :ref:`get_bounce` **(** **)** const | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`Array` | :ref:`get_colliding_bodies` **(** **)** const | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`get_continuous_collision_detection_mode` **(** **)** const | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`float` | :ref:`get_friction` **(** **)** const | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`float` | :ref:`get_gravity_scale` **(** **)** const | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`float` | :ref:`get_inertia` **(** **)** const | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`float` | :ref:`get_linear_damp` **(** **)** const | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`Vector2` | :ref:`get_linear_velocity` **(** **)** const | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`float` | :ref:`get_mass` **(** **)** const | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`get_max_contacts_reported` **(** **)** const | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`get_mode` **(** **)** const | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`float` | :ref:`get_weight` **(** **)** const | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`is_able_to_sleep` **(** **)** const | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`is_contact_monitor_enabled` **(** **)** const | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`is_sleeping` **(** **)** const | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`is_using_custom_integrator` **(** **)** | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_angular_damp` **(** :ref:`float` angular_damp **)** | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_angular_velocity` **(** :ref:`float` angular_velocity **)** | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_applied_force` **(** :ref:`Vector2` force **)** | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_applied_torque` **(** :ref:`float` torque **)** | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_axis_velocity` **(** :ref:`Vector2` axis_velocity **)** | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_bounce` **(** :ref:`float` bounce **)** | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_can_sleep` **(** :ref:`bool` able_to_sleep **)** | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_contact_monitor` **(** :ref:`bool` enabled **)** | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_continuous_collision_detection_mode` **(** :ref:`int` mode **)** | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_friction` **(** :ref:`float` friction **)** | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_gravity_scale` **(** :ref:`float` gravity_scale **)** | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_inertia` **(** :ref:`float` inertia **)** | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_linear_damp` **(** :ref:`float` linear_damp **)** | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_linear_velocity` **(** :ref:`Vector2` linear_velocity **)** | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_mass` **(** :ref:`float` mass **)** | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_max_contacts_reported` **(** :ref:`int` amount **)** | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_mode` **(** :ref:`int` mode **)** | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_sleeping` **(** :ref:`bool` sleeping **)** | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_use_custom_integrator` **(** :ref:`bool` enable **)** | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_weight` **(** :ref:`float` weight **)** | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`test_motion` **(** :ref:`Vector2` motion, :ref:`float` margin=0.08, :ref:`Physics2DTestMotionResult` result=null **)** | +--------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ Signals ------- - **body_enter** **(** :ref:`Object` body **)** Emitted when a body enters into contact with this one. Contact monitor and contacts reported must be enabled for this to work. - **body_enter_shape** **(** :ref:`int` body_id, :ref:`Object` body, :ref:`int` body_shape, :ref:`int` local_shape **)** Emitted when a body enters into contact with this one. Contact monitor and contacts reported must be enabled for this to work. This signal not only receives the body that collided with this one, but also its :ref:`RID` (body_id), the shape index from the colliding body (body_shape), and the shape index from this body (local_shape) the other body collided with. - **body_exit** **(** :ref:`Object` body **)** Emitted when a body exits contact with this one. Contact monitor and contacts reported must be enabled for this to work. - **body_exit_shape** **(** :ref:`int` body_id, :ref:`Object` body, :ref:`int` body_shape, :ref:`int` local_shape **)** Emitted when a body shape exits contact with this one. Contact monitor and contacts reported must be enabled for this to work. This signal not only receives the body that stopped colliding with this one, but also its :ref:`RID` (body_id), the shape index from the colliding body (body_shape), and the shape index from this body (local_shape) the other body stopped colliding with. - **sleeping_state_changed** **(** **)** Emitted when the body changes its sleeping state. Either by sleeping or waking up. Numeric Constants ----------------- - **MODE_STATIC** = **1** --- Static mode. The body behaves like a :ref:`StaticBody2D`, and can only move by user code. - **MODE_KINEMATIC** = **3** --- Kinematic body. The body behaves like a :ref:`KinematicBody2D`, and can only move by user code. - **MODE_RIGID** = **0** --- Rigid body. This is the "natural" state of a rigid body. It is affected by forces, and can move, rotate, and be affected by user code. - **MODE_CHARACTER** = **2** --- Character body. This behaves like a rigid body, but can not rotate. - **CCD_MODE_DISABLED** = **0** --- Disables continuous collision detection. This is the fastest way to detect body collisions, but can miss small, fast-moving objects. - **CCD_MODE_CAST_RAY** = **1** --- Enables continuous collision detection by raycasting. It is faster than shapecasting, but less precise. - **CCD_MODE_CAST_SHAPE** = **2** --- Enables continuous collision detection by shapecasting. It is the slowest CCD method, and the most precise. Description ----------- Rigid body 2D node. This node is used for placing rigid bodies in the scene. It can contain a number of shapes, and also shift state between regular Rigid body, Kinematic, Character or Static. Character mode forbids the node from being rotated. This node can have a custom force integrator function, for writing complex physics motion behavior per node. As a warning, don't change this node position every frame or very often. Sporadic changes work fine, but physics runs at a different granularity (fixed hz) than usual rendering (process callback) and maybe even in a separate thread, so changing this from a process loop will yield strange behavior. Member Function Description --------------------------- .. _class_RigidBody2D__integrate_forces: - void **_integrate_forces** **(** :ref:`Physics2DDirectBodyState` state **)** virtual Called during physics processing, allowing you to read and safely modify the simulation state for the object. By default it works in addition to the usual physics behavior, but :ref:`set_use_custom_integrator` allows you to disable the default behavior and do fully custom force integration for a body. .. _class_RigidBody2D_add_force: - void **add_force** **(** :ref:`Vector2` offset, :ref:`Vector2` force **)** Add a positioned force to the applied force and torque. As with :ref:`apply_impulse`, both the force and the offset from the body origin are in global coordinates. .. _class_RigidBody2D_apply_impulse: - void **apply_impulse** **(** :ref:`Vector2` offset, :ref:`Vector2` impulse **)** Apply a positioned impulse (which will be affected by the body mass and shape). This is the equivalent of hitting a billiard ball with a cue: a force that is applied once, and only once. Both the impulse and the offset from the body origin are in global coordinates. .. _class_RigidBody2D_get_angular_damp: - :ref:`float` **get_angular_damp** **(** **)** const Return the angular damp for this body. .. _class_RigidBody2D_get_angular_velocity: - :ref:`float` **get_angular_velocity** **(** **)** const Return the body angular velocity. This changes by physics granularity. See :ref:`set_angular_velocity`. .. _class_RigidBody2D_get_applied_force: - :ref:`Vector2` **get_applied_force** **(** **)** const Return the applied force vector. .. _class_RigidBody2D_get_applied_torque: - :ref:`float` **get_applied_torque** **(** **)** const Return the torque which is being applied to this body. .. _class_RigidBody2D_get_bounce: - :ref:`float` **get_bounce** **(** **)** const Return the body bounciness. .. _class_RigidBody2D_get_colliding_bodies: - :ref:`Array` **get_colliding_bodies** **(** **)** const Return a list of the bodies colliding with this one. By default, number of max contacts reported is at 0 , see :ref:`set_max_contacts_reported` to increase it. You must also enable contact monitor, see :ref:`set_contact_monitor` .. _class_RigidBody2D_get_continuous_collision_detection_mode: - :ref:`int` **get_continuous_collision_detection_mode** **(** **)** const Return whether this body is using continuous collision detection. .. _class_RigidBody2D_get_friction: - :ref:`float` **get_friction** **(** **)** const Return the body friction. .. _class_RigidBody2D_get_gravity_scale: - :ref:`float` **get_gravity_scale** **(** **)** const Return the gravity factor. .. _class_RigidBody2D_get_inertia: - :ref:`float` **get_inertia** **(** **)** const Return the body's moment of inertia. This is usually automatically computed from the mass and the shapes. Note that this doesn't seem to work in a ``_ready`` function: it apparently has not been auto-computed yet. .. _class_RigidBody2D_get_linear_damp: - :ref:`float` **get_linear_damp** **(** **)** const Return the linear damp for this body. .. _class_RigidBody2D_get_linear_velocity: - :ref:`Vector2` **get_linear_velocity** **(** **)** const Return the body linear velocity. This changes by physics granularity. See :ref:`set_linear_velocity`. .. _class_RigidBody2D_get_mass: - :ref:`float` **get_mass** **(** **)** const Return the body mass. .. _class_RigidBody2D_get_max_contacts_reported: - :ref:`int` **get_max_contacts_reported** **(** **)** const Return the maximum contacts that can be reported. See :ref:`set_max_contacts_reported`. .. _class_RigidBody2D_get_mode: - :ref:`int` **get_mode** **(** **)** const Return the current body mode, see :ref:`set_mode`. .. _class_RigidBody2D_get_weight: - :ref:`float` **get_weight** **(** **)** const Return the body weight given standard earth-weight (gravity 9.8). .. _class_RigidBody2D_is_able_to_sleep: - :ref:`bool` **is_able_to_sleep** **(** **)** const Return true if the body has the ability to fall asleep when not moving. See :ref:`set_can_sleep`. .. _class_RigidBody2D_is_contact_monitor_enabled: - :ref:`bool` **is_contact_monitor_enabled** **(** **)** const Return whether contact monitoring is enabled. .. _class_RigidBody2D_is_sleeping: - :ref:`bool` **is_sleeping** **(** **)** const Return whether the body is sleeping. .. _class_RigidBody2D_is_using_custom_integrator: - :ref:`bool` **is_using_custom_integrator** **(** **)** Return true if the body is not doing any built-in force integration. .. _class_RigidBody2D_set_angular_damp: - void **set_angular_damp** **(** :ref:`float` angular_damp **)** Set the angular damp for this body. If this value is different from -1, any angular damp derived from the world or areas will be overridden. .. _class_RigidBody2D_set_angular_velocity: - void **set_angular_velocity** **(** :ref:`float` angular_velocity **)** Set the body angular velocity. Can be used sporadically, but **DON'T SET THIS IN EVERY FRAME**, because physics may be running in another thread and definitely runs at a different granularity. Use :ref:`_integrate_forces` as your process loop if you want to have precise control of the body state. .. _class_RigidBody2D_set_applied_force: - void **set_applied_force** **(** :ref:`Vector2` force **)** Set the applied force vector. This is the equivalent of pushing a box over the ground: the force applied is applied constantly. .. _class_RigidBody2D_set_applied_torque: - void **set_applied_torque** **(** :ref:`float` torque **)** Set a constant torque which will be applied to this body. .. _class_RigidBody2D_set_axis_velocity: - void **set_axis_velocity** **(** :ref:`Vector2` axis_velocity **)** Set an axis velocity. The velocity in the given vector axis will be set as the given vector length. This is useful for jumping behavior. .. _class_RigidBody2D_set_bounce: - void **set_bounce** **(** :ref:`float` bounce **)** Set the body bounciness, from 0 (no bounce) to 1 (full bounce). .. _class_RigidBody2D_set_can_sleep: - void **set_can_sleep** **(** :ref:`bool` able_to_sleep **)** Set the body ability to fall asleep when not moving. This saves an enormous amount of processor time when there are plenty of rigid bodies (non static) in a scene. Sleeping bodies are not affected by forces until a collision or an :ref:`apply_impulse` / :ref:`set_applied_force` wakes them up. Until then, they behave like a static body. .. _class_RigidBody2D_set_contact_monitor: - void **set_contact_monitor** **(** :ref:`bool` enabled **)** Enable contact monitoring. This allows the body to emit signals when it collides with another. .. _class_RigidBody2D_set_continuous_collision_detection_mode: - void **set_continuous_collision_detection_mode** **(** :ref:`int` mode **)** Set the continuous collision detection mode from the enum CCD_MODE\_\*. Continuous collision detection tries to predict where a moving body will collide, instead of moving it and correcting its movement if it collided. The first is more precise, and misses less impacts by small, fast-moving objects. The second is faster to compute, but can miss small, fast-moving objects. .. _class_RigidBody2D_set_friction: - void **set_friction** **(** :ref:`float` friction **)** Set the body friction, from 0 (frictionless) to 1 (full friction). .. _class_RigidBody2D_set_gravity_scale: - void **set_gravity_scale** **(** :ref:`float` gravity_scale **)** Set the gravity factor. This factor multiplies gravity intensity just for this body. .. _class_RigidBody2D_set_inertia: - void **set_inertia** **(** :ref:`float` inertia **)** Set 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 function allows you to set a custom value. Set 0 (or negative) inertia to return to automatically computing it. .. _class_RigidBody2D_set_linear_damp: - void **set_linear_damp** **(** :ref:`float` linear_damp **)** Set the linear damp for this body. If this value is different from -1, any linear damp derived from the world or areas will be overridden. .. _class_RigidBody2D_set_linear_velocity: - void **set_linear_velocity** **(** :ref:`Vector2` linear_velocity **)** Set the body linear velocity. Can be used sporadically, but **DON'T SET THIS IN EVERY FRAME**, because physics may be running in another thread and definitely runs at a different granularity. Use :ref:`_integrate_forces` as your process loop if you want to have precise control of the body state. .. _class_RigidBody2D_set_mass: - void **set_mass** **(** :ref:`float` mass **)** Set the body mass. .. _class_RigidBody2D_set_max_contacts_reported: - void **set_max_contacts_reported** **(** :ref:`int` amount **)** Set the maximum contacts to report. Bodies can keep a log of the contacts with other bodies, this is enabled by setting the maximum amount of contacts reported to a number greater than 0. .. _class_RigidBody2D_set_mode: - void **set_mode** **(** :ref:`int` mode **)** Set the body mode, from the MODE\_\* enum. This allows to change to a static body or a character body. .. _class_RigidBody2D_set_sleeping: - void **set_sleeping** **(** :ref:`bool` sleeping **)** Set whether a body is sleeping or not. Sleeping bodies are not affected by forces until a collision or an :ref:`apply_impulse` / :ref:`set_applied_force` wakes them up. Until then, they behave like a static body. .. _class_RigidBody2D_set_use_custom_integrator: - void **set_use_custom_integrator** **(** :ref:`bool` enable **)** Pass true to disable the internal force integration (like gravity or air friction) for this body. Other than collision response, the body will only move as determined by the :ref:`_integrate_forces` function, if defined. .. _class_RigidBody2D_set_weight: - void **set_weight** **(** :ref:`float` weight **)** Set the body weight given standard earth-weight (gravity 9.8). Not really useful for 2D since most measures for this node are in pixels. .. _class_RigidBody2D_test_motion: - :ref:`bool` **test_motion** **(** :ref:`Vector2` motion, :ref:`float` margin=0.08, :ref:`Physics2DTestMotionResult` result=null **)** Return whether the body would collide, if it tried to move in the given vector. This method allows two extra parameters: A margin, which increases slightly the size of the shapes involved in the collision detection, and an object of type :ref:`Physics2DTestMotionResult`, which will store additional information about the collision (should there be one).