123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371 |
- .. 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<class_physicsbody>` **<** :ref:`CollisionObject<class_collisionobject>` **<** :ref:`Spatial<class_spatial>` **<** :ref:`Node<class_node>` **<** :ref:`Object<class_object>`
- **Category:** Core
- Brief Description
- -----------------
- Rigid body node.
- Member Functions
- ----------------
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`_integrate_forces<class_RigidBody__integrate_forces>` **(** :ref:`PhysicsDirectBodyState<class_physicsdirectbodystate>` state **)** virtual |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`apply_impulse<class_RigidBody_apply_impulse>` **(** :ref:`Vector3<class_vector3>` pos, :ref:`Vector3<class_vector3>` impulse **)** |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`float<class_float>` | :ref:`get_angular_damp<class_RigidBody_get_angular_damp>` **(** **)** const |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`Vector3<class_vector3>` | :ref:`get_angular_velocity<class_RigidBody_get_angular_velocity>` **(** **)** const |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`int<class_int>` | :ref:`get_axis_lock<class_RigidBody_get_axis_lock>` **(** **)** const |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`float<class_float>` | :ref:`get_bounce<class_RigidBody_get_bounce>` **(** **)** const |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`Array<class_array>` | :ref:`get_colliding_bodies<class_RigidBody_get_colliding_bodies>` **(** **)** const |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`float<class_float>` | :ref:`get_friction<class_RigidBody_get_friction>` **(** **)** const |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`float<class_float>` | :ref:`get_gravity_scale<class_RigidBody_get_gravity_scale>` **(** **)** const |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`float<class_float>` | :ref:`get_linear_damp<class_RigidBody_get_linear_damp>` **(** **)** const |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`Vector3<class_vector3>` | :ref:`get_linear_velocity<class_RigidBody_get_linear_velocity>` **(** **)** const |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`float<class_float>` | :ref:`get_mass<class_RigidBody_get_mass>` **(** **)** const |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`int<class_int>` | :ref:`get_max_contacts_reported<class_RigidBody_get_max_contacts_reported>` **(** **)** const |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`int<class_int>` | :ref:`get_mode<class_RigidBody_get_mode>` **(** **)** const |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`float<class_float>` | :ref:`get_weight<class_RigidBody_get_weight>` **(** **)** const |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`is_able_to_sleep<class_RigidBody_is_able_to_sleep>` **(** **)** const |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`is_contact_monitor_enabled<class_RigidBody_is_contact_monitor_enabled>` **(** **)** const |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`is_sleeping<class_RigidBody_is_sleeping>` **(** **)** const |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`is_using_continuous_collision_detection<class_RigidBody_is_using_continuous_collision_detection>` **(** **)** const |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`is_using_custom_integrator<class_RigidBody_is_using_custom_integrator>` **(** **)** |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`set_angular_damp<class_RigidBody_set_angular_damp>` **(** :ref:`float<class_float>` angular_damp **)** |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`set_angular_velocity<class_RigidBody_set_angular_velocity>` **(** :ref:`Vector3<class_vector3>` angular_velocity **)** |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`set_axis_lock<class_RigidBody_set_axis_lock>` **(** :ref:`int<class_int>` axis_lock **)** |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`set_axis_velocity<class_RigidBody_set_axis_velocity>` **(** :ref:`Vector3<class_vector3>` axis_velocity **)** |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`set_bounce<class_RigidBody_set_bounce>` **(** :ref:`float<class_float>` bounce **)** |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`set_can_sleep<class_RigidBody_set_can_sleep>` **(** :ref:`bool<class_bool>` able_to_sleep **)** |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`set_contact_monitor<class_RigidBody_set_contact_monitor>` **(** :ref:`bool<class_bool>` enabled **)** |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`set_friction<class_RigidBody_set_friction>` **(** :ref:`float<class_float>` friction **)** |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`set_gravity_scale<class_RigidBody_set_gravity_scale>` **(** :ref:`float<class_float>` gravity_scale **)** |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`set_linear_damp<class_RigidBody_set_linear_damp>` **(** :ref:`float<class_float>` linear_damp **)** |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`set_linear_velocity<class_RigidBody_set_linear_velocity>` **(** :ref:`Vector3<class_vector3>` linear_velocity **)** |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`set_mass<class_RigidBody_set_mass>` **(** :ref:`float<class_float>` mass **)** |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`set_max_contacts_reported<class_RigidBody_set_max_contacts_reported>` **(** :ref:`int<class_int>` amount **)** |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`set_mode<class_RigidBody_set_mode>` **(** :ref:`int<class_int>` mode **)** |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`set_sleeping<class_RigidBody_set_sleeping>` **(** :ref:`bool<class_bool>` sleeping **)** |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`set_use_continuous_collision_detection<class_RigidBody_set_use_continuous_collision_detection>` **(** :ref:`bool<class_bool>` enable **)** |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`set_use_custom_integrator<class_RigidBody_set_use_custom_integrator>` **(** :ref:`bool<class_bool>` enable **)** |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`set_weight<class_RigidBody_set_weight>` **(** :ref:`float<class_float>` weight **)** |
- +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
- Signals
- -------
- - **body_enter** **(** :ref:`Object<class_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<class_int>` body_id, :ref:`Object<class_object>` body, :ref:`int<class_int>` body_shape, :ref:`int<class_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<class_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<class_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<class_int>` body_id, :ref:`Object<class_object>` body, :ref:`int<class_int>` body_shape, :ref:`int<class_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<class_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<class_staticbody>`, and can only move by user code.
- - **MODE_KINEMATIC** = **3** --- Kinematic body. The body behaves like a :ref:`KinematicBody<class_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<class_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<class_RigidBody_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<class_vector3>` pos, :ref:`Vector3<class_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<class_float>` **get_angular_damp** **(** **)** const
- Return the current body angular damp. Default is -1.
- .. _class_RigidBody_get_angular_velocity:
- - :ref:`Vector3<class_vector3>` **get_angular_velocity** **(** **)** const
- Return the current body angular velocity.
- .. _class_RigidBody_get_axis_lock:
- - :ref:`int<class_int>` **get_axis_lock** **(** **)** const
- Return the current axis lock of the body. One of AXIS_LOCK\_\* enum.
- .. _class_RigidBody_get_bounce:
- - :ref:`float<class_float>` **get_bounce** **(** **)** const
- Return the current body bounciness.
- .. _class_RigidBody_get_colliding_bodies:
- - :ref:`Array<class_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<class_RigidBody_set_max_contacts_reported>` to increase it.
- .. _class_RigidBody_get_friction:
- - :ref:`float<class_float>` **get_friction** **(** **)** const
- Return the current body friction, from 0 (frictionless) to 1 (max friction).
- .. _class_RigidBody_get_gravity_scale:
- - :ref:`float<class_float>` **get_gravity_scale** **(** **)** const
- Return the current body gravity scale.
- .. _class_RigidBody_get_linear_damp:
- - :ref:`float<class_float>` **get_linear_damp** **(** **)** const
- Return the current body linear damp. Default is -1.
- .. _class_RigidBody_get_linear_velocity:
- - :ref:`Vector3<class_vector3>` **get_linear_velocity** **(** **)** const
- Return the current body linear velocity.
- .. _class_RigidBody_get_mass:
- - :ref:`float<class_float>` **get_mass** **(** **)** const
- Return the current body mass.
- .. _class_RigidBody_get_max_contacts_reported:
- - :ref:`int<class_int>` **get_max_contacts_reported** **(** **)** const
- Return the maximum contacts that can be reported. See :ref:`set_max_contacts_reported<class_RigidBody_set_max_contacts_reported>`.
- .. _class_RigidBody_get_mode:
- - :ref:`int<class_int>` **get_mode** **(** **)** const
- Return the current body mode, see :ref:`set_mode<class_RigidBody_set_mode>`.
- .. _class_RigidBody_get_weight:
- - :ref:`float<class_float>` **get_weight** **(** **)** const
- Return the current body weight, given standard earth-weight (gravity 9.8).
- .. _class_RigidBody_is_able_to_sleep:
- - :ref:`bool<class_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_set_can_sleep>`.
- .. _class_RigidBody_is_contact_monitor_enabled:
- - :ref:`bool<class_bool>` **is_contact_monitor_enabled** **(** **)** const
- Return whether contact monitoring is enabled.
- .. _class_RigidBody_is_sleeping:
- - :ref:`bool<class_bool>` **is_sleeping** **(** **)** const
- Return whether the body is sleeping.
- .. _class_RigidBody_is_using_continuous_collision_detection:
- - :ref:`bool<class_bool>` **is_using_continuous_collision_detection** **(** **)** const
- Return whether this body is using continuous collision detection.
- .. _class_RigidBody_is_using_custom_integrator:
- - :ref:`bool<class_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<class_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<class_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<class_RigidBody__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<class_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<class_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<class_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<class_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<class_RigidBody_apply_impulse>` / :ref:`set_applied_force<class_RigidBody_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<class_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<class_float>` friction **)**
- Set the body friction, from 0 (frictionless) to 1 (max friction).
- .. _class_RigidBody_set_gravity_scale:
- - void **set_gravity_scale** **(** :ref:`float<class_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<class_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<class_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<class_RigidBody__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<class_float>` mass **)**
- Set the body mass.
- .. _class_RigidBody_set_max_contacts_reported:
- - void **set_max_contacts_reported** **(** :ref:`int<class_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<class_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<class_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<class_RigidBody_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<class_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<class_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<class_RigidBody__integrate_forces>` function, if defined.
- .. _class_RigidBody_set_weight:
- - void **set_weight** **(** :ref:`float<class_float>` weight **)**
- Set the body weight given standard earth-weight (gravity 9.8).
|