##コード
void OnCollisionEnter(Collision collision)
{
string hitObjectName = collision.gameObject.name; //当たったオブジェクトの名前
Debug.Log(hitObjectName);
}
##thisはscriptをアタッチしたオブジェクトの名前が出力される
void OnCollisionEnter(Collision collision)
{
if(collision.gameObject.tag == "Player")
{
string thisOjectName = this.GetComponent<Collider>().gameObject.name;
Debug.Log(thisObjectName);
}
}