123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- :github_url: hide
- .. Generated automatically by doc/tools/makerst.py in Godot's source tree.
- .. DO NOT EDIT THIS FILE, but the PhysicsShapeQueryParameters.xml source instead.
- .. The source is found in doc/classes or modules/<name>/doc_classes.
- .. _class_PhysicsShapeQueryParameters:
- PhysicsShapeQueryParameters
- ===========================
- **Inherits:** :ref:`Reference<class_Reference>` **<** :ref:`Object<class_Object>`
- **Category:** Core
- Brief Description
- -----------------
- Properties
- ----------
- +-----------------------------------+--------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`collide_with_areas<class_PhysicsShapeQueryParameters_property_collide_with_areas>` |
- +-----------------------------------+--------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`collide_with_bodies<class_PhysicsShapeQueryParameters_property_collide_with_bodies>` |
- +-----------------------------------+--------------------------------------------------------------------------------------------+
- | :ref:`int<class_int>` | :ref:`collision_mask<class_PhysicsShapeQueryParameters_property_collision_mask>` |
- +-----------------------------------+--------------------------------------------------------------------------------------------+
- | :ref:`Array<class_Array>` | :ref:`exclude<class_PhysicsShapeQueryParameters_property_exclude>` |
- +-----------------------------------+--------------------------------------------------------------------------------------------+
- | :ref:`float<class_float>` | :ref:`margin<class_PhysicsShapeQueryParameters_property_margin>` |
- +-----------------------------------+--------------------------------------------------------------------------------------------+
- | :ref:`RID<class_RID>` | :ref:`shape_rid<class_PhysicsShapeQueryParameters_property_shape_rid>` |
- +-----------------------------------+--------------------------------------------------------------------------------------------+
- | :ref:`Transform<class_Transform>` | :ref:`transform<class_PhysicsShapeQueryParameters_property_transform>` |
- +-----------------------------------+--------------------------------------------------------------------------------------------+
- Methods
- -------
- +------+------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`set_shape<class_PhysicsShapeQueryParameters_method_set_shape>` **(** :ref:`Resource<class_Resource>` shape **)** |
- +------+------------------------------------------------------------------------------------------------------------------------+
- Property Descriptions
- ---------------------
- .. _class_PhysicsShapeQueryParameters_property_collide_with_areas:
- - :ref:`bool<class_bool>` **collide_with_areas**
- +----------+---------------------------------+
- | *Setter* | set_collide_with_areas(value) |
- +----------+---------------------------------+
- | *Getter* | is_collide_with_areas_enabled() |
- +----------+---------------------------------+
- ----
- .. _class_PhysicsShapeQueryParameters_property_collide_with_bodies:
- - :ref:`bool<class_bool>` **collide_with_bodies**
- +----------+----------------------------------+
- | *Setter* | set_collide_with_bodies(value) |
- +----------+----------------------------------+
- | *Getter* | is_collide_with_bodies_enabled() |
- +----------+----------------------------------+
- ----
- .. _class_PhysicsShapeQueryParameters_property_collision_mask:
- - :ref:`int<class_int>` **collision_mask**
- +----------+---------------------------+
- | *Setter* | set_collision_mask(value) |
- +----------+---------------------------+
- | *Getter* | get_collision_mask() |
- +----------+---------------------------+
- ----
- .. _class_PhysicsShapeQueryParameters_property_exclude:
- - :ref:`Array<class_Array>` **exclude**
- +----------+--------------------+
- | *Setter* | set_exclude(value) |
- +----------+--------------------+
- | *Getter* | get_exclude() |
- +----------+--------------------+
- ----
- .. _class_PhysicsShapeQueryParameters_property_margin:
- - :ref:`float<class_float>` **margin**
- +----------+-------------------+
- | *Setter* | set_margin(value) |
- +----------+-------------------+
- | *Getter* | get_margin() |
- +----------+-------------------+
- ----
- .. _class_PhysicsShapeQueryParameters_property_shape_rid:
- - :ref:`RID<class_RID>` **shape_rid**
- +----------+----------------------+
- | *Setter* | set_shape_rid(value) |
- +----------+----------------------+
- | *Getter* | get_shape_rid() |
- +----------+----------------------+
- ----
- .. _class_PhysicsShapeQueryParameters_property_transform:
- - :ref:`Transform<class_Transform>` **transform**
- +----------+----------------------+
- | *Setter* | set_transform(value) |
- +----------+----------------------+
- | *Getter* | get_transform() |
- +----------+----------------------+
- Method Descriptions
- -------------------
- .. _class_PhysicsShapeQueryParameters_method_set_shape:
- - void **set_shape** **(** :ref:`Resource<class_Resource>` shape **)**
|