How To Call Oncollisionenter Unity Code Example


Example 1: unity oncollisionenter


void OnCollisionEnter(Collision col)
{
//This method will run when your game object
//collides with something

Debug.Log("Collided");
}

Example 2: oncollisionenter unity


void OnCollisionEnter(Collision collision) {
if (collision.gameObject.tag == "Door")
{
// DoorScript is the name you gave to the script on the door
DoorScript script = collision.gameObject.GetComponent<DoorScript>();
// OpenDoor is a method in your door object's script
script.OpenDoor();
}
}

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android SDK Location Should Not Contain Whitespace, As This Cause Problems With NDK Tools