Legacy Documentation: Version 2017.1 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Collider2D.isTrigger

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

public var isTrigger: bool;
public bool isTrigger;

Description

Is this collider configured as a trigger?

#pragma strict
public var coll: Collider2D;
// Use this for initialization
function Start() {
	//Check if the isTrigger option on th Collider2D is set to true or false
	if (coll.isTrigger) {
		Debug.Log("This Collider2D can be triggered");
	}
	elseif (!coll.isTrigger) {
		Debug.Log("This Collider2D cannot be triggered");
	}
}
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public Collider2D coll;

// Use this for initialization void Start() { //Check if the isTrigger option on th Collider2D is set to true or false if (coll.isTrigger) { Debug.Log("This Collider2D can be triggered"); } else if (!coll.isTrigger) { Debug.Log("This Collider2D cannot be triggered"); } } }

Did you find this page useful? Please give it a rating: