class_raycast.rst 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. .. Generated automatically by doc/tools/makerst.py in Godot's source tree.
  2. .. DO NOT EDIT THIS FILE, but the RayCast.xml source instead.
  3. .. The source is found in doc/classes or modules/<name>/doc_classes.
  4. .. _class_RayCast:
  5. RayCast
  6. =======
  7. **Inherits:** :ref:`Spatial<class_spatial>` **<** :ref:`Node<class_node>` **<** :ref:`Object<class_object>`
  8. **Category:** Core
  9. Brief Description
  10. -----------------
  11. Query the closest object intersecting a ray.
  12. Member Functions
  13. ----------------
  14. +--------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  15. | void | :ref:`add_exception<class_RayCast_add_exception>` **(** :ref:`Object<class_object>` node **)** |
  16. +--------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  17. | void | :ref:`add_exception_rid<class_RayCast_add_exception_rid>` **(** :ref:`RID<class_rid>` rid **)** |
  18. +--------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  19. | void | :ref:`clear_exceptions<class_RayCast_clear_exceptions>` **(** **)** |
  20. +--------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  21. | void | :ref:`force_raycast_update<class_RayCast_force_raycast_update>` **(** **)** |
  22. +--------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  23. | :ref:`Vector3<class_vector3>` | :ref:`get_cast_to<class_RayCast_get_cast_to>` **(** **)** const |
  24. +--------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  25. | :ref:`Object<class_object>` | :ref:`get_collider<class_RayCast_get_collider>` **(** **)** const |
  26. +--------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  27. | :ref:`int<class_int>` | :ref:`get_collider_shape<class_RayCast_get_collider_shape>` **(** **)** const |
  28. +--------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  29. | :ref:`int<class_int>` | :ref:`get_collision_mask<class_RayCast_get_collision_mask>` **(** **)** const |
  30. +--------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  31. | :ref:`bool<class_bool>` | :ref:`get_collision_mask_bit<class_RayCast_get_collision_mask_bit>` **(** :ref:`int<class_int>` bit **)** const |
  32. +--------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  33. | :ref:`Vector3<class_vector3>` | :ref:`get_collision_normal<class_RayCast_get_collision_normal>` **(** **)** const |
  34. +--------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  35. | :ref:`Vector3<class_vector3>` | :ref:`get_collision_point<class_RayCast_get_collision_point>` **(** **)** const |
  36. +--------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  37. | :ref:`int<class_int>` | :ref:`get_type_mask<class_RayCast_get_type_mask>` **(** **)** const |
  38. +--------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  39. | :ref:`bool<class_bool>` | :ref:`is_colliding<class_RayCast_is_colliding>` **(** **)** const |
  40. +--------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  41. | :ref:`bool<class_bool>` | :ref:`is_enabled<class_RayCast_is_enabled>` **(** **)** const |
  42. +--------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  43. | void | :ref:`remove_exception<class_RayCast_remove_exception>` **(** :ref:`Object<class_object>` node **)** |
  44. +--------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  45. | void | :ref:`remove_exception_rid<class_RayCast_remove_exception_rid>` **(** :ref:`RID<class_rid>` rid **)** |
  46. +--------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  47. | void | :ref:`set_cast_to<class_RayCast_set_cast_to>` **(** :ref:`Vector3<class_vector3>` local_point **)** |
  48. +--------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  49. | void | :ref:`set_collision_mask<class_RayCast_set_collision_mask>` **(** :ref:`int<class_int>` mask **)** |
  50. +--------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  51. | void | :ref:`set_collision_mask_bit<class_RayCast_set_collision_mask_bit>` **(** :ref:`int<class_int>` bit, :ref:`bool<class_bool>` value **)** |
  52. +--------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  53. | void | :ref:`set_enabled<class_RayCast_set_enabled>` **(** :ref:`bool<class_bool>` enabled **)** |
  54. +--------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  55. | void | :ref:`set_type_mask<class_RayCast_set_type_mask>` **(** :ref:`int<class_int>` mask **)** |
  56. +--------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  57. Member Variables
  58. ----------------
  59. .. _class_RayCast_cast_to:
  60. - :ref:`Vector3<class_vector3>` **cast_to** - The ray's destination point, relative to the RayCast's ``position``.
  61. .. _class_RayCast_collision_mask:
  62. - :ref:`int<class_int>` **collision_mask** - The ray's collision mask. Only objects in at least one collision layer enabled in the mask will be detected.
  63. .. _class_RayCast_enabled:
  64. - :ref:`bool<class_bool>` **enabled** - If ``true``, collisions will be reported. Default value: ``false``.
  65. .. _class_RayCast_type_mask:
  66. - :ref:`int<class_int>` **type_mask** - Object types to detect using a logical sum (OR operation) of type constants defined in :ref:`Physics2DDirectSpaceState<class_physics2ddirectspacestate>`.
  67. Example:
  68. ::
  69. RayCast.type_mask = Physics2DDirectSpaceState.TYPE_MASK_STATIC_BODY | Physics2DDirectSpaceState.TYPE_MASK_KINEMATIC_BODY
  70. Description
  71. -----------
  72. A RayCast represents a line from its origin to its destination position, ``cast_to``. It is used to query the 3D space in order to find the closest object along the path of the ray.
  73. RayCast can ignore some objects by adding them to the exception list via ``add_exception``, by setting proper filtering with collision layers, or by filtering object types with type masks.
  74. Only enabled raycasts will be able to query the space and report collisions.
  75. RayCast calculates intersection every physics frame (see :ref:`Node<class_node>`), and the result is cached so it can be used later until the next frame. If multiple queries are required between physics frames (or during the same frame) use :ref:`force_raycast_update<class_RayCast_force_raycast_update>` after adjusting the raycast.
  76. Member Function Description
  77. ---------------------------
  78. .. _class_RayCast_add_exception:
  79. - void **add_exception** **(** :ref:`Object<class_object>` node **)**
  80. Adds a collision exception so the ray does not report collisions with the specified node.
  81. .. _class_RayCast_add_exception_rid:
  82. - void **add_exception_rid** **(** :ref:`RID<class_rid>` rid **)**
  83. Adds a collision exception so the ray does not report collisions with the specified :ref:`RID<class_rid>`.
  84. .. _class_RayCast_clear_exceptions:
  85. - void **clear_exceptions** **(** **)**
  86. Removes all collision exceptions for this ray.
  87. .. _class_RayCast_force_raycast_update:
  88. - void **force_raycast_update** **(** **)**
  89. Updates the collision information for the ray.
  90. Use this method to update the collision information immediately instead of waiting for the next ``_physics_process`` call, for example if the ray or its parent has changed state. Note: ``enabled == true`` is not required for this to work.
  91. .. _class_RayCast_get_cast_to:
  92. - :ref:`Vector3<class_vector3>` **get_cast_to** **(** **)** const
  93. Return the destination point of this ray object.
  94. .. _class_RayCast_get_collider:
  95. - :ref:`Object<class_object>` **get_collider** **(** **)** const
  96. Return the closest object the ray is pointing to. Note that this does not consider the length of the ray, so you must also use :ref:`is_colliding<class_RayCast_is_colliding>` to check if the object returned is actually colliding with the ray.
  97. Example:
  98. ::
  99. if RayCast.is_colliding():
  100. var collider = RayCast.get_collider()
  101. .. _class_RayCast_get_collider_shape:
  102. - :ref:`int<class_int>` **get_collider_shape** **(** **)** const
  103. Returns the collision shape of the closest object the ray is pointing to. Note that this does not consider the length of the ray, so you must also use :ref:`is_colliding<class_RayCast_is_colliding>` to check if the object returned is actually colliding with the ray.
  104. Example:
  105. ::
  106. if RayCast.is_colliding():
  107. var shape = RayCast.get_collider_shape()
  108. .. _class_RayCast_get_collision_mask:
  109. - :ref:`int<class_int>` **get_collision_mask** **(** **)** const
  110. Returns the collision mask for this ray.
  111. .. _class_RayCast_get_collision_mask_bit:
  112. - :ref:`bool<class_bool>` **get_collision_mask_bit** **(** :ref:`int<class_int>` bit **)** const
  113. .. _class_RayCast_get_collision_normal:
  114. - :ref:`Vector3<class_vector3>` **get_collision_normal** **(** **)** const
  115. Returns the normal of the intersecting object's shape at the collision point.
  116. .. _class_RayCast_get_collision_point:
  117. - :ref:`Vector3<class_vector3>` **get_collision_point** **(** **)** const
  118. Returns the collision point at which the ray intersects the closest object. Note: this point is in the **global** coordinate system.
  119. .. _class_RayCast_get_type_mask:
  120. - :ref:`int<class_int>` **get_type_mask** **(** **)** const
  121. Returns the type mask (types of objects to detect) for this ray. The value is a sum (bitwise OR'd) of constants available for :ref:`PhysicsDirectSpaceState<class_physicsdirectspacestate>`.
  122. .. _class_RayCast_is_colliding:
  123. - :ref:`bool<class_bool>` **is_colliding** **(** **)** const
  124. Return whether the closest object the ray is pointing to is colliding with the vector (considering the vector length).
  125. .. _class_RayCast_is_enabled:
  126. - :ref:`bool<class_bool>` **is_enabled** **(** **)** const
  127. Returns whether the ray is enabled or not.
  128. .. _class_RayCast_remove_exception:
  129. - void **remove_exception** **(** :ref:`Object<class_object>` node **)**
  130. Removes a collision exception so the ray does report collisions with the specified node.
  131. .. _class_RayCast_remove_exception_rid:
  132. - void **remove_exception_rid** **(** :ref:`RID<class_rid>` rid **)**
  133. Removes a collision exception so the ray does report collisions with the specified :ref:`RID<class_rid>`.
  134. .. _class_RayCast_set_cast_to:
  135. - void **set_cast_to** **(** :ref:`Vector3<class_vector3>` local_point **)**
  136. Sets the ray destination point, so that the ray will test from the ray's origin to ``local_point``.
  137. .. _class_RayCast_set_collision_mask:
  138. - void **set_collision_mask** **(** :ref:`int<class_int>` mask **)**
  139. Set the mask to filter objects. Only objects in at least one collision layer enabled in the mask will be detected.
  140. .. _class_RayCast_set_collision_mask_bit:
  141. - void **set_collision_mask_bit** **(** :ref:`int<class_int>` bit, :ref:`bool<class_bool>` value **)**
  142. .. _class_RayCast_set_enabled:
  143. - void **set_enabled** **(** :ref:`bool<class_bool>` enabled **)**
  144. Enables the RayCast2D. Only enabled raycasts will be able to query the space and report collisions.
  145. .. _class_RayCast_set_type_mask:
  146. - void **set_type_mask** **(** :ref:`int<class_int>` mask **)**
  147. Set the types of objects to detect. For ``mask`` use a logic sum (OR operation) of constants defined in :ref:`PhysicsDirectSpaceState<class_physicsdirectspacestate>`, eg. ``PhysicsDirectSpaceState.TYPE_MASK_STATIC_BODY | PhysicsDirectSpaceState.TYPE_MASK_KINEMATIC_BODY`` to detect only those two types.