Answers for "how to check if object has script unity"

C#
1

unity check if other object is colliding

public void OnCollisionEnter(Collision collision)
     {
         // Do your stuff here
     }
     
     //if your collider is a trigger
     public void OnTriggerEnter(Collider other)
     {
         // Do your stuff here
     }
Posted by: Guest on February-21-2021
0

get if object has tag unity

if (NameOfGameObject.tag == "A-Tag") {

// some code

}
Posted by: Guest on October-12-2020

Code answers related to "how to check if object has script unity"

C# Answers by Framework

Browse Popular Code Answers by Language