Creating a Basic MiniMap in Unity 3D - Part1

Creating a Basic MiniMap in Unity 3D - Part1

NeoTech Design

12 лет назад

260,144 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

Electrical Guy
Electrical Guy - 25.11.2020 20:17

thankyou! that is so easy!

Ответить
Chey no
Chey no - 30.08.2017 22:19

Nice tutorial, although people with large maps or anything more than a basic game may want to take a different approach, since you're literally rendering the players cam, as well as the entire terrain, which will send the tri count and draw calls through the roof

Ответить
Esp Engineer
Esp Engineer - 09.08.2017 22:34

hey, what was that site for shaders again?

Ответить
Aleksandr Molchanov
Aleksandr Molchanov - 22.07.2017 21:28

Thanks for sharing! I did this in Unity Free. Must be that they put the function in after 6 years since you made this video :)

Ответить
PorkYoungTocino
PorkYoungTocino - 18.04.2017 03:18

why tree wont show in mini map

Ответить
jebs soup
jebs soup - 10.01.2017 05:32

you could just turn the fog off in render settings

Ответить
Tahir Nasir
Tahir Nasir - 24.11.2016 19:37

hi can you share this shader kindly...??

Ответить
Normal Hello
Normal Hello - 28.07.2016 06:13

thx m8

Ответить
Holster7
Holster7 - 14.07.2016 16:37

That's a tiny monitor right there

Ответить
Kelvin Mario
Kelvin Mario - 15.03.2016 17:33

Thank you for your sharing~I learn so much!

Ответить
Mahammad Albarrrak
Mahammad Albarrrak - 14.01.2016 05:10

thanks for the mini map cam ^^
ill just drop this lil script i made
<C# MiniMap>
using UnityEngine;
using System.Collections;

public class MiniMap : MonoBehaviour {
public Transform Target;
public Camera MiniMapCam;


void LateUpdate () {
transform.position = new Vector3 (Target.transform.position.x,39.5f,Target.transform.position.z);
}
void OnGUI(){
GUILayout.BeginArea (new Rect(920,15,25,Screen.height/9));
if (GUILayout.Button ("+")) {
MiniMapCam.orthographicSize -= 10;

}

if (GUILayout.Button ("-")) {
MiniMapCam.orthographicSize += 10;

}
GUILayout.EndArea ();
}
}<C#>

Ответить
kurt woyma
kurt woyma - 15.12.2015 16:09

is there a way to make a light that only shows up through the mini map camera because i'm making a kind of mix of Carnivores, Pacific Rim, and Slender, so it's dark but still need a mini map? (nice tutorial, btw XP )

Ответить
5754
5754 - 27.11.2014 07:56

ewwwww iso

Ответить
Abhiroop Tandon
Abhiroop Tandon - 02.10.2014 03:50

Will it not work at all in a students edition ??

Ответить
Nexis Games
Nexis Games - 28.09.2014 06:40

Vista :(

Ответить
Pushing Arduino To The Limit.
Pushing Arduino To The Limit. - 11.08.2014 00:13

ty ps another guy helpt me make minimap but didnt sow me how to make it move lolXD

Ответить
Alan Spurlock
Alan Spurlock - 31.07.2014 22:07

Normalized View-port does not show up for me?

Ответить
DragamGame
DragamGame - 04.06.2014 22:00

Hallo sry wegen Werbung! Suche ein Level Designer natürlich nur Hobby mäßig für das spiel Virus-outbreak wer lust hat schreibt mir zurück unter [email protected]! dann werde ich alles erklären :)

Ответить
RGamer™
RGamer™ - 01.06.2014 22:10

Hello.
Please send this map to my email?
please :(
[email protected]
thanks.

Ответить
Khalil
Khalil - 22.04.2014 11:28

error 14 :
using UnityEngine;

public class camerafllow : MonoBehaviour 
{
public Transform target;

void lateupdate()
{
transform.position = new Vector3(target.position.x, Transform.position.y, target.position.z);
}
}

Ответить