WoW:API GetTrackingTexture

From AddOn Studio
Revision as of 20:08, 30 December 2005 by WoWWiki>Muert
Jump to navigation Jump to search

Return the texture of the active tracking buff if one is active.

"icon" = GetTrackingTexture ()

Arguments

None


Returns
icon
The texture of the active tracking buff, or nil is no tracking buff is active

Example
local icon = GetTrackingTexture ()
if icon then
  myTexture:SetTexture (icon)
end

Template:WoW API