留言

noya · 2023-01-20 04:02:49

新改版的使用TinyTooltip-Reforged取代舊版的TinyTooltip,但如果覺得新的TinyTooltip-Reforged不好用想改回使用舊版的TinyTooltip的話可以依照下列步驟修改即可使用TinyTooltip而不會報錯

  1. 打開TinyTooltip資料夾底下Core.lua


       按Ctrl + F 搜尋 function addon:GetRGBColor(hex)
找到以下這段原程式碼
--------------------------------------
function addon:GetRGBColor(hex)
if (not hex) then return 1, 1, 1 end
if (string.match(hex, "^%x%x%x%x%x%x$")) then
local r = tonumber(strsub(hex,1,2),16) or 255
local g = tonumber(strsub(hex,3,4),16) or 255
local b = tonumber(strsub(hex,5,6),16) or 255
return r/255, g/255, b/255
end
end
------------------------
整段替換成function addon:GetRGBColor(hex)    if (not hex) then return 1, 1, 1 end    if (string.match(hex, "^%x%x%x%x%x%x$")) then        local r = tonumber(strsub(hex,1,2),16) or 255        local g = tonumber(strsub(hex,3,4),16) or 255        local b = tonumber(strsub(hex,5,6),16) or 255        return r/255, g/255, b/255    else return 1, 1, 1    endend
------------------
2.按ctrl +F 搜尋 tip.style.mask:SetGradientAlpha("VERTICAL", 0, 0, 0, 0, 0.9, 0.9, 0.9, 0.4)
找到該程式碼
tip.style.mask:SetGradientAlpha("VERTICAL", 0, 0, 0, 0, 0.9, 0.9, 0.9, 0.4)
替換成以下程式碼
tip.style.mask:SetGradient("VERTICAL", CreateColor(0, 0, 0, 0), CreateColor(0.9, 0.9, 0.9, 0.4))
-----------------------------------------------
3.接著去TinyTooltip資料夾底下找到TinyTooltip.toc
打開TinyTooltip.toc檔案
修改第一行
## Interface: 30400
改成
## Interface: 30401
此UI可以完美執行在3.4.1奧杜雅版本​​​​​​​