Transparent player frame colours
Dogs1005 opened this issue ยท 1 comments
Hi there,
What's happened to the player frame colour in transparent mode. there were plans to implement this but it doesn't seem to have materialized.
Someone on here has suggested the code that needs to be made to the style.lua code and before the update today, it worked a treat. But with the update it removed my modifications and now the suggested code doesn't work anymore.
Is there any chance to add this in future spartui updates as the default blue doesn't match my colour scheme.
The code in question is in the \World of Warcraft\Interface\AddOns\SpartanUI_Style_Transparent\style.lua
PlayerColor = {
name = L['PlayerFramesColor'],
type = 'color',
hasAlpha = true,
order = 1,
width = 'full',
get = function(info)
return unpack(SUI.DB.Styles.Transparent.Color.PlayerFrames)
end,
set = function(info, r, b, g, a)
SUI.DB.Styles.Transparent.Color.PlayerFrames = {r, b, g, a}
module:SetColor()
end
}