This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local T, C, L, _ = unpack(select(2, ...)) | |
if C.skins.blizzard_frames ~= true then return end | |
---------------------------------------------------------------------------------------- | |
-- Friends skin | |
---------------------------------------------------------------------------------------- | |
local function LoadSkin() | |
local StripAllTextures = { | |
"FriendsFrame", | |
"FriendsListFrame", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local T, C, L, _ = unpack(select(2, ...)) | |
if C.skins.blizzard_frames ~= true then return end | |
---------------------------------------------------------------------------------------- | |
-- PvE skin | |
---------------------------------------------------------------------------------------- | |
local function LoadSkin() | |
local StripAllTextures = { | |
"PVEFrame", | |
"PVEFrameLeftInset", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local T, C, L, _ = unpack(select(2, ...)) | |
---------------------------------------------------------------------------------------- | |
-- PvP skin | |
---------------------------------------------------------------------------------------- | |
local LoadTootlipSkin = CreateFrame("Frame") | |
LoadTootlipSkin:RegisterEvent("ADDON_LOADED") | |
LoadTootlipSkin:SetScript("OnEvent", function(self, event, addon) | |
if IsAddOnLoaded("Skinner") or IsAddOnLoaded("Aurora") or not C.tooltip.enable then | |
self:UnregisterEvent("ADDON_LOADED") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local T, C, L, _ = unpack(select(2, ...)) | |
if C.skins.blizzard_frames ~= true then return end | |
---------------------------------------------------------------------------------------- | |
-- AlertFrames skin | |
---------------------------------------------------------------------------------------- | |
local function LoadSkin() | |
local function forceAlpha(self, alpha, isForced) | |
if alpha ~= 1 and isForced ~= true then | |
self:SetAlpha(1, true) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local T, C, L, _ = unpack(select(2, ...)) | |
if C.misc.profession_tabs ~= true then return end | |
---------------------------------------------------------------------------------------- | |
-- Professions tabs on tradeskill frame(ProfessionTabs by Beoko) | |
---------------------------------------------------------------------------------------- | |
local IsCurrentSpell = IsCurrentSpell | |
local format = string.format | |
local next = next | |
local ranks = PROFESSION_RANKS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local T, C, L, _ = unpack(select(2, ...)) | |
if C.skins.blizzard_frames ~= true then return end | |
---------------------------------------------------------------------------------------- | |
-- Mail skin | |
---------------------------------------------------------------------------------------- | |
local function LoadSkin() | |
MailFrame:StripTextures() | |
MailFrame:CreateBackdrop("Transparent") | |
MailFrame.backdrop:SetPoint("TOPLEFT", 0, 0) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local T, C, L, _ = unpack(select(2, ...)) | |
---------------------------------------------------------------------------------------- | |
-- PvP skin | |
---------------------------------------------------------------------------------------- | |
local LoadTootlipSkin = CreateFrame("Frame") | |
LoadTootlipSkin:RegisterEvent("ADDON_LOADED") | |
LoadTootlipSkin:SetScript("OnEvent", function(self, event, addon) | |
if IsAddOnLoaded("Skinner") or IsAddOnLoaded("Aurora") or not C.tooltip.enable then | |
self:UnregisterEvent("ADDON_LOADED") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local T, C, L, _ = unpack(select(2, ...)) | |
---------------------------------------------------------------------------------------- | |
-- Move ObjectiveTrackerFrame | |
---------------------------------------------------------------------------------------- | |
local frame = CreateFrame("Frame", "ObjectiveTrackerAnchor", UIParent) | |
frame:SetPoint(unpack(C.position.quest)) | |
frame:SetHeight(150) | |
frame:SetWidth(224) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local T, C, L, _ = unpack(select(2, ...)) | |
---------------------------------------------------------------------------------------- | |
-- PvP skin | |
---------------------------------------------------------------------------------------- | |
local LoadTootlipSkin = CreateFrame("Frame") | |
LoadTootlipSkin:RegisterEvent("ADDON_LOADED") | |
LoadTootlipSkin:SetScript("OnEvent", function(self, event, addon) | |
if IsAddOnLoaded("Skinner") or IsAddOnLoaded("Aurora") or not C.tooltip.enable then | |
self:UnregisterEvent("ADDON_LOADED") |
OlderNewer