1
0

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.

Unity手抜きミニマップの作り方

Last updated at Posted at 2020-12-25

Unityでゲーム作った時、ミニマップをコード書かずに実装できて興奮したので、書きました。

###ステージ作る
image.png

###上からステージ全体が移るようなカメラを一個置く
image.png

カメラの設定はこう。数値は要調整
image.png

###RenderTexture作る
image.png

RenderTextureの設定は今回はこう
image.png

###CanvasにRaw Imageを追加する
image.png

###Raw Imageに作ったRenderTextureをアタッチ
image.png

###さっき作ったミニマップ用のカメラにもRenderTextureをアタッチ
image.png

###プレイヤー・敵に、ミニマップに移るようなものを装着(超邪道)
image.png

###完成
image.gif

###課題
・レンガのテクスチャなど、マップは映す必要はなさそう
・もちろんミニマップに、3Dモデルも移ってることになるので、この〇と△だけが移るようにしなくてはいけない
・ミニマップも回転する(プレイヤー視点のミニマップにする)となると、これでは通用しなくなる

###参考
Unityでゲームを作ろう! ミニマップの作り方1
https://unity.moon-bear.com/unitychan-coin/minimap/

大変参考になりました。ありがとうございました。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?