.. 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_RigidBody: RigidBody ========= **Inherits:** :ref:`PhysicsBody` **<** :ref:`CollisionObject` **<** :ref:`Spatial` **<** :ref:`Node` **<** :ref:`Object` **Category:** Core Brief Description ----------------- Rigid body node. Member Functions ---------------- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`_integrate_forces` **(** :ref:`PhysicsDirectBodyState` state **)** virtual | +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`apply_impulse` **(** :ref:`Vector3` pos, :ref:`Vector3` impulse **)** | +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`float` | :ref:`get_angular_damp` **(** **)** const | +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`Vector3` | :ref:`get_angular_velocity` **(** **)** const | +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`get_axis_lock` **(** **)** const | +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`float` | :ref:`get_bounce` **(** **)** const | +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`Array` | :ref:`get_colliding_bodies` **(** **)** const | +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`float` | :ref:`get_friction` **(** **)** const | +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`float` | :ref:`get_gravity_scale` **(** **)** const | +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`float` | :ref:`get_linear_damp` **(** **)** const | +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`Vector3` | :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_continuous_collision_detection` **(** **)** const | +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`is_using_custom_integrator` **(** **)** | +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_angular_damp` **(** :ref:`float` angular_damp **)** | +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_angular_velocity` **(** :ref:`Vector3` angular_velocity **)** | +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_axis_lock` **(** :ref:`int` axis_lock **)** | +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_axis_velocity` **(** :ref:`Vector3` 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_friction` **(** :ref:`float` friction **)** | +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_gravity_scale` **(** :ref:`float` gravity_scale **)** | +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_linear_damp` **(** :ref:`float` linear_damp **)** | +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_linear_velocity` **(** :ref:`Vector3` 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_continuous_collision_detection` **(** :ref:`bool` enable **)** | +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_use_custom_integrator` **(** :ref:`bool` enable **)** | +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_weight` **(** :ref:`float` weight **)** | +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+ 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 shape 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:`StaticBody`, and can only move by user code. - **MODE_KINEMATIC** = **3** --- Kinematic body. The body behaves like a :ref:`KinematicBody`, 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. Description ----------- Rigid body node. This node is used for placing rigid bodies in the scene. It can contain a number of shapes, and also shift mode between regular Rigid body, Kinematic, Character or Static. Member Function Description --------------------------- .. _class_RigidBody__integrate_forces: - void **_integrate_forces** **(** :ref:`PhysicsDirectBodyState` 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_RigidBody_apply_impulse: - void **apply_impulse** **(** :ref:`Vector3` pos, :ref:`Vector3` 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_RigidBody_get_angular_damp: - :ref:`float` **get_angular_damp** **(** **)** const Return the current body angular damp. Default is -1. .. _class_RigidBody_get_angular_velocity: - :ref:`Vector3` **get_angular_velocity** **(** **)** const Return the current body angular velocity. .. _class_RigidBody_get_axis_lock: - :ref:`int` **get_axis_lock** **(** **)** const Return the current axis lock of the body. One of AXIS_LOCK\_\* enum. .. _class_RigidBody_get_bounce: - :ref:`float` **get_bounce** **(** **)** const Return the current body bounciness. .. _class_RigidBody_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. .. _class_RigidBody_get_friction: - :ref:`float` **get_friction** **(** **)** const Return the current body friction, from 0 (frictionless) to 1 (max friction). .. _class_RigidBody_get_gravity_scale: - :ref:`float` **get_gravity_scale** **(** **)** const Return the current body gravity scale. .. _class_RigidBody_get_linear_damp: - :ref:`float` **get_linear_damp** **(** **)** const Return the current body linear damp. Default is -1. .. _class_RigidBody_get_linear_velocity: - :ref:`Vector3` **get_linear_velocity** **(** **)** const Return the current body linear velocity. .. _class_RigidBody_get_mass: - :ref:`float` **get_mass** **(** **)** const Return the current body mass. .. _class_RigidBody_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_RigidBody_get_mode: - :ref:`int` **get_mode** **(** **)** const Return the current body mode, see :ref:`set_mode`. .. _class_RigidBody_get_weight: - :ref:`float` **get_weight** **(** **)** const Return the current body weight, given standard earth-weight (gravity 9.8). .. _class_RigidBody_is_able_to_sleep: - :ref:`bool` **is_able_to_sleep** **(** **)** const Return whether the body has the ability to fall asleep when not moving. See :ref:`set_can_sleep`. .. _class_RigidBody_is_contact_monitor_enabled: - :ref:`bool` **is_contact_monitor_enabled** **(** **)** const Return whether contact monitoring is enabled. .. _class_RigidBody_is_sleeping: - :ref:`bool` **is_sleeping** **(** **)** const Return whether the body is sleeping. .. _class_RigidBody_is_using_continuous_collision_detection: - :ref:`bool` **is_using_continuous_collision_detection** **(** **)** const Return whether this body is using continuous collision detection. .. _class_RigidBody_is_using_custom_integrator: - :ref:`bool` **is_using_custom_integrator** **(** **)** Return whether the body is using a custom integrator. .. _class_RigidBody_set_angular_damp: - void **set_angular_damp** **(** :ref:`float` angular_damp **)** Set the angular damp for this body. Default of -1, cannot be less than -1. If this value is different from -1, any angular damp derived from the world or areas will be overridden. .. _class_RigidBody_set_angular_velocity: - void **set_angular_velocity** **(** :ref:`Vector3` 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_RigidBody_set_axis_lock: - void **set_axis_lock** **(** :ref:`int` axis_lock **)** Set the axis lock of the body, from the AXIS_LOCK\_\* enum. Axis lock stops the body from moving along the specified axis(X/Y/Z) and rotating along the other two axes. .. _class_RigidBody_set_axis_velocity: - void **set_axis_velocity** **(** :ref:`Vector3` 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_RigidBody_set_bounce: - void **set_bounce** **(** :ref:`float` bounce **)** Set the body bounciness, from 0 (no bounciness) to 1 (max bounciness). .. _class_RigidBody_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_RigidBody_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_RigidBody_set_friction: - void **set_friction** **(** :ref:`float` friction **)** Set the body friction, from 0 (frictionless) to 1 (max friction). .. _class_RigidBody_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_RigidBody_set_linear_damp: - void **set_linear_damp** **(** :ref:`float` linear_damp **)** Set the linear damp for this body. Default of -1, cannot be less than -1. If this value is different from -1, any linear damp derived from the world or areas will be overridden. .. _class_RigidBody_set_linear_velocity: - void **set_linear_velocity** **(** :ref:`Vector3` 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_RigidBody_set_mass: - void **set_mass** **(** :ref:`float` mass **)** Set the body mass. .. _class_RigidBody_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_RigidBody_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_RigidBody_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` wakes them up. Until then, they behave like a static body. .. _class_RigidBody_set_use_continuous_collision_detection: - void **set_use_continuous_collision_detection** **(** :ref:`bool` enable **)** 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_RigidBody_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_RigidBody_set_weight: - void **set_weight** **(** :ref:`float` weight **)** Set the body weight given standard earth-weight (gravity 9.8).