Minimap Overlays
This is a custom scaleform that allows you to add as many overlays (textures) as you want to the ingame Map and Minimap, useful for custom maps and blips!
Main.MinimapOverlays
Functions
public static async Task<MinimapOverlay> AddSizedOverlayToMap(string textureDict, string textureName, float x, float y, float rotation = 0, float width = -1, float height = -1, int alpha = 100, bool centered = false) {}
public static async Task<MinimapOverlay> AddScaledOverlayToMap(string textureDict, string textureName, float x, float y, float rotation = 0, float xScale = 100f, float yScale = 100f, int alpha = 100, bool centered = false) {}
public static void SetOverlayColor(int overlayId, SColor color) {}
public static void HideOverlay(int overlayId, bool hide) {}
public static void SetOverlayAlpha(int overlayId, float alpha) {}
public static void SetOverlayPosition(int overlayId, Vector2 pos) {}
public static void SetOverlayPosition(int overlayId, float x, float y) {}
public static void SetOverlayPosition(int overlayId, float[] pos) {}
public static void SetOverlaySizeOrScale(int overlayId, SizeF size) {}
public static void SetOverlaySizeOrScale(int overlayId, float w, float h) {}
public static void SetOverlaySizeOrScale(int overlayId, float[] size) {}
public static void SetOverlayRotation(int overlayId, float rotation) {}
public static async void RemoveOverlayFromMinimap(int overlayId) {}
public static void ClearAll() {}
Minimap Overlay
Adding an overlay generates a MinimapOverlay
item. The MinimapOverlay
item is a very simple class, it contains all the info of your added overlay.
Minimap Overlay Parameters
public bool Visible
public int Handle { get; set; }
public string Txd { get; set; }
public string Txn { get; set; }
public SColor Color { get; set; }
public Vector2 Position { get; set; }
public float Rotation { get; set; }
public SizeF Size { get; set; }
public float Alpha { get; set; }
public bool Centered { get; set; }