# IgnoreCollision(Collider2D, Collider2D, bool)

> Makes the collision detection system ignore all collisions/triggers between collider1 and collider2.

## Definition

* **Type:** Method
* **Namespace:** [UnityEngine](/engine/6000.3/script-reference/unityengine.md)
* **Assembly:** UnityEngine.Physics2DModule

```csharp
public static void IgnoreCollision(Collider2D collider1, Collider2D collider2, bool ignore)
```

### Parameters

**** (\[Collider2D]\(/engine/6000.3/script-reference/unityengine/collider2d)): The first Collider to compare to `collider2`.**** (\[Collider2D]\(/engine/6000.3/script-reference/unityengine/collider2d)): The second Collider to compare to `collider1`.**** (\[bool]\(https\://learn.microsoft.com/dotnet/api/system.boolean)): Whether collisions/triggers between `collider1` and `collider2` should be ignored or not.

### Remarks

Ignoring collisions refers to any type of interaction between the selected Colliders i.e. no collision or trigger interaction will occur.  Collision layers are first checked to see the two layers can interact and if not then no interactions take place.  Following that, ignoring specific Colliders interactions will occur.

IgnoreCollision has a few limitations:

1. It is not persistent. This means that the ignore collision state will not be stored in the editor when saving a Scene.
2. You can only apply the ignore collision to Colliders in active game objects. When deactivating the Collider the IgnoreCollision state will be lost and you have to call Physics2D.IgnoreCollision again. Additional Resources: [Physics2D.GetIgnoreCollision](/engine/6000.3/script-reference/unityengine/physics2d/getignorecollision.md), [Physics2D.IgnoreLayerCollision](/engine/6000.3/script-reference/unityengine/physics2d/ignorelayercollision.md).

### Examples

```csharp
using UnityEngine;

public class Example : MonoBehaviour
{
    // Instantiate a bullet and make it ignore collisions with this object.

    Transform bulletPrefab;

    void Start()
    {
        var bullet = Instantiate(bulletPrefab) as Transform;
        Physics2D.IgnoreCollision(bullet.GetComponent<Collider2D>(), GetComponent<Collider2D>());
    }
}
```
