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

530 Valid Hostname Is Expected When Setting Up IIS 10 For Multiple Sites

C Perror Example

Converting A String To Int In Groovy