示例#1
0
文件: call.cs 项目: ys333/job-hunting
 void OnTriggerEnter(Collider col)
 {
     Debug.Log(col.tag);
     if (col.gameObject.tag == "Player")
     {
         Call.OnPause();
         Destroy(gameObject);
     }
 }