I would like to show a minimap image of my scene.
It should be done in realtime since the map is randomly generated.
I tried drawing a very small image for every tile of my map. But this slowed the game to less than 5 FPS.
Any ideas on how should I do it?
minimap
Re: minimap
Another camera very high, rendering to a RTT?
Re: minimap
If you only want to show certain ingame units though, as i did it, get the 2d (x,z) (no height) positions of your specific game objects, and then plot these on an above map view, non realtime image(just a screenshot you made earlier) and draw little icons(or just specific color pixel) for each type. That's the simplified version. Although come to think of it, search these forums for minimap I'm sure there is a pretty good existing implementation around or at least a very detailed description.