Exemplo n.º 1
0
 private void OnTriggerEnter(Collider other)
 {
     if (other.CompareTag("Obstacle"))
     {
         Debug.Log("Found Obstacle");
         _stackable.RemoveFromStack();
     }
 }