Add simple outline for chat text #9

Merged
atomaka merged 1 commit from chat-outline into master 2021-01-19 11:09:16 -05:00
Showing only changes of commit 9973f23d92 - Show all commits

View file

@ -174,3 +174,11 @@ CharacterStatsPane.statsFramePool.resetterFunc =
FramePool_HideAndClearAnchors(pool, frame) FramePool_HideAndClearAnchors(pool, frame)
end end
table.insert(PAPERDOLL_STATCATEGORIES[1].stats, { stat = "MOVESPEED"}) table.insert(PAPERDOLL_STATCATEGORIES[1].stats, { stat = "MOVESPEED"})
for i = 1, 7 do
local chat = _G["ChatFrame"..i]
local font, size = chat:GetFont()
chat:SetFont(font, size, "THINOUTLINE")
chat:SetShadowOffset(0, 0)
chat:SetShadowColor(0, 0, 0, 0)
end