Description
Hayden's Minimap
This mod draws a simple minimap on your screen.
There are quite a few changes you can make to this mod, as shown in this class:
- X,Y coordinates - N,E,S,W optionally shown - Enabled/Disabled - Zoom, Render Distance, Detail - Sample Steps - Opacity
public boolean enabled = true;
public boolean showNorth = true;
public boolean showCoordinates = true;
// Positioning
public int positionX = 10;
public int positionY = 10;
// Sizing & zoom
public int size = 140;
public float zoomLevel = 1.0f;
// Performance
public int renderDistance = 64;
public int sampleStep = 2; // 1 = full detail, 2 = balanced, 4 = fast, 8 = fastest
// Visuals
public float opacity = 0.6f;

