| Parameter | Description |
|---|---|
| collider | 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 ContactFilter2D.useTriggers to be filtered.
Filtering is defined as including or excluding objects based upon a specific condition. Trigger filtering checks the Collider2D.isTrigger and includes it if triggers are being used and excludes it otherwise.
IsFilteringTriggers returns true when ContactFilter2D.useTriggers is set to false and Collider2D.isTrigger is true. This indicates the collider is filtered which means it should be excluded. IsFilteringTriggers returns false if otherwise.
Additional resources: ContactFilter2D.useTriggers