7
3

More than 3 years have passed since last update.

【Unity】3Dゲームでミニマップを表示させる方法

Last updated at Posted at 2020-09-01

この記事でできること

  • 下図のようなミニマップを作成することができる。

a06b.png

やり方

①ミニマップ用に、ヒエラルキーウィンドウでカメラを追加する。

  • ディスプレイを確認しながら、カメラの位置を調整する。
  • 2Dの場合、Z軸を-10とかにするとよい。

a01.png

②プロジェクトウィンドウで、[Render Texture]を追加する。

a02.png

③ミニマップ用カメラのコンポーネントで、[Target Texture]に②のRenderTextureをアタッチする。

  • 下図スクショでは、「MiniMap」という名称で、RenderTextureを作成している。(②の時点)

a03.png

④ヒエラルキーウィンドウで、[UI]から[Raw Image]を追加する。

  • Canvas内に作成される。

a04.png

⑤RawImageのコンポーネントで、[Texture]を②で作成したRenderTexureをアタッチする。

a05.png

⑥RawImageの位置やサイズを調整して完成。

a06b.png

7
3
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
7
3