How to make a 3D radar?

I’m trying to make a 3D radar system where pretty much it logs everything with a set range (say x unity world space units), takes their positions and scales it down to a small representation in a sphere.

Basically something that looks like this:

https://dl.dropboxusercontent.com/u/11090933/FX%20Asset%20Store/FX%203D%20Radar/Logos/Radar_Anatomy_Small.png

Just how do you take gameObjects that you tag, give it a texture and instantiate it?

I understand that free assets exist for this, but I just want an explanation on how the script would be built, and how it works.

Instantiating objects with tags/textures is just a matter of creating prefabs. You could even have each object hold a reference to it’s mini version, but that isn’t the best way to make a radar.

I would recommend instead, using a second, orthographic camera as your radar. Give it a SmoothFollow script and target the moving player. Then give everything that should show up a radar symbol as part of their game object. Keep all the radar symbols in a new layer that the radar camera shows and the main camera doesn’t.

You may have to create your own follow script to keep the angle that you want.

This post by Scott Petrovic goes into more detail on Radars.

Use 3D Radar Builder

here