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.
CloseFor 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.
Closecollider | The Collider2D used to check for a trigger. |
bool
Returns true when collider
is excluded by the filter and false if otherwise.
Checks if the collider
is a trigger and should be filtered by the useTriggers to be filtered.
Filtering is defined as including or excluding objects based upon a specific condition. Trigger filtering checks the Collider.isTrigger and includes it if triggers are being used and excludes it otherwise.
IsFilteringTriggers returns true when useTriggers is set to false and Collider.isTrigger is true. This indicates the collider
is filtered which means it should be excluded. IsFilteringTriggers returns false if otherwise.
See Also: useTriggers.