Thread: ingame icons
View Single Post
12-24-23, 11:08 AM   #2
Fizzlemizz
I did that?
 
Fizzlemizz's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Dec 2011
Posts: 1,894
These are already in-game for displaying in a texture region eg.
Lua Code:
  1. local f = CreateFrame("Frame")
  2. f:SetSize(50, 50)
  3. f:SetPoint("CENTER")
  4. f.Texture = f:CreateTexture()
  5. f.Texture:SetAllPoints()
  6. f.Texture:SetTexture("Interface/Minimap/Vehicle-AllianceMagePortal")

You can preview them by going to https://wago.tools/ and searching the files for Vehicle-AllianceMagePortal etc.

You can also export the art files form the game and convert them to .png using
https://wowinterface.com/downloads/i...7-BLP2PNG.html
or
https://wowinterface.com/downloads/i...Converter.html

Exporting also gives you their relative folder for use in-game eg. the Vehicle-AllianceMagePortal.blp file will be in the Interface\Minimap\ folder.
__________________
Fizzlemizz
Maintainer of Discord Unit Frames and Discord Art.
Author of FauxMazzle, FauxMazzleHUD and Move Pad Plus.

Last edited by Fizzlemizz : 12-24-23 at 11:30 AM.
  Reply With Quote