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.numeration ~= true or not IsAddOnLoaded("Numeration") then return end | |
---------------------------------------------------------------------------------------- | |
-- Numeration skin | |
---------------------------------------------------------------------------------------- | |
Numeration["windows"].width = 217 | |
Numeration["windows"].maxlines = 7 | |
Numeration["windows"].linegap = 7 | |
NumerationFrame.maxlines = Numeration["windows"].maxlines |
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.chat.bubbles ~= true then return end | |
---------------------------------------------------------------------------------------- | |
-- ChatBubbles skin(by Haleth) | |
---------------------------------------------------------------------------------------- | |
local function styleBubble(frame) | |
for i = 1, frame:GetNumRegions() do | |
local region = select(i, frame:GetRegions()) | |
if region:GetObjectType() == "Texture" then |
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.nameplate.enable ~= true then return end | |
---------------------------------------------------------------------------------------- | |
-- oUF nameplates | |
---------------------------------------------------------------------------------------- | |
local _, ns = ... | |
local oUF = ns.oUF | |
local frame = CreateFrame("Frame") |
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") |