class_physics2ddirectbodystate.rst 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  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. **Category:** Core
  11. Brief Description
  12. -----------------
  13. Direct access object to a physics body in the :ref:`Physics2DServer<class_Physics2DServer>`.
  14. Properties
  15. ----------
  16. +---------------------------------------+---------------------------------------------------------------------------------------+
  17. | :ref:`float<class_float>` | :ref:`angular_velocity<class_Physics2DDirectBodyState_property_angular_velocity>` |
  18. +---------------------------------------+---------------------------------------------------------------------------------------+
  19. | :ref:`float<class_float>` | :ref:`inverse_inertia<class_Physics2DDirectBodyState_property_inverse_inertia>` |
  20. +---------------------------------------+---------------------------------------------------------------------------------------+
  21. | :ref:`float<class_float>` | :ref:`inverse_mass<class_Physics2DDirectBodyState_property_inverse_mass>` |
  22. +---------------------------------------+---------------------------------------------------------------------------------------+
  23. | :ref:`Vector2<class_Vector2>` | :ref:`linear_velocity<class_Physics2DDirectBodyState_property_linear_velocity>` |
  24. +---------------------------------------+---------------------------------------------------------------------------------------+
  25. | :ref:`bool<class_bool>` | :ref:`sleeping<class_Physics2DDirectBodyState_property_sleeping>` |
  26. +---------------------------------------+---------------------------------------------------------------------------------------+
  27. | :ref:`float<class_float>` | :ref:`step<class_Physics2DDirectBodyState_property_step>` |
  28. +---------------------------------------+---------------------------------------------------------------------------------------+
  29. | :ref:`float<class_float>` | :ref:`total_angular_damp<class_Physics2DDirectBodyState_property_total_angular_damp>` |
  30. +---------------------------------------+---------------------------------------------------------------------------------------+
  31. | :ref:`Vector2<class_Vector2>` | :ref:`total_gravity<class_Physics2DDirectBodyState_property_total_gravity>` |
  32. +---------------------------------------+---------------------------------------------------------------------------------------+
  33. | :ref:`float<class_float>` | :ref:`total_linear_damp<class_Physics2DDirectBodyState_property_total_linear_damp>` |
  34. +---------------------------------------+---------------------------------------------------------------------------------------+
  35. | :ref:`Transform2D<class_Transform2D>` | :ref:`transform<class_Physics2DDirectBodyState_property_transform>` |
  36. +---------------------------------------+---------------------------------------------------------------------------------------+
  37. Methods
  38. -------
  39. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  40. | void | :ref:`add_central_force<class_Physics2DDirectBodyState_method_add_central_force>` **(** :ref:`Vector2<class_Vector2>` force **)** |
  41. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  42. | void | :ref:`add_force<class_Physics2DDirectBodyState_method_add_force>` **(** :ref:`Vector2<class_Vector2>` offset, :ref:`Vector2<class_Vector2>` force **)** |
  43. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  44. | void | :ref:`add_torque<class_Physics2DDirectBodyState_method_add_torque>` **(** :ref:`float<class_float>` torque **)** |
  45. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  46. | void | :ref:`apply_central_impulse<class_Physics2DDirectBodyState_method_apply_central_impulse>` **(** :ref:`Vector2<class_Vector2>` impulse **)** |
  47. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  48. | void | :ref:`apply_impulse<class_Physics2DDirectBodyState_method_apply_impulse>` **(** :ref:`Vector2<class_Vector2>` offset, :ref:`Vector2<class_Vector2>` impulse **)** |
  49. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  50. | void | :ref:`apply_torque_impulse<class_Physics2DDirectBodyState_method_apply_torque_impulse>` **(** :ref:`float<class_float>` impulse **)** |
  51. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  52. | :ref:`RID<class_RID>` | :ref:`get_contact_collider<class_Physics2DDirectBodyState_method_get_contact_collider>` **(** :ref:`int<class_int>` contact_idx **)** const |
  53. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  54. | :ref:`int<class_int>` | :ref:`get_contact_collider_id<class_Physics2DDirectBodyState_method_get_contact_collider_id>` **(** :ref:`int<class_int>` contact_idx **)** const |
  55. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  56. | :ref:`Object<class_Object>` | :ref:`get_contact_collider_object<class_Physics2DDirectBodyState_method_get_contact_collider_object>` **(** :ref:`int<class_int>` contact_idx **)** const |
  57. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  58. | :ref:`Vector2<class_Vector2>` | :ref:`get_contact_collider_position<class_Physics2DDirectBodyState_method_get_contact_collider_position>` **(** :ref:`int<class_int>` contact_idx **)** const |
  59. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  60. | :ref:`int<class_int>` | :ref:`get_contact_collider_shape<class_Physics2DDirectBodyState_method_get_contact_collider_shape>` **(** :ref:`int<class_int>` contact_idx **)** const |
  61. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  62. | :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 |
  63. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  64. | :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 |
  65. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  66. | :ref:`int<class_int>` | :ref:`get_contact_count<class_Physics2DDirectBodyState_method_get_contact_count>` **(** **)** const |
  67. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  68. | :ref:`Vector2<class_Vector2>` | :ref:`get_contact_local_normal<class_Physics2DDirectBodyState_method_get_contact_local_normal>` **(** :ref:`int<class_int>` contact_idx **)** const |
  69. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  70. | :ref:`Vector2<class_Vector2>` | :ref:`get_contact_local_position<class_Physics2DDirectBodyState_method_get_contact_local_position>` **(** :ref:`int<class_int>` contact_idx **)** const |
  71. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  72. | :ref:`int<class_int>` | :ref:`get_contact_local_shape<class_Physics2DDirectBodyState_method_get_contact_local_shape>` **(** :ref:`int<class_int>` contact_idx **)** const |
  73. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  74. | :ref:`Physics2DDirectSpaceState<class_Physics2DDirectSpaceState>` | :ref:`get_space_state<class_Physics2DDirectBodyState_method_get_space_state>` **(** **)** |
  75. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  76. | void | :ref:`integrate_forces<class_Physics2DDirectBodyState_method_integrate_forces>` **(** **)** |
  77. +-------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  78. Description
  79. -----------
  80. 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>`.
  81. Tutorials
  82. ---------
  83. - :doc:`../tutorials/physics/ray-casting`
  84. Property Descriptions
  85. ---------------------
  86. .. _class_Physics2DDirectBodyState_property_angular_velocity:
  87. - :ref:`float<class_float>` **angular_velocity**
  88. +----------+-----------------------------+
  89. | *Setter* | set_angular_velocity(value) |
  90. +----------+-----------------------------+
  91. | *Getter* | get_angular_velocity() |
  92. +----------+-----------------------------+
  93. The body's rotational velocity.
  94. .. _class_Physics2DDirectBodyState_property_inverse_inertia:
  95. - :ref:`float<class_float>` **inverse_inertia**
  96. +----------+-----------------------+
  97. | *Getter* | get_inverse_inertia() |
  98. +----------+-----------------------+
  99. The inverse of the inertia of the body.
  100. .. _class_Physics2DDirectBodyState_property_inverse_mass:
  101. - :ref:`float<class_float>` **inverse_mass**
  102. +----------+--------------------+
  103. | *Getter* | get_inverse_mass() |
  104. +----------+--------------------+
  105. The inverse of the mass of the body.
  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. .. _class_Physics2DDirectBodyState_property_sleeping:
  115. - :ref:`bool<class_bool>` **sleeping**
  116. +----------+------------------------+
  117. | *Setter* | set_sleep_state(value) |
  118. +----------+------------------------+
  119. | *Getter* | is_sleeping() |
  120. +----------+------------------------+
  121. If ``true``, this body is currently sleeping (not active).
  122. .. _class_Physics2DDirectBodyState_property_step:
  123. - :ref:`float<class_float>` **step**
  124. +----------+------------+
  125. | *Getter* | get_step() |
  126. +----------+------------+
  127. The timestep (delta) used for the simulation.
  128. .. _class_Physics2DDirectBodyState_property_total_angular_damp:
  129. - :ref:`float<class_float>` **total_angular_damp**
  130. +----------+--------------------------+
  131. | *Getter* | get_total_angular_damp() |
  132. +----------+--------------------------+
  133. The rate at which the body stops rotating, if there are not any other forces moving it.
  134. .. _class_Physics2DDirectBodyState_property_total_gravity:
  135. - :ref:`Vector2<class_Vector2>` **total_gravity**
  136. +----------+---------------------+
  137. | *Getter* | get_total_gravity() |
  138. +----------+---------------------+
  139. The total gravity vector being currently applied to this body.
  140. .. _class_Physics2DDirectBodyState_property_total_linear_damp:
  141. - :ref:`float<class_float>` **total_linear_damp**
  142. +----------+-------------------------+
  143. | *Getter* | get_total_linear_damp() |
  144. +----------+-------------------------+
  145. The rate at which the body stops moving, if there are not any other forces moving it.
  146. .. _class_Physics2DDirectBodyState_property_transform:
  147. - :ref:`Transform2D<class_Transform2D>` **transform**
  148. +----------+----------------------+
  149. | *Setter* | set_transform(value) |
  150. +----------+----------------------+
  151. | *Getter* | get_transform() |
  152. +----------+----------------------+
  153. The body's transformation matrix.
  154. Method Descriptions
  155. -------------------
  156. .. _class_Physics2DDirectBodyState_method_add_central_force:
  157. - void **add_central_force** **(** :ref:`Vector2<class_Vector2>` force **)**
  158. Adds a constant directional force without affecting rotation.
  159. .. _class_Physics2DDirectBodyState_method_add_force:
  160. - void **add_force** **(** :ref:`Vector2<class_Vector2>` offset, :ref:`Vector2<class_Vector2>` force **)**
  161. Adds a positioned force to the body. Both the force and the offset from the body origin are in global coordinates.
  162. .. _class_Physics2DDirectBodyState_method_add_torque:
  163. - void **add_torque** **(** :ref:`float<class_float>` torque **)**
  164. Adds a constant rotational force.
  165. .. _class_Physics2DDirectBodyState_method_apply_central_impulse:
  166. - void **apply_central_impulse** **(** :ref:`Vector2<class_Vector2>` impulse **)**
  167. Applies a directional impulse without affecting rotation.
  168. .. _class_Physics2DDirectBodyState_method_apply_impulse:
  169. - void **apply_impulse** **(** :ref:`Vector2<class_Vector2>` offset, :ref:`Vector2<class_Vector2>` impulse **)**
  170. 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.
  171. .. _class_Physics2DDirectBodyState_method_apply_torque_impulse:
  172. - void **apply_torque_impulse** **(** :ref:`float<class_float>` impulse **)**
  173. Applies a rotational impulse to the body.
  174. .. _class_Physics2DDirectBodyState_method_get_contact_collider:
  175. - :ref:`RID<class_RID>` **get_contact_collider** **(** :ref:`int<class_int>` contact_idx **)** const
  176. Returns the collider's :ref:`RID<class_RID>`.
  177. .. _class_Physics2DDirectBodyState_method_get_contact_collider_id:
  178. - :ref:`int<class_int>` **get_contact_collider_id** **(** :ref:`int<class_int>` contact_idx **)** const
  179. Returns the collider's object id.
  180. .. _class_Physics2DDirectBodyState_method_get_contact_collider_object:
  181. - :ref:`Object<class_Object>` **get_contact_collider_object** **(** :ref:`int<class_int>` contact_idx **)** const
  182. Returns the collider object. This depends on how it was created (will return a scene node if such was used to create it).
  183. .. _class_Physics2DDirectBodyState_method_get_contact_collider_position:
  184. - :ref:`Vector2<class_Vector2>` **get_contact_collider_position** **(** :ref:`int<class_int>` contact_idx **)** const
  185. Returns the contact position in the collider.
  186. .. _class_Physics2DDirectBodyState_method_get_contact_collider_shape:
  187. - :ref:`int<class_int>` **get_contact_collider_shape** **(** :ref:`int<class_int>` contact_idx **)** const
  188. Returns the collider's shape index.
  189. .. _class_Physics2DDirectBodyState_method_get_contact_collider_shape_metadata:
  190. - :ref:`Variant<class_Variant>` **get_contact_collider_shape_metadata** **(** :ref:`int<class_int>` contact_idx **)** const
  191. 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>`.
  192. .. _class_Physics2DDirectBodyState_method_get_contact_collider_velocity_at_position:
  193. - :ref:`Vector2<class_Vector2>` **get_contact_collider_velocity_at_position** **(** :ref:`int<class_int>` contact_idx **)** const
  194. Returns the linear velocity vector at the collider's contact point.
  195. .. _class_Physics2DDirectBodyState_method_get_contact_count:
  196. - :ref:`int<class_int>` **get_contact_count** **(** **)** const
  197. Returns the number of contacts this body has with other bodies.
  198. **Note:** By default, this returns 0 unless bodies are configured to monitor contacts. See :ref:`RigidBody2D.contact_monitor<class_RigidBody2D_property_contact_monitor>`.
  199. .. _class_Physics2DDirectBodyState_method_get_contact_local_normal:
  200. - :ref:`Vector2<class_Vector2>` **get_contact_local_normal** **(** :ref:`int<class_int>` contact_idx **)** const
  201. Returns the local normal at the contact point.
  202. .. _class_Physics2DDirectBodyState_method_get_contact_local_position:
  203. - :ref:`Vector2<class_Vector2>` **get_contact_local_position** **(** :ref:`int<class_int>` contact_idx **)** const
  204. Returns the local position of the contact point.
  205. .. _class_Physics2DDirectBodyState_method_get_contact_local_shape:
  206. - :ref:`int<class_int>` **get_contact_local_shape** **(** :ref:`int<class_int>` contact_idx **)** const
  207. Returns the local shape index of the collision.
  208. .. _class_Physics2DDirectBodyState_method_get_space_state:
  209. - :ref:`Physics2DDirectSpaceState<class_Physics2DDirectSpaceState>` **get_space_state** **(** **)**
  210. Returns the current state of the space, useful for queries.
  211. .. _class_Physics2DDirectBodyState_method_integrate_forces:
  212. - void **integrate_forces** **(** **)**
  213. Calls the built-in force integration code.