2
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Unity2D】当たり判定を検知するための手順~敵に弾を当てる~

Posted at

シューティングゲームを作成している途中で当たり判定を学んだのでその備忘録として。
今回は自分の発射した弾が相手に当たったかどうかに当たり判定をつけたい。
当たり判定を検知するためには以下2つが必要となる。
①GameObjectにcolliderをつける
②どちらかもしくは両方にRiditBodyをつける

1. 衝突させたいオブジェクトを用意する

今回の主役となる、弾と敵機を用意。
image.png

2.両方にcolliderをつける

今回当たり判定をつけたいオブジェクトを選択し、InspectorからAdd Componentを選択し、Box Collider 2Dをつける。(Circle Colliderなど別の形でも可)
image.png

これを弾の方のオブジェクトも選択し、同じようにする。

3.isTriggerにチェック

Colliderの大きさをInspectorのSizeも大きければ調節する。
image.png

4.Riditbody2Dをつける

Colliderと同じくAdd ComponentからRiditbody2Dをつける。
今回は重力を加味しないため、Body TypeをKinematicにする。
image.png

5.Scriptに追加

OnTriggerEnter2Dで弾と敵が当たった時にconsoleに「当たり判定!!」と出ます。

private void OnTriggerEnter2D(Collider2D collision)
    {
        Debug.Log("当たり判定!!");    
    }
2
4
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
2
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?