Version: 2022.3
LanguageEnglish
  • C#

QueryParameters

struct in UnityEngine

/

Implemented in:UnityEngine.PhysicsModule

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Description

Creates a struct to set up parameters for batch queries: RaycastCommand, BoxcastCommand, CapsulecastCommand, SpherecastCommand.

Use this struct to configure hit flags and layer mask. This supports hit triggers, hit backfaces and hit multiple Mesh faces.

Note: Only RaycastCommand supports hitting multiple Mesh faces.

Static Properties

DefaultCreate a default QueryParameters struct.

Properties

hitBackfacesWhether physics queries should hit back-face triangles.
hitMultipleFacesWhether raycast batch query should hit multiple faces.
hitTriggersWhether queries hit Triggers by default.
layerMaskA LayerMask that is used to selectively ignore Colliders when casting a ray.

Constructors

QueryParametersStruct used to set up parameters for queries: RaycastCommand, BoxcastCommand, CapsulecastCommand, SpherecastCommand.