class_rigidbody.rst 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356
  1. .. Generated automatically by doc/tools/makerst.py in Godot's source tree.
  2. .. DO NOT EDIT THIS FILE, but the doc/base/classes.xml source instead.
  3. .. _class_RigidBody:
  4. RigidBody
  5. =========
  6. **Inherits:** :ref:`PhysicsBody<class_physicsbody>` **<** :ref:`CollisionObject<class_collisionobject>` **<** :ref:`Spatial<class_spatial>` **<** :ref:`Node<class_node>` **<** :ref:`Object<class_object>`
  7. **Category:** Core
  8. Brief Description
  9. -----------------
  10. Rigid body node.
  11. Member Functions
  12. ----------------
  13. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  14. | void | :ref:`_integrate_forces<class_RigidBody__integrate_forces>` **(** :ref:`PhysicsDirectBodyState<class_physicsdirectbodystate>` state **)** virtual |
  15. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  16. | void | :ref:`apply_impulse<class_RigidBody_apply_impulse>` **(** :ref:`Vector3<class_vector3>` pos, :ref:`Vector3<class_vector3>` impulse **)** |
  17. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  18. | :ref:`float<class_float>` | :ref:`get_angular_damp<class_RigidBody_get_angular_damp>` **(** **)** const |
  19. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  20. | :ref:`Vector3<class_vector3>` | :ref:`get_angular_velocity<class_RigidBody_get_angular_velocity>` **(** **)** const |
  21. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  22. | :ref:`int<class_int>` | :ref:`get_axis_lock<class_RigidBody_get_axis_lock>` **(** **)** const |
  23. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  24. | :ref:`float<class_float>` | :ref:`get_bounce<class_RigidBody_get_bounce>` **(** **)** const |
  25. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  26. | :ref:`Array<class_array>` | :ref:`get_colliding_bodies<class_RigidBody_get_colliding_bodies>` **(** **)** const |
  27. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  28. | :ref:`float<class_float>` | :ref:`get_friction<class_RigidBody_get_friction>` **(** **)** const |
  29. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  30. | :ref:`float<class_float>` | :ref:`get_gravity_scale<class_RigidBody_get_gravity_scale>` **(** **)** const |
  31. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  32. | :ref:`float<class_float>` | :ref:`get_linear_damp<class_RigidBody_get_linear_damp>` **(** **)** const |
  33. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  34. | :ref:`Vector3<class_vector3>` | :ref:`get_linear_velocity<class_RigidBody_get_linear_velocity>` **(** **)** const |
  35. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  36. | :ref:`float<class_float>` | :ref:`get_mass<class_RigidBody_get_mass>` **(** **)** const |
  37. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  38. | :ref:`int<class_int>` | :ref:`get_max_contacts_reported<class_RigidBody_get_max_contacts_reported>` **(** **)** const |
  39. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  40. | :ref:`int<class_int>` | :ref:`get_mode<class_RigidBody_get_mode>` **(** **)** const |
  41. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  42. | :ref:`float<class_float>` | :ref:`get_weight<class_RigidBody_get_weight>` **(** **)** const |
  43. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  44. | :ref:`bool<class_bool>` | :ref:`is_able_to_sleep<class_RigidBody_is_able_to_sleep>` **(** **)** const |
  45. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  46. | :ref:`bool<class_bool>` | :ref:`is_contact_monitor_enabled<class_RigidBody_is_contact_monitor_enabled>` **(** **)** const |
  47. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  48. | :ref:`bool<class_bool>` | :ref:`is_sleeping<class_RigidBody_is_sleeping>` **(** **)** const |
  49. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  50. | :ref:`bool<class_bool>` | :ref:`is_using_continuous_collision_detection<class_RigidBody_is_using_continuous_collision_detection>` **(** **)** const |
  51. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  52. | :ref:`bool<class_bool>` | :ref:`is_using_custom_integrator<class_RigidBody_is_using_custom_integrator>` **(** **)** |
  53. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  54. | void | :ref:`set_angular_damp<class_RigidBody_set_angular_damp>` **(** :ref:`float<class_float>` angular_damp **)** |
  55. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  56. | void | :ref:`set_angular_velocity<class_RigidBody_set_angular_velocity>` **(** :ref:`Vector3<class_vector3>` angular_velocity **)** |
  57. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  58. | void | :ref:`set_axis_lock<class_RigidBody_set_axis_lock>` **(** :ref:`int<class_int>` axis_lock **)** |
  59. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  60. | void | :ref:`set_axis_velocity<class_RigidBody_set_axis_velocity>` **(** :ref:`Vector3<class_vector3>` axis_velocity **)** |
  61. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  62. | void | :ref:`set_bounce<class_RigidBody_set_bounce>` **(** :ref:`float<class_float>` bounce **)** |
  63. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  64. | void | :ref:`set_can_sleep<class_RigidBody_set_can_sleep>` **(** :ref:`bool<class_bool>` able_to_sleep **)** |
  65. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  66. | void | :ref:`set_contact_monitor<class_RigidBody_set_contact_monitor>` **(** :ref:`bool<class_bool>` enabled **)** |
  67. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  68. | void | :ref:`set_friction<class_RigidBody_set_friction>` **(** :ref:`float<class_float>` friction **)** |
  69. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  70. | void | :ref:`set_gravity_scale<class_RigidBody_set_gravity_scale>` **(** :ref:`float<class_float>` gravity_scale **)** |
  71. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  72. | void | :ref:`set_linear_damp<class_RigidBody_set_linear_damp>` **(** :ref:`float<class_float>` linear_damp **)** |
  73. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  74. | void | :ref:`set_linear_velocity<class_RigidBody_set_linear_velocity>` **(** :ref:`Vector3<class_vector3>` linear_velocity **)** |
  75. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  76. | void | :ref:`set_mass<class_RigidBody_set_mass>` **(** :ref:`float<class_float>` mass **)** |
  77. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  78. | void | :ref:`set_max_contacts_reported<class_RigidBody_set_max_contacts_reported>` **(** :ref:`int<class_int>` amount **)** |
  79. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  80. | void | :ref:`set_mode<class_RigidBody_set_mode>` **(** :ref:`int<class_int>` mode **)** |
  81. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  82. | void | :ref:`set_sleeping<class_RigidBody_set_sleeping>` **(** :ref:`bool<class_bool>` sleeping **)** |
  83. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  84. | void | :ref:`set_use_continuous_collision_detection<class_RigidBody_set_use_continuous_collision_detection>` **(** :ref:`bool<class_bool>` enable **)** |
  85. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  86. | void | :ref:`set_use_custom_integrator<class_RigidBody_set_use_custom_integrator>` **(** :ref:`bool<class_bool>` enable **)** |
  87. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  88. | void | :ref:`set_weight<class_RigidBody_set_weight>` **(** :ref:`float<class_float>` weight **)** |
  89. +--------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------+
  90. Signals
  91. -------
  92. - **body_enter** **(** :ref:`Object<class_object>` body **)**
  93. - **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 **)**
  94. - **body_exit** **(** :ref:`Object<class_object>` body **)**
  95. - **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 **)**
  96. - **sleeping_state_changed** **(** **)**
  97. Numeric Constants
  98. -----------------
  99. - **MODE_STATIC** = **1** --- Static mode. The body behaves like a :ref:`StaticBody<class_staticbody>`, and can only move by user code.
  100. - **MODE_KINEMATIC** = **3** --- Kinematic body. The body behaves like a :ref:`KinematicBody<class_kinematicbody>`, and can only move by user code.
  101. - **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.
  102. - **MODE_CHARACTER** = **2** --- Character body. This behaves like a rigid body, but can not rotate.
  103. Description
  104. -----------
  105. 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.
  106. Member Function Description
  107. ---------------------------
  108. .. _class_RigidBody__integrate_forces:
  109. - void **_integrate_forces** **(** :ref:`PhysicsDirectBodyState<class_physicsdirectbodystate>` state **)** virtual
  110. 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.
  111. .. _class_RigidBody_apply_impulse:
  112. - void **apply_impulse** **(** :ref:`Vector3<class_vector3>` pos, :ref:`Vector3<class_vector3>` impulse **)**
  113. 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.
  114. .. _class_RigidBody_get_angular_damp:
  115. - :ref:`float<class_float>` **get_angular_damp** **(** **)** const
  116. Return the current body angular damp. Default is -1.
  117. .. _class_RigidBody_get_angular_velocity:
  118. - :ref:`Vector3<class_vector3>` **get_angular_velocity** **(** **)** const
  119. Return the current body angular velocity.
  120. .. _class_RigidBody_get_axis_lock:
  121. - :ref:`int<class_int>` **get_axis_lock** **(** **)** const
  122. Return the current axis lock of the body. One of AXIS_LOCK\_\* enum.
  123. .. _class_RigidBody_get_bounce:
  124. - :ref:`float<class_float>` **get_bounce** **(** **)** const
  125. Return the current body bounciness.
  126. .. _class_RigidBody_get_colliding_bodies:
  127. - :ref:`Array<class_array>` **get_colliding_bodies** **(** **)** const
  128. 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.
  129. .. _class_RigidBody_get_friction:
  130. - :ref:`float<class_float>` **get_friction** **(** **)** const
  131. Return the current body friction, from 0 (frictionless) to 1 (max friction).
  132. .. _class_RigidBody_get_gravity_scale:
  133. - :ref:`float<class_float>` **get_gravity_scale** **(** **)** const
  134. Return the current body gravity scale.
  135. .. _class_RigidBody_get_linear_damp:
  136. - :ref:`float<class_float>` **get_linear_damp** **(** **)** const
  137. Return the current body linear damp. Default is -1.
  138. .. _class_RigidBody_get_linear_velocity:
  139. - :ref:`Vector3<class_vector3>` **get_linear_velocity** **(** **)** const
  140. Return the current body linear velocity.
  141. .. _class_RigidBody_get_mass:
  142. - :ref:`float<class_float>` **get_mass** **(** **)** const
  143. Return the current body mass.
  144. .. _class_RigidBody_get_max_contacts_reported:
  145. - :ref:`int<class_int>` **get_max_contacts_reported** **(** **)** const
  146. Return the maximum contacts that can be reported. See :ref:`set_max_contacts_reported<class_RigidBody_set_max_contacts_reported>`.
  147. .. _class_RigidBody_get_mode:
  148. - :ref:`int<class_int>` **get_mode** **(** **)** const
  149. Return the current body mode, see :ref:`set_mode<class_RigidBody_set_mode>`.
  150. .. _class_RigidBody_get_weight:
  151. - :ref:`float<class_float>` **get_weight** **(** **)** const
  152. Return the current body weight, given standard earth-weight (gravity 9.8).
  153. .. _class_RigidBody_is_able_to_sleep:
  154. - :ref:`bool<class_bool>` **is_able_to_sleep** **(** **)** const
  155. Return whether the body has the ability to fall asleep when not moving. See :ref:`set_can_sleep<class_RigidBody_set_can_sleep>`.
  156. .. _class_RigidBody_is_contact_monitor_enabled:
  157. - :ref:`bool<class_bool>` **is_contact_monitor_enabled** **(** **)** const
  158. Return whether contact monitoring is enabled.
  159. .. _class_RigidBody_is_sleeping:
  160. - :ref:`bool<class_bool>` **is_sleeping** **(** **)** const
  161. Return whether the body is sleeping.
  162. .. _class_RigidBody_is_using_continuous_collision_detection:
  163. - :ref:`bool<class_bool>` **is_using_continuous_collision_detection** **(** **)** const
  164. Return whether this body is using continuous collision detection.
  165. .. _class_RigidBody_is_using_custom_integrator:
  166. - :ref:`bool<class_bool>` **is_using_custom_integrator** **(** **)**
  167. Return whether the body is using a custom integrator.
  168. .. _class_RigidBody_set_angular_damp:
  169. - void **set_angular_damp** **(** :ref:`float<class_float>` angular_damp **)**
  170. 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.
  171. .. _class_RigidBody_set_angular_velocity:
  172. - void **set_angular_velocity** **(** :ref:`Vector3<class_vector3>` angular_velocity **)**
  173. 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.
  174. .. _class_RigidBody_set_axis_lock:
  175. - void **set_axis_lock** **(** :ref:`int<class_int>` axis_lock **)**
  176. 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.
  177. .. _class_RigidBody_set_axis_velocity:
  178. - void **set_axis_velocity** **(** :ref:`Vector3<class_vector3>` axis_velocity **)**
  179. 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.
  180. .. _class_RigidBody_set_bounce:
  181. - void **set_bounce** **(** :ref:`float<class_float>` bounce **)**
  182. Set the body bounciness, from 0 (no bounciness) to 1 (max bounciness).
  183. .. _class_RigidBody_set_can_sleep:
  184. - void **set_can_sleep** **(** :ref:`bool<class_bool>` able_to_sleep **)**
  185. 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.
  186. 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.
  187. .. _class_RigidBody_set_contact_monitor:
  188. - void **set_contact_monitor** **(** :ref:`bool<class_bool>` enabled **)**
  189. Enable contact monitoring. This allows the body to emit signals when it collides with another.
  190. .. _class_RigidBody_set_friction:
  191. - void **set_friction** **(** :ref:`float<class_float>` friction **)**
  192. Set the body friction, from 0 (frictionless) to 1 (max friction).
  193. .. _class_RigidBody_set_gravity_scale:
  194. - void **set_gravity_scale** **(** :ref:`float<class_float>` gravity_scale **)**
  195. Set the gravity factor. This factor multiplies gravity intensity just for this body.
  196. .. _class_RigidBody_set_linear_damp:
  197. - void **set_linear_damp** **(** :ref:`float<class_float>` linear_damp **)**
  198. 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.
  199. .. _class_RigidBody_set_linear_velocity:
  200. - void **set_linear_velocity** **(** :ref:`Vector3<class_vector3>` linear_velocity **)**
  201. 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.
  202. .. _class_RigidBody_set_mass:
  203. - void **set_mass** **(** :ref:`float<class_float>` mass **)**
  204. Set the body mass.
  205. .. _class_RigidBody_set_max_contacts_reported:
  206. - void **set_max_contacts_reported** **(** :ref:`int<class_int>` amount **)**
  207. 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.
  208. .. _class_RigidBody_set_mode:
  209. - void **set_mode** **(** :ref:`int<class_int>` mode **)**
  210. Set the body mode, from the MODE\_\* enum. This allows to change to a static body or a character body.
  211. .. _class_RigidBody_set_sleeping:
  212. - void **set_sleeping** **(** :ref:`bool<class_bool>` sleeping **)**
  213. 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.
  214. .. _class_RigidBody_set_use_continuous_collision_detection:
  215. - void **set_use_continuous_collision_detection** **(** :ref:`bool<class_bool>` enable **)**
  216. Set the continuous collision detection mode from the enum CCD_MODE\_\*.
  217. 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.
  218. .. _class_RigidBody_set_use_custom_integrator:
  219. - void **set_use_custom_integrator** **(** :ref:`bool<class_bool>` enable **)**
  220. 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.
  221. .. _class_RigidBody_set_weight:
  222. - void **set_weight** **(** :ref:`float<class_float>` weight **)**
  223. Set the body weight given standard earth-weight (gravity 9.8).