void OnTriggerEnter2D(Collider2D other) { //触发玩家的可点击状态 if (other.tag == "Player") { theCirController.CanClick(this.gameObject.transform); } }