Baggins

Baggins

1M Downloads

Possible to swap to new high-res money icons?

WanderingFox opened this issue ยท 1 comments

commented

As of 9.1.5 there are new money icons located in an atlas ("coin-gold", "coin-silver", "coin-copper") which are much higher resolution than the old ones.

They can be swapped to by replacing:

local goldIcon = frame:CreateTexture("BagginsGoldIcon", "ARTWORK")
goldIcon:SetWidth(16)
goldIcon:SetHeight(16)
goldIcon:SetTexture("Interface\\MoneyFrame\\UI-MoneyIcons")
goldIcon:SetTexCoord(0, 0.25, 0, 1)

with:

local goldIcon = frame:CreateTexture("BagginsGoldIcon", "ARTWORK")
goldIcon:SetWidth(16)
goldIcon:SetHeight(16)
goldIcon:SetAtlas("coin-gold")

etc

old texture:
image

new texture:
image

commented

Updated: 11f87ed should be pushed through to curse soon.