Answers for "how to check if an object hit something in 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
1

unity c# check how many of an object exists

TotalAmount = FindObjectsOfType<Object>().Length;
Posted by: Guest on December-22-2020

Code answers related to "how to check if an object hit something in unity"

C# Answers by Framework

Browse Popular Code Answers by Language