WoWInterface

WoWInterface (https://www.wowinterface.com/forums/index.php)
-   Lua/XML Help (https://www.wowinterface.com/forums/forumdisplay.php?f=16)
-   -   Graphical artifact on Minimap quest blobs (https://www.wowinterface.com/forums/showthread.php?t=42303)

cormanthor 01-07-12 10:06 AM

Graphical artifact on Minimap quest blobs
 
I have started making my own minimap addon, and have run into something I can't seem to find info on. Does anyone have an idea which graphic and/or which function I would use to remove the grey & white "waffle" pattern seen on the minimap in this screenshot?

Vlad 01-07-12 10:44 AM

If you had default UI you would be able to open the tracking menu and remove it from there, they added the ability to show/hide focus, target?, quest POI areas and dig sites.

Curious, do you use MiniLoot addon?

cormanthor 01-07-12 10:47 AM

I prefer to keep the blue blob portion, just not the 'waffle' pattern that is contained within it, where the old minimap border would have been.

Vlad 01-07-12 11:06 AM

That part is new, and it indicates there is more that way -it helps when you stand in the middle of the blue area to see easily what side has more, so when you run to the side without the waffles, you will soon find yourself outside the quest area. :P

cormanthor 01-07-12 01:05 PM

I found the function that I was looking for: Minimap:SetQuestBlobRingAlpha(0)
It's an undocumented function that was apparently very recently introduced. Setting this to zero hides the ugly waffle pattern.

Saiket 01-07-12 05:27 PM

The archaeology and quest blobs have separate methods for their waffle borders, so you probably want to hide both. Here's how I removed them in my minimap:
lua Code:
  1. -- Reduces width of waffle border to 0
  2. Minimap:SetArchBlobRingScalar( 0 );
  3. Minimap:SetQuestBlobRingScalar( 0 );

cormanthor 01-08-12 08:36 AM

Is scaling to 0 more efficient than alpha to 0? Probably about equivalent, but I was just curious if anyone knew.

p3lim 01-08-12 10:35 AM

You can't scale to 0.

Saiket 01-08-12 01:47 PM

Quote:

Originally Posted by cormanthor (Post 250697)
Is scaling to 0 more efficient than alpha to 0? Probably about equivalent, but I was just curious if anyone knew.

Scaling to zero is faster in theory since even entirely transparent textures still increase draw times proportional to their areas in WoW. In practice though, the difference is too small to notice.

Quote:

Originally Posted by p3lim (Post 250702)
You can't scale to 0.

The blob ring scalar values can range from 0 to 255.


All times are GMT -6. The time now is 12:14 PM.

vBulletin © 2024, Jelsoft Enterprises Ltd
© 2004 - 2022 MMOUI