📅  最后修改于: 2022-03-11 14:48:56.493000             🧑  作者: Mango
void OnTriggerEnter (Collider other) //Make sure to put this out of Voids
{
if (other.gameObject.tag == "Object")
{
Debug.Log ("Collided");
}