class_springarm3d.rst 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. :github_url: hide
  2. .. DO NOT EDIT THIS FILE!!!
  3. .. Generated automatically from Godot engine sources.
  4. .. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py.
  5. .. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SpringArm3D.xml.
  6. .. _class_SpringArm3D:
  7. SpringArm3D
  8. ===========
  9. **Inherits:** :ref:`Node3D<class_Node3D>` **<** :ref:`Node<class_Node>` **<** :ref:`Object<class_Object>`
  10. A 3D raycast that dynamically moves its children near the collision point.
  11. .. rst-class:: classref-introduction-group
  12. Description
  13. -----------
  14. **SpringArm3D** casts a ray or a shape along its Z axis and moves all its direct children to the collision point, with an optional margin. This is useful for 3rd person cameras that move closer to the player when inside a tight space (you may need to exclude the player's collider from the **SpringArm3D**'s collision check).
  15. .. rst-class:: classref-introduction-group
  16. Tutorials
  17. ---------
  18. - :doc:`Third-person camera with spring arm <../tutorials/3d/spring_arm>`
  19. .. rst-class:: classref-reftable-group
  20. Properties
  21. ----------
  22. .. table::
  23. :widths: auto
  24. +-------------------------------+------------------------------------------------------------------+----------+
  25. | :ref:`int<class_int>` | :ref:`collision_mask<class_SpringArm3D_property_collision_mask>` | ``1`` |
  26. +-------------------------------+------------------------------------------------------------------+----------+
  27. | :ref:`float<class_float>` | :ref:`margin<class_SpringArm3D_property_margin>` | ``0.01`` |
  28. +-------------------------------+------------------------------------------------------------------+----------+
  29. | :ref:`Shape3D<class_Shape3D>` | :ref:`shape<class_SpringArm3D_property_shape>` | |
  30. +-------------------------------+------------------------------------------------------------------+----------+
  31. | :ref:`float<class_float>` | :ref:`spring_length<class_SpringArm3D_property_spring_length>` | ``1.0`` |
  32. +-------------------------------+------------------------------------------------------------------+----------+
  33. .. rst-class:: classref-reftable-group
  34. Methods
  35. -------
  36. .. table::
  37. :widths: auto
  38. +---------------------------+-------------------------------------------------------------------------------------------------------------------+
  39. | |void| | :ref:`add_excluded_object<class_SpringArm3D_method_add_excluded_object>`\ (\ RID\: :ref:`RID<class_RID>`\ ) |
  40. +---------------------------+-------------------------------------------------------------------------------------------------------------------+
  41. | |void| | :ref:`clear_excluded_objects<class_SpringArm3D_method_clear_excluded_objects>`\ (\ ) |
  42. +---------------------------+-------------------------------------------------------------------------------------------------------------------+
  43. | :ref:`float<class_float>` | :ref:`get_hit_length<class_SpringArm3D_method_get_hit_length>`\ (\ ) |
  44. +---------------------------+-------------------------------------------------------------------------------------------------------------------+
  45. | :ref:`bool<class_bool>` | :ref:`remove_excluded_object<class_SpringArm3D_method_remove_excluded_object>`\ (\ RID\: :ref:`RID<class_RID>`\ ) |
  46. +---------------------------+-------------------------------------------------------------------------------------------------------------------+
  47. .. rst-class:: classref-section-separator
  48. ----
  49. .. rst-class:: classref-descriptions-group
  50. Property Descriptions
  51. ---------------------
  52. .. _class_SpringArm3D_property_collision_mask:
  53. .. rst-class:: classref-property
  54. :ref:`int<class_int>` **collision_mask** = ``1`` :ref:`🔗<class_SpringArm3D_property_collision_mask>`
  55. .. rst-class:: classref-property-setget
  56. - |void| **set_collision_mask**\ (\ value\: :ref:`int<class_int>`\ )
  57. - :ref:`int<class_int>` **get_collision_mask**\ (\ )
  58. The layers against which the collision check shall be done. See `Collision layers and masks <../tutorials/physics/physics_introduction.html#collision-layers-and-masks>`__ in the documentation for more information.
  59. .. rst-class:: classref-item-separator
  60. ----
  61. .. _class_SpringArm3D_property_margin:
  62. .. rst-class:: classref-property
  63. :ref:`float<class_float>` **margin** = ``0.01`` :ref:`🔗<class_SpringArm3D_property_margin>`
  64. .. rst-class:: classref-property-setget
  65. - |void| **set_margin**\ (\ value\: :ref:`float<class_float>`\ )
  66. - :ref:`float<class_float>` **get_margin**\ (\ )
  67. When the collision check is made, a candidate length for the SpringArm3D is given.
  68. The margin is then subtracted to this length and the translation is applied to the child objects of the SpringArm3D.
  69. This margin is useful for when the SpringArm3D has a :ref:`Camera3D<class_Camera3D>` as a child node: without the margin, the :ref:`Camera3D<class_Camera3D>` would be placed on the exact point of collision, while with the margin the :ref:`Camera3D<class_Camera3D>` would be placed close to the point of collision.
  70. .. rst-class:: classref-item-separator
  71. ----
  72. .. _class_SpringArm3D_property_shape:
  73. .. rst-class:: classref-property
  74. :ref:`Shape3D<class_Shape3D>` **shape** :ref:`🔗<class_SpringArm3D_property_shape>`
  75. .. rst-class:: classref-property-setget
  76. - |void| **set_shape**\ (\ value\: :ref:`Shape3D<class_Shape3D>`\ )
  77. - :ref:`Shape3D<class_Shape3D>` **get_shape**\ (\ )
  78. The :ref:`Shape3D<class_Shape3D>` to use for the SpringArm3D.
  79. When the shape is set, the SpringArm3D will cast the :ref:`Shape3D<class_Shape3D>` on its z axis instead of performing a ray cast.
  80. .. rst-class:: classref-item-separator
  81. ----
  82. .. _class_SpringArm3D_property_spring_length:
  83. .. rst-class:: classref-property
  84. :ref:`float<class_float>` **spring_length** = ``1.0`` :ref:`🔗<class_SpringArm3D_property_spring_length>`
  85. .. rst-class:: classref-property-setget
  86. - |void| **set_length**\ (\ value\: :ref:`float<class_float>`\ )
  87. - :ref:`float<class_float>` **get_length**\ (\ )
  88. The maximum extent of the SpringArm3D. This is used as a length for both the ray and the shape cast used internally to calculate the desired position of the SpringArm3D's child nodes.
  89. To know more about how to perform a shape cast or a ray cast, please consult the :ref:`PhysicsDirectSpaceState3D<class_PhysicsDirectSpaceState3D>` documentation.
  90. .. rst-class:: classref-section-separator
  91. ----
  92. .. rst-class:: classref-descriptions-group
  93. Method Descriptions
  94. -------------------
  95. .. _class_SpringArm3D_method_add_excluded_object:
  96. .. rst-class:: classref-method
  97. |void| **add_excluded_object**\ (\ RID\: :ref:`RID<class_RID>`\ ) :ref:`🔗<class_SpringArm3D_method_add_excluded_object>`
  98. Adds the :ref:`PhysicsBody3D<class_PhysicsBody3D>` object with the given :ref:`RID<class_RID>` to the list of :ref:`PhysicsBody3D<class_PhysicsBody3D>` objects excluded from the collision check.
  99. .. rst-class:: classref-item-separator
  100. ----
  101. .. _class_SpringArm3D_method_clear_excluded_objects:
  102. .. rst-class:: classref-method
  103. |void| **clear_excluded_objects**\ (\ ) :ref:`🔗<class_SpringArm3D_method_clear_excluded_objects>`
  104. Clears the list of :ref:`PhysicsBody3D<class_PhysicsBody3D>` objects excluded from the collision check.
  105. .. rst-class:: classref-item-separator
  106. ----
  107. .. _class_SpringArm3D_method_get_hit_length:
  108. .. rst-class:: classref-method
  109. :ref:`float<class_float>` **get_hit_length**\ (\ ) :ref:`🔗<class_SpringArm3D_method_get_hit_length>`
  110. Returns the spring arm's current length.
  111. .. rst-class:: classref-item-separator
  112. ----
  113. .. _class_SpringArm3D_method_remove_excluded_object:
  114. .. rst-class:: classref-method
  115. :ref:`bool<class_bool>` **remove_excluded_object**\ (\ RID\: :ref:`RID<class_RID>`\ ) :ref:`🔗<class_SpringArm3D_method_remove_excluded_object>`
  116. Removes the given :ref:`RID<class_RID>` from the list of :ref:`PhysicsBody3D<class_PhysicsBody3D>` objects excluded from the collision check.
  117. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  118. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  119. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  120. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  121. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  122. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  123. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`
  124. .. |void| replace:: :abbr:`void (No return value.)`