class_raycast.rst 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  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:`Object<class_object>` | :ref:`get_collider<class_RayCast_get_collider>` **(** **)** const |
  24. +--------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  25. | :ref:`int<class_int>` | :ref:`get_collider_shape<class_RayCast_get_collider_shape>` **(** **)** const |
  26. +--------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  27. | :ref:`bool<class_bool>` | :ref:`get_collision_mask_bit<class_RayCast_get_collision_mask_bit>` **(** :ref:`int<class_int>` bit **)** const |
  28. +--------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  29. | :ref:`Vector3<class_vector3>` | :ref:`get_collision_normal<class_RayCast_get_collision_normal>` **(** **)** const |
  30. +--------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  31. | :ref:`Vector3<class_vector3>` | :ref:`get_collision_point<class_RayCast_get_collision_point>` **(** **)** const |
  32. +--------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  33. | :ref:`bool<class_bool>` | :ref:`is_colliding<class_RayCast_is_colliding>` **(** **)** const |
  34. +--------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  35. | void | :ref:`remove_exception<class_RayCast_remove_exception>` **(** :ref:`Object<class_object>` node **)** |
  36. +--------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  37. | void | :ref:`remove_exception_rid<class_RayCast_remove_exception_rid>` **(** :ref:`RID<class_rid>` rid **)** |
  38. +--------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  39. | void | :ref:`set_collision_mask_bit<class_RayCast_set_collision_mask_bit>` **(** :ref:`int<class_int>` bit, :ref:`bool<class_bool>` value **)** |
  40. +--------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  41. Member Variables
  42. ----------------
  43. .. _class_RayCast_cast_to:
  44. - :ref:`Vector3<class_vector3>` **cast_to** - The ray's destination point, relative to the RayCast's ``position``.
  45. .. _class_RayCast_collision_mask:
  46. - :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.
  47. .. _class_RayCast_enabled:
  48. - :ref:`bool<class_bool>` **enabled** - If ``true`` collisions will be reported. Default value: ``false``.
  49. .. _class_RayCast_exclude_parent:
  50. - :ref:`bool<class_bool>` **exclude_parent** - If ``true`` collisions will be ignored for this RayCast's immediate parent. Default value: ``true``.
  51. Description
  52. -----------
  53. 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.
  54. 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.
  55. Only enabled raycasts will be able to query the space and report collisions.
  56. 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.
  57. Member Function Description
  58. ---------------------------
  59. .. _class_RayCast_add_exception:
  60. - void **add_exception** **(** :ref:`Object<class_object>` node **)**
  61. Adds a collision exception so the ray does not report collisions with the specified node.
  62. .. _class_RayCast_add_exception_rid:
  63. - void **add_exception_rid** **(** :ref:`RID<class_rid>` rid **)**
  64. Adds a collision exception so the ray does not report collisions with the specified :ref:`RID<class_rid>`.
  65. .. _class_RayCast_clear_exceptions:
  66. - void **clear_exceptions** **(** **)**
  67. Removes all collision exceptions for this ray.
  68. .. _class_RayCast_force_raycast_update:
  69. - void **force_raycast_update** **(** **)**
  70. Updates the collision information for the ray.
  71. 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.
  72. .. _class_RayCast_get_collider:
  73. - :ref:`Object<class_object>` **get_collider** **(** **)** const
  74. 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.
  75. Example:
  76. ::
  77. if RayCast.is_colliding():
  78. var collider = RayCast.get_collider()
  79. .. _class_RayCast_get_collider_shape:
  80. - :ref:`int<class_int>` **get_collider_shape** **(** **)** const
  81. 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.
  82. Example:
  83. ::
  84. if RayCast.is_colliding():
  85. var shape = RayCast.get_collider_shape()
  86. .. _class_RayCast_get_collision_mask_bit:
  87. - :ref:`bool<class_bool>` **get_collision_mask_bit** **(** :ref:`int<class_int>` bit **)** const
  88. Returns ``true`` if the bit index passed is turned on. Note that bit indexes range from 0-19.
  89. .. _class_RayCast_get_collision_normal:
  90. - :ref:`Vector3<class_vector3>` **get_collision_normal** **(** **)** const
  91. Returns the normal of the intersecting object's shape at the collision point.
  92. .. _class_RayCast_get_collision_point:
  93. - :ref:`Vector3<class_vector3>` **get_collision_point** **(** **)** const
  94. Returns the collision point at which the ray intersects the closest object. Note: this point is in the **global** coordinate system.
  95. .. _class_RayCast_is_colliding:
  96. - :ref:`bool<class_bool>` **is_colliding** **(** **)** const
  97. Return whether the closest object the ray is pointing to is colliding with the vector (considering the vector length).
  98. .. _class_RayCast_remove_exception:
  99. - void **remove_exception** **(** :ref:`Object<class_object>` node **)**
  100. Removes a collision exception so the ray does report collisions with the specified node.
  101. .. _class_RayCast_remove_exception_rid:
  102. - void **remove_exception_rid** **(** :ref:`RID<class_rid>` rid **)**
  103. Removes a collision exception so the ray does report collisions with the specified :ref:`RID<class_rid>`.
  104. .. _class_RayCast_set_collision_mask_bit:
  105. - void **set_collision_mask_bit** **(** :ref:`int<class_int>` bit, :ref:`bool<class_bool>` value **)**
  106. Sets the bit index passed to the ``value`` passed. Note that bit indexes range from 0-19.