LoginSignup
1
0

More than 3 years have passed since last update.

collisionEnterで、当たったオブジェクトの名前を出力する

Posted at

コード

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);
  }
} 
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0