class_physicsshapequeryparameters3d.rst 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  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/PhysicsShapeQueryParameters3D.xml.
  6. .. _class_PhysicsShapeQueryParameters3D:
  7. PhysicsShapeQueryParameters3D
  8. =============================
  9. **Inherits:** :ref:`RefCounted<class_RefCounted>` **<** :ref:`Object<class_Object>`
  10. Parameters to be sent to a 3D shape physics query.
  11. Description
  12. -----------
  13. This class contains the shape and other parameters for :ref:`PhysicsDirectSpaceState3D<class_PhysicsDirectSpaceState3D>` intersection/collision queries.
  14. Properties
  15. ----------
  16. +---------------------------------------+----------------------------------------------------------------------------------------------+-----------------------------------------------------+
  17. | :ref:`bool<class_bool>` | :ref:`collide_with_areas<class_PhysicsShapeQueryParameters3D_property_collide_with_areas>` | ``false`` |
  18. +---------------------------------------+----------------------------------------------------------------------------------------------+-----------------------------------------------------+
  19. | :ref:`bool<class_bool>` | :ref:`collide_with_bodies<class_PhysicsShapeQueryParameters3D_property_collide_with_bodies>` | ``true`` |
  20. +---------------------------------------+----------------------------------------------------------------------------------------------+-----------------------------------------------------+
  21. | :ref:`int<class_int>` | :ref:`collision_mask<class_PhysicsShapeQueryParameters3D_property_collision_mask>` | ``4294967295`` |
  22. +---------------------------------------+----------------------------------------------------------------------------------------------+-----------------------------------------------------+
  23. | :ref:`Array<class_Array>` | :ref:`exclude<class_PhysicsShapeQueryParameters3D_property_exclude>` | ``[]`` |
  24. +---------------------------------------+----------------------------------------------------------------------------------------------+-----------------------------------------------------+
  25. | :ref:`float<class_float>` | :ref:`margin<class_PhysicsShapeQueryParameters3D_property_margin>` | ``0.0`` |
  26. +---------------------------------------+----------------------------------------------------------------------------------------------+-----------------------------------------------------+
  27. | :ref:`Vector3<class_Vector3>` | :ref:`motion<class_PhysicsShapeQueryParameters3D_property_motion>` | ``Vector3(0, 0, 0)`` |
  28. +---------------------------------------+----------------------------------------------------------------------------------------------+-----------------------------------------------------+
  29. | :ref:`Resource<class_Resource>` | :ref:`shape<class_PhysicsShapeQueryParameters3D_property_shape>` | |
  30. +---------------------------------------+----------------------------------------------------------------------------------------------+-----------------------------------------------------+
  31. | :ref:`RID<class_RID>` | :ref:`shape_rid<class_PhysicsShapeQueryParameters3D_property_shape_rid>` | |
  32. +---------------------------------------+----------------------------------------------------------------------------------------------+-----------------------------------------------------+
  33. | :ref:`Transform3D<class_Transform3D>` | :ref:`transform<class_PhysicsShapeQueryParameters3D_property_transform>` | ``Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0)`` |
  34. +---------------------------------------+----------------------------------------------------------------------------------------------+-----------------------------------------------------+
  35. Property Descriptions
  36. ---------------------
  37. .. _class_PhysicsShapeQueryParameters3D_property_collide_with_areas:
  38. - :ref:`bool<class_bool>` **collide_with_areas**
  39. +-----------+---------------------------------+
  40. | *Default* | ``false`` |
  41. +-----------+---------------------------------+
  42. | *Setter* | set_collide_with_areas(value) |
  43. +-----------+---------------------------------+
  44. | *Getter* | is_collide_with_areas_enabled() |
  45. +-----------+---------------------------------+
  46. If ``true``, the query will take :ref:`Area3D<class_Area3D>`\ s into account.
  47. ----
  48. .. _class_PhysicsShapeQueryParameters3D_property_collide_with_bodies:
  49. - :ref:`bool<class_bool>` **collide_with_bodies**
  50. +-----------+----------------------------------+
  51. | *Default* | ``true`` |
  52. +-----------+----------------------------------+
  53. | *Setter* | set_collide_with_bodies(value) |
  54. +-----------+----------------------------------+
  55. | *Getter* | is_collide_with_bodies_enabled() |
  56. +-----------+----------------------------------+
  57. If ``true``, the query will take :ref:`PhysicsBody3D<class_PhysicsBody3D>`\ s into account.
  58. ----
  59. .. _class_PhysicsShapeQueryParameters3D_property_collision_mask:
  60. - :ref:`int<class_int>` **collision_mask**
  61. +-----------+---------------------------+
  62. | *Default* | ``4294967295`` |
  63. +-----------+---------------------------+
  64. | *Setter* | set_collision_mask(value) |
  65. +-----------+---------------------------+
  66. | *Getter* | get_collision_mask() |
  67. +-----------+---------------------------+
  68. The physics layers the query will detect (as a bitmask). By default, all collision layers are detected. See `Collision layers and masks <../tutorials/physics/physics_introduction.html#collision-layers-and-masks>`__ in the documentation for more information.
  69. ----
  70. .. _class_PhysicsShapeQueryParameters3D_property_exclude:
  71. - :ref:`Array<class_Array>` **exclude**
  72. +-----------+--------------------+
  73. | *Default* | ``[]`` |
  74. +-----------+--------------------+
  75. | *Setter* | set_exclude(value) |
  76. +-----------+--------------------+
  77. | *Getter* | get_exclude() |
  78. +-----------+--------------------+
  79. The list of objects or object :ref:`RID<class_RID>`\ s that will be excluded from collisions.
  80. ----
  81. .. _class_PhysicsShapeQueryParameters3D_property_margin:
  82. - :ref:`float<class_float>` **margin**
  83. +-----------+-------------------+
  84. | *Default* | ``0.0`` |
  85. +-----------+-------------------+
  86. | *Setter* | set_margin(value) |
  87. +-----------+-------------------+
  88. | *Getter* | get_margin() |
  89. +-----------+-------------------+
  90. The collision margin for the shape.
  91. ----
  92. .. _class_PhysicsShapeQueryParameters3D_property_motion:
  93. - :ref:`Vector3<class_Vector3>` **motion**
  94. +-----------+----------------------+
  95. | *Default* | ``Vector3(0, 0, 0)`` |
  96. +-----------+----------------------+
  97. | *Setter* | set_motion(value) |
  98. +-----------+----------------------+
  99. | *Getter* | get_motion() |
  100. +-----------+----------------------+
  101. The motion of the shape being queried for.
  102. ----
  103. .. _class_PhysicsShapeQueryParameters3D_property_shape:
  104. - :ref:`Resource<class_Resource>` **shape**
  105. +----------+------------------+
  106. | *Setter* | set_shape(value) |
  107. +----------+------------------+
  108. | *Getter* | get_shape() |
  109. +----------+------------------+
  110. The :ref:`Shape3D<class_Shape3D>` that will be used for collision/intersection queries. This stores the actual reference which avoids the shape to be released while being used for queries, so always prefer using this over :ref:`shape_rid<class_PhysicsShapeQueryParameters3D_property_shape_rid>`.
  111. ----
  112. .. _class_PhysicsShapeQueryParameters3D_property_shape_rid:
  113. - :ref:`RID<class_RID>` **shape_rid**
  114. +----------+----------------------+
  115. | *Setter* | set_shape_rid(value) |
  116. +----------+----------------------+
  117. | *Getter* | get_shape_rid() |
  118. +----------+----------------------+
  119. The queried shape's :ref:`RID<class_RID>` that will be used for collision/intersection queries. Use this over :ref:`shape<class_PhysicsShapeQueryParameters3D_property_shape>` if you want to optimize for performance using the Servers API:
  120. .. tabs::
  121. .. code-tab:: gdscript
  122. var shape_rid = PhysicsServer3D.shape_create(PhysicsServer3D.SHAPE_SPHERE)
  123. var radius = 2.0
  124. PhysicsServer3D.shape_set_data(shape_rid, radius)
  125. var params = PhysicsShapeQueryParameters3D.new()
  126. params.shape_rid = shape_rid
  127. # Execute physics queries here...
  128. # Release the shape when done with physics queries.
  129. PhysicsServer3D.free_rid(shape_rid)
  130. .. code-tab:: csharp
  131. RID shapeRid = PhysicsServer3D.ShapeCreate(PhysicsServer3D.ShapeType.Sphere);
  132. float radius = 2.0f;
  133. PhysicsServer3D.ShapeSetData(shapeRid, radius);
  134. var params = new PhysicsShapeQueryParameters3D();
  135. params.ShapeRid = shapeRid;
  136. // Execute physics queries here...
  137. // Release the shape when done with physics queries.
  138. PhysicsServer3D.FreeRid(shapeRid);
  139. ----
  140. .. _class_PhysicsShapeQueryParameters3D_property_transform:
  141. - :ref:`Transform3D<class_Transform3D>` **transform**
  142. +-----------+-----------------------------------------------------+
  143. | *Default* | ``Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0)`` |
  144. +-----------+-----------------------------------------------------+
  145. | *Setter* | set_transform(value) |
  146. +-----------+-----------------------------------------------------+
  147. | *Getter* | get_transform() |
  148. +-----------+-----------------------------------------------------+
  149. The queried shape's transform matrix.
  150. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  151. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  152. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  153. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  154. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  155. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`