Last active
September 15, 2021 00:59
-
-
Save kurapica/80304fd7284c3ef7235e20bf3099e4ae to your computer and use it in GitHub Desktop.
This file contains hidden or 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
Scorpio "AshToAshSkin" "" | |
pcall(Style.RegisterSkin, "5MSkin") | |
DEFAULT_COLOR = Color("|c222222ff") | |
LOW_HEALTH_COLOR = Color.WHITE | |
HEALTHBAR = (Scorpio.IsRetail or Scorpio.IsBCC or IsAddOnLoaded("LibHealComm-4.0") or pcall(_G.LibStub, "LibHealComm-4.0")) and "PredictionHealthBar" or "HealthBar" | |
Style.UpdateSkin("5MSkin", { | |
[AshToAsh.AshUnitFrame] = { | |
inherit = "default", -- inherit the default skin | |
[HEALTHBAR]= { | |
location = { Anchor("TOPLEFT"), Anchor("BOTTOMRIGHT", - 1, 0, "PowerBar", "BOTTOMLEFT")}, | |
Orientation = "VERTICAL", | |
statusBarColor = Wow.FromUnitEvent("UNIT_HEALTH", "UNIT_MAXHEALTH"):Next():Map(function(unit) | |
return( UnitHealth(unit) * 100 / UnitHealthMax(unit) ) > 40 and DEFAULT_COLOR or LOW_HEALTH_COLOR | |
end), | |
backgroundFrame = { | |
backgroundTexture = { | |
Color = Color.BLACK | |
}, | |
}, | |
}, | |
PowerBar = { | |
Orientation = "VERTICAL", | |
location = { Anchor("TOPRIGHT"), Anchor("BOTTOMRIGHT") }, | |
width = 4, | |
}, | |
} | |
}) | |
Style.ActiveSkin("5MSkin") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I am using the TBC Classic version. The Blizzard Skin works without any issues, but was trying to copy the style as in the picture from the AddonPage, guess I will stick to Blizzframes for now.