class_physics2ddirectbodystate.rst 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379
  1. :github_url: hide
  2. .. Generated automatically by doc/tools/makerst.py in Godot's source tree.
  3. .. DO NOT EDIT THIS FILE, but the Physics2DDirectBodyState.xml source instead.
  4. .. The source is found in doc/classes or modules/<name>/doc_classes.
  5. .. _class_Physics2DDirectBodyState:
  6. Physics2DDirectBodyState
  7. ========================
  8. **Inherits:** :ref:`Object<class_Object>`
  9. **Inherited By:** :ref:`Physics2DDirectBodyStateSW<class_Physics2DDirectBodyStateSW>`
  10. Direct access object to a physics body in the :ref:`Physics2DServer<class_Physics2DServer>`.
  11. Description
  12. -----------
  13. Provides direct access to a physics body in the :ref:`Physics2DServer<class_Physics2DServer>`, allowing safe changes to physics properties. This object is passed via the direct state callback of rigid/character bodies, and is intended for changing the direct state of that body. See :ref:`RigidBody2D._integrate_forces<class_RigidBody2D_method__integrate_forces>`.
  14. Tutorials
  15. ---------
  16. - :doc:`../tutorials/physics/ray-casting`
  17. Properties
  18. ----------
  19. +---------------------------------------+---------------------------------------------------------------------------------------+
  20. | :ref:`float<class_float>` | :ref:`angular_velocity<class_Physics2DDirectBodyState_property_angular_velocity>` |
  21. +---------------------------------------+---------------------------------------------------------------------------------------+
  22. | :ref:`float<class_float>` | :ref:`inverse_inertia<class_Physics2DDirectBodyState_property_inverse_inertia>` |
  23. +---------------------------------------+---------------------------------------------------------------------------------------+
  24. | :ref:`float<class_float>` | :ref:`inverse_mass<class_Physics2DDirectBodyState_property_inverse_mass>` |
  25. +---------------------------------------+---------------------------------------------------------------------------------------+
  26. | :ref:`Vector2<class_Vector2>` | :ref:`linear_velocity<class_Physics2DDirectBodyState_property_linear_velocity>` |
  27. +---------------------------------------+---------------------------------------------------------------------------------------+
  28. | :ref:`bool<class_bool>` | :ref:`sleeping<class_Physics2DDirectBodyState_property_sleeping>` |
  29. +---------------------------------------+---------------------------------------------------------------------------------------+
  30. | :ref:`float<class_float>` | :ref:`step<class_Physics2DDirectBodyState_property_step>` |
  31. +---------------------------------------+---------------------------------------------------------------------------------------+
  32. | :ref:`float<class_float>` | :ref:`total_angular_damp<class_Physics2DDirectBodyState_property_total_angular_damp>` |
  33. +---------------------------------------+---------------------------------------------------------------------------------------+
  34. | :ref:`Vector2<class_Vector2>` | :ref:`total_gravity<class_Physics2DDirectBodyState_property_total_gravity>` |
  35. +---------------------------------------+---------------------------------------------------------------------------------------+
  36. | :ref:`float<class_float>` | :ref:`total_linear_damp<class_Physics2DDirectBodyState_property_total_linear_damp>` |
  37. +---------------------------------------+---------------------------------------------------------------------------------------+
  38. | :ref:`Transform2D<class_Transform2D>` | :ref:`transform<class_Physics2DDirectBodyState_property_transform>` |
  39. +---------------------------------------+---------------------------------------------------------------------------------------+
  40. Methods
  41. -------
  42. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  43. | void | :ref:`add_central_force<class_Physics2DDirectBodyState_method_add_central_force>` **(** :ref:`Vector2<class_Vector2>` force **)** |
  44. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  45. | void | :ref:`add_force<class_Physics2DDirectBodyState_method_add_force>` **(** :ref:`Vector2<class_Vector2>` offset, :ref:`Vector2<class_Vector2>` force **)** |
  46. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  47. | void | :ref:`add_torque<class_Physics2DDirectBodyState_method_add_torque>` **(** :ref:`float<class_float>` torque **)** |
  48. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  49. | void | :ref:`apply_central_impulse<class_Physics2DDirectBodyState_method_apply_central_impulse>` **(** :ref:`Vector2<class_Vector2>` impulse **)** |
  50. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  51. | void | :ref:`apply_impulse<class_Physics2DDirectBodyState_method_apply_impulse>` **(** :ref:`Vector2<class_Vector2>` offset, :ref:`Vector2<class_Vector2>` impulse **)** |
  52. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  53. | void | :ref:`apply_torque_impulse<class_Physics2DDirectBodyState_method_apply_torque_impulse>` **(** :ref:`float<class_float>` impulse **)** |
  54. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  55. | :ref:`RID<class_RID>` | :ref:`get_contact_collider<class_Physics2DDirectBodyState_method_get_contact_collider>` **(** :ref:`int<class_int>` contact_idx **)** const |
  56. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  57. | :ref:`int<class_int>` | :ref:`get_contact_collider_id<class_Physics2DDirectBodyState_method_get_contact_collider_id>` **(** :ref:`int<class_int>` contact_idx **)** const |
  58. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  59. | :ref:`Object<class_Object>` | :ref:`get_contact_collider_object<class_Physics2DDirectBodyState_method_get_contact_collider_object>` **(** :ref:`int<class_int>` contact_idx **)** const |
  60. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  61. | :ref:`Vector2<class_Vector2>` | :ref:`get_contact_collider_position<class_Physics2DDirectBodyState_method_get_contact_collider_position>` **(** :ref:`int<class_int>` contact_idx **)** const |
  62. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  63. | :ref:`int<class_int>` | :ref:`get_contact_collider_shape<class_Physics2DDirectBodyState_method_get_contact_collider_shape>` **(** :ref:`int<class_int>` contact_idx **)** const |
  64. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  65. | :ref:`Variant<class_Variant>` | :ref:`get_contact_collider_shape_metadata<class_Physics2DDirectBodyState_method_get_contact_collider_shape_metadata>` **(** :ref:`int<class_int>` contact_idx **)** const |
  66. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  67. | :ref:`Vector2<class_Vector2>` | :ref:`get_contact_collider_velocity_at_position<class_Physics2DDirectBodyState_method_get_contact_collider_velocity_at_position>` **(** :ref:`int<class_int>` contact_idx **)** const |
  68. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  69. | :ref:`int<class_int>` | :ref:`get_contact_count<class_Physics2DDirectBodyState_method_get_contact_count>` **(** **)** const |
  70. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  71. | :ref:`Vector2<class_Vector2>` | :ref:`get_contact_local_normal<class_Physics2DDirectBodyState_method_get_contact_local_normal>` **(** :ref:`int<class_int>` contact_idx **)** const |
  72. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  73. | :ref:`Vector2<class_Vector2>` | :ref:`get_contact_local_position<class_Physics2DDirectBodyState_method_get_contact_local_position>` **(** :ref:`int<class_int>` contact_idx **)** const |
  74. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  75. | :ref:`int<class_int>` | :ref:`get_contact_local_shape<class_Physics2DDirectBodyState_method_get_contact_local_shape>` **(** :ref:`int<class_int>` contact_idx **)** const |
  76. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  77. | :ref:`Physics2DDirectSpaceState<class_Physics2DDirectSpaceState>` | :ref:`get_space_state<class_Physics2DDirectBodyState_method_get_space_state>` **(** **)** |
  78. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  79. | void | :ref:`integrate_forces<class_Physics2DDirectBodyState_method_integrate_forces>` **(** **)** |
  80. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  81. Property Descriptions
  82. ---------------------
  83. .. _class_Physics2DDirectBodyState_property_angular_velocity:
  84. - :ref:`float<class_float>` **angular_velocity**
  85. +----------+-----------------------------+
  86. | *Setter* | set_angular_velocity(value) |
  87. +----------+-----------------------------+
  88. | *Getter* | get_angular_velocity() |
  89. +----------+-----------------------------+
  90. The body's rotational velocity.
  91. ----
  92. .. _class_Physics2DDirectBodyState_property_inverse_inertia:
  93. - :ref:`float<class_float>` **inverse_inertia**
  94. +----------+-----------------------+
  95. | *Getter* | get_inverse_inertia() |
  96. +----------+-----------------------+
  97. The inverse of the inertia of the body.
  98. ----
  99. .. _class_Physics2DDirectBodyState_property_inverse_mass:
  100. - :ref:`float<class_float>` **inverse_mass**
  101. +----------+--------------------+
  102. | *Getter* | get_inverse_mass() |
  103. +----------+--------------------+
  104. The inverse of the mass of the body.
  105. ----
  106. .. _class_Physics2DDirectBodyState_property_linear_velocity:
  107. - :ref:`Vector2<class_Vector2>` **linear_velocity**
  108. +----------+----------------------------+
  109. | *Setter* | set_linear_velocity(value) |
  110. +----------+----------------------------+
  111. | *Getter* | get_linear_velocity() |
  112. +----------+----------------------------+
  113. The body's linear velocity.
  114. ----
  115. .. _class_Physics2DDirectBodyState_property_sleeping:
  116. - :ref:`bool<class_bool>` **sleeping**
  117. +----------+------------------------+
  118. | *Setter* | set_sleep_state(value) |
  119. +----------+------------------------+
  120. | *Getter* | is_sleeping() |
  121. +----------+------------------------+
  122. If ``true``, this body is currently sleeping (not active).
  123. ----
  124. .. _class_Physics2DDirectBodyState_property_step:
  125. - :ref:`float<class_float>` **step**
  126. +----------+------------+
  127. | *Getter* | get_step() |
  128. +----------+------------+
  129. The timestep (delta) used for the simulation.
  130. ----
  131. .. _class_Physics2DDirectBodyState_property_total_angular_damp:
  132. - :ref:`float<class_float>` **total_angular_damp**
  133. +----------+--------------------------+
  134. | *Getter* | get_total_angular_damp() |
  135. +----------+--------------------------+
  136. The rate at which the body stops rotating, if there are not any other forces moving it.
  137. ----
  138. .. _class_Physics2DDirectBodyState_property_total_gravity:
  139. - :ref:`Vector2<class_Vector2>` **total_gravity**
  140. +----------+---------------------+
  141. | *Getter* | get_total_gravity() |
  142. +----------+---------------------+
  143. The total gravity vector being currently applied to this body.
  144. ----
  145. .. _class_Physics2DDirectBodyState_property_total_linear_damp:
  146. - :ref:`float<class_float>` **total_linear_damp**
  147. +----------+-------------------------+
  148. | *Getter* | get_total_linear_damp() |
  149. +----------+-------------------------+
  150. The rate at which the body stops moving, if there are not any other forces moving it.
  151. ----
  152. .. _class_Physics2DDirectBodyState_property_transform:
  153. - :ref:`Transform2D<class_Transform2D>` **transform**
  154. +----------+----------------------+
  155. | *Setter* | set_transform(value) |
  156. +----------+----------------------+
  157. | *Getter* | get_transform() |
  158. +----------+----------------------+
  159. The body's transformation matrix.
  160. Method Descriptions
  161. -------------------
  162. .. _class_Physics2DDirectBodyState_method_add_central_force:
  163. - void **add_central_force** **(** :ref:`Vector2<class_Vector2>` force **)**
  164. Adds a constant directional force without affecting rotation.
  165. ----
  166. .. _class_Physics2DDirectBodyState_method_add_force:
  167. - void **add_force** **(** :ref:`Vector2<class_Vector2>` offset, :ref:`Vector2<class_Vector2>` force **)**
  168. Adds a positioned force to the body. Both the force and the offset from the body origin are in global coordinates.
  169. ----
  170. .. _class_Physics2DDirectBodyState_method_add_torque:
  171. - void **add_torque** **(** :ref:`float<class_float>` torque **)**
  172. Adds a constant rotational force.
  173. ----
  174. .. _class_Physics2DDirectBodyState_method_apply_central_impulse:
  175. - void **apply_central_impulse** **(** :ref:`Vector2<class_Vector2>` impulse **)**
  176. Applies a directional impulse without affecting rotation.
  177. ----
  178. .. _class_Physics2DDirectBodyState_method_apply_impulse:
  179. - void **apply_impulse** **(** :ref:`Vector2<class_Vector2>` offset, :ref:`Vector2<class_Vector2>` impulse **)**
  180. Applies a positioned impulse to the body. An impulse is time-independent! Applying an impulse every frame would result in a framerate-dependent force. For this reason, it should only be used when simulating one-time impacts (use the "_force" functions otherwise). The offset uses the rotation of the global coordinate system, but is centered at the object's origin.
  181. ----
  182. .. _class_Physics2DDirectBodyState_method_apply_torque_impulse:
  183. - void **apply_torque_impulse** **(** :ref:`float<class_float>` impulse **)**
  184. Applies a rotational impulse to the body.
  185. ----
  186. .. _class_Physics2DDirectBodyState_method_get_contact_collider:
  187. - :ref:`RID<class_RID>` **get_contact_collider** **(** :ref:`int<class_int>` contact_idx **)** const
  188. Returns the collider's :ref:`RID<class_RID>`.
  189. ----
  190. .. _class_Physics2DDirectBodyState_method_get_contact_collider_id:
  191. - :ref:`int<class_int>` **get_contact_collider_id** **(** :ref:`int<class_int>` contact_idx **)** const
  192. Returns the collider's object id.
  193. ----
  194. .. _class_Physics2DDirectBodyState_method_get_contact_collider_object:
  195. - :ref:`Object<class_Object>` **get_contact_collider_object** **(** :ref:`int<class_int>` contact_idx **)** const
  196. Returns the collider object. This depends on how it was created (will return a scene node if such was used to create it).
  197. ----
  198. .. _class_Physics2DDirectBodyState_method_get_contact_collider_position:
  199. - :ref:`Vector2<class_Vector2>` **get_contact_collider_position** **(** :ref:`int<class_int>` contact_idx **)** const
  200. Returns the contact position in the collider.
  201. ----
  202. .. _class_Physics2DDirectBodyState_method_get_contact_collider_shape:
  203. - :ref:`int<class_int>` **get_contact_collider_shape** **(** :ref:`int<class_int>` contact_idx **)** const
  204. Returns the collider's shape index.
  205. ----
  206. .. _class_Physics2DDirectBodyState_method_get_contact_collider_shape_metadata:
  207. - :ref:`Variant<class_Variant>` **get_contact_collider_shape_metadata** **(** :ref:`int<class_int>` contact_idx **)** const
  208. Returns the collided shape's metadata. This metadata is different from :ref:`Object.get_meta<class_Object_method_get_meta>`, and is set with :ref:`Physics2DServer.shape_set_data<class_Physics2DServer_method_shape_set_data>`.
  209. ----
  210. .. _class_Physics2DDirectBodyState_method_get_contact_collider_velocity_at_position:
  211. - :ref:`Vector2<class_Vector2>` **get_contact_collider_velocity_at_position** **(** :ref:`int<class_int>` contact_idx **)** const
  212. Returns the linear velocity vector at the collider's contact point.
  213. ----
  214. .. _class_Physics2DDirectBodyState_method_get_contact_count:
  215. - :ref:`int<class_int>` **get_contact_count** **(** **)** const
  216. Returns the number of contacts this body has with other bodies.
  217. **Note:** By default, this returns 0 unless bodies are configured to monitor contacts. See :ref:`RigidBody2D.contact_monitor<class_RigidBody2D_property_contact_monitor>`.
  218. ----
  219. .. _class_Physics2DDirectBodyState_method_get_contact_local_normal:
  220. - :ref:`Vector2<class_Vector2>` **get_contact_local_normal** **(** :ref:`int<class_int>` contact_idx **)** const
  221. Returns the local normal at the contact point.
  222. ----
  223. .. _class_Physics2DDirectBodyState_method_get_contact_local_position:
  224. - :ref:`Vector2<class_Vector2>` **get_contact_local_position** **(** :ref:`int<class_int>` contact_idx **)** const
  225. Returns the local position of the contact point.
  226. ----
  227. .. _class_Physics2DDirectBodyState_method_get_contact_local_shape:
  228. - :ref:`int<class_int>` **get_contact_local_shape** **(** :ref:`int<class_int>` contact_idx **)** const
  229. Returns the local shape index of the collision.
  230. ----
  231. .. _class_Physics2DDirectBodyState_method_get_space_state:
  232. - :ref:`Physics2DDirectSpaceState<class_Physics2DDirectSpaceState>` **get_space_state** **(** **)**
  233. Returns the current state of the space, useful for queries.
  234. ----
  235. .. _class_Physics2DDirectBodyState_method_integrate_forces:
  236. - void **integrate_forces** **(** **)**
  237. Calls the built-in force integration code.