Discoverable map/minimap

Hi

I want to make a map that the player uncover bit by bit while exploring the world.

And if possible show in which part he is.

Basically,for example, something like castlevania world map.
alt text
And thanks.

Is your game 2D?
If so…
Put prefab clouds (or whatever) all around the map, make a sorting layer above everything. And make a Layer for them too… and for convenience child them all to an empty object so you can easily disable all of them.
Then on the normal camera under t Cull, deselect that layer, but on your minimap camera you select it so it blocks things.

Then put a circle trigger collider on the player and put a script on saying of the collision is against that layer the destroy it and ta-da…

Let me know if any adjustments are needed