コード例 #1
0
 private void OnTriggerEnter(Collider other)
 {
     //Debug.Log(other.name + " is trying to enter stinger collider");
     if (other.CompareTag("Controller"))
     {
         audioManager.TriggerDropStinger();
         bounceAnim.Play();
         stingBounce.BounceThatBoi();
     }
 }