- Home /
how to implement mini map
hi dear, i am developing car game in unity3d, so i want to fix the mini map for the track ,how to implement the map during run time
Thanks
Answer by rudolfwm · Feb 17, 2011 at 02:02 PM
The easiest, but also potentially the most expensive in terms of performance, is to add a camera that looks down on your terrain from a height (higher is zoom out, lower is zoom in), then render it to a texture. The camera can be made a subobject of your main car so it will follow your car.
Answer by poncho · Feb 17, 2011 at 05:42 PM
you can make an image to duplicate your track, then using this image to render it on the minimap section, make a dot or a player in the minimap follow the movement of your car on your 3d world just using the coordinates on the XZ axis (assuming you will see the minimap from above) on each update change the value of the player indicator on the minimap getting the values from the real car, thats other way to do it, instead of the camera thing hope this answers helps you
Your answer
Follow this Question
Related Questions
Mini-Map Radar screen with different blips. 1 Answer
How to Create a Multi Floor Mini Map 1 Answer
Assigning UV Map to model at runtime 0 Answers
Vector Based - Mini Map 1 Answer
Drawing an overlay mini-map 6 Answers