Its possible add a Tooltip in MapMarkerGenericRadius?
If yes, how?
If yes, how?
In response to Finn ():Is there any way to change the color / size as MapMarkerGenericRadius?
Yes:
MapMarkerGenericRadius marker = GameManager.server.CreateEntity("assets/prefabs/tools/map/genericradiusmarker.prefab", position) as MapMarkerGenericRadius;
marker.alpha = 0.3f;
Color col1;
ColorUtility.TryParseHtmlString("#278427", out col1);
marker.color1 = col1;
marker.color2 = Color.black;
marker.radius = 100f;
marker.Spawn();
marker.SendUpdate();