Answers for "unity check if currently colliding"

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

Code answers related to "unity check if currently colliding"

C# Answers by Framework

Browse Popular Code Answers by Language