View Single Post
11/04/21, 02:26 PM   #6
Anceane
 
Anceane's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2014
Posts: 308
In fact i just discovered that this new icons is related to Objectives.

If i remove from the map the Objectives, its vanish. But it removes also a lot of icons that help from time to time.

Is there a way to find out which name this icon have ? with DarkUI i have all the objectives icons modified but this new one. So it should be possible may be.

I found this

Line 37: SUGGESTED_AREA_PIN_SIZE = 40,
Line 269: [MAP_PIN_TYPE_POI_SUGGESTED] = { level = 46, size = CONSTANTS.POI_PIN_SIZE, texture = GetPOIPinTexture, tint = GetPOIPinTint, hitInsetX = 5, hitInsetY = 10, showsPinAndArea = true},
Line 274: [MAP_PIN_TYPE_SKYSHARD_SUGGESTED] = { level = 43, size = CONSTANTS.POI_PIN_SIZE, texture = "EsoUI/Art/MapPins/skyshard_seen.dds", insetX = 5, insetY = 3, showsPinAndArea = true},
Line 619: [MAP_PIN_TYPE_POI_SUGGESTED] = true,
Line 620: [MAP_PIN_TYPE_SKYSHARD_SUGGESTED] = true,
Line 697: [MAP_PIN_TYPE_POI_SUGGESTED] = MAP_FILTER_OBJECTIVES,
Line 701: [MAP_PIN_TYPE_SKYSHARD_SUGGESTED] = MAP_FILTER_OBJECTIVES,
Line 1084: [MAP_PIN_TYPE_POI_SUGGESTED] = SHARED_TOOLTIP_CREATORS.SUGGESTION_ACTIVITY,
Line 1087: [MAP_PIN_TYPE_SKYSHARD_SUGGESTED] = SHARED_TOOLTIP_CREATORS.SUGGESTION_ACTIVITY,
Line 2184: elseif self:GetPinType() == MAP_PIN_TYPE_POI_SUGGESTED or self:GetPinType() == MAP_PIN_TYPE_SKYSHARD_SUGGESTED then
Line 2184: elseif self:GetPinType() == MAP_PIN_TYPE_POI_SUGGESTED or self:GetPinType() == MAP_PIN_TYPE_SKYSHARD_SUGGESTED then
Line 2185: -- currently SUGGESTED pins are only used by zone story and only for the currently tracked activity
Line 2290: if self:IsPOI() or self.m_PinType == MAP_PIN_TYPE_POI_SUGGESTED then
Line 2302: if self:IsPOI() or self.m_PinType == MAP_PIN_TYPE_POI_SUGGESTED then
Line 2314: if self:IsPOI() or self.m_PinType == MAP_PIN_TYPE_POI_SUGGESTED then
May be i could just apply a different icon, less intrusive ?

Last edited by Anceane : 11/04/21 at 03:04 PM.
  Reply With Quote