Add minimap mode to other objective markers

This commit is contained in:
ApsZoldat
2023-11-27 22:56:26 +03:00
parent aa018b314d
commit 6ea2188bee
4 changed files with 141 additions and 15 deletions

View File

@@ -3,6 +3,8 @@ package mindustry.logic;
public enum LMarkerControl{
remove,
visibility("true/false"),
minimap("true/false"),
minimapAutoscale("true/false"),
x("x"),
y("y"),
pos("x", "y"),
@@ -27,7 +29,8 @@ public enum LMarkerControl{
labelFlags("background", "outline"),
texture("name", "-", "-"),
textureWidth("width"),
textureHeight("height");
textureHeight("height"),
textureSize("width", "height");
public final String[] params;