コード例 #1
0
ファイル: Radar.cs プロジェクト: LUDUSLab/Round2New
 private void OnTriggerStay2D(Collider2D col)
 {
     if (col.tag == "Player")
     {
         script.ChasePlayer();
         Debug.Log("colliding");
     }
 }