Collider 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

Chemistry - Bond Angles In NH3 And NCl3

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?