A full feature raid panel created based on the Scorpio Lib, with this addon, you can:
-
Party member join/leave during combat will correctly re-layout those panels during combat, also a secure delay mechanism will make sure the refreshing more smoothing
-
You can created unit panels as many as you want, so you get different layout for each specialization and conditions(in raid, in party, solo, combat only, show dead only and etc)
-
You can bind any mouse or key board actions to cast spells on units. No matter what you binds, the left mouse click will still be used to target the unit.
-
use /ata unlock to unlock those panels, right click to open menu, check those features by yourselves.
-
You can use alt+right mouse click to add buff/debuff to black list, so you won't see them again.
-
You can use Ctrl+left mouse click to add debuff to a enlarge debuff list, so those'll be displayed on the top-right corner for better notifaction.
-
You can add macro condition to the panel to auto-hide it.
-
Besides the normal units like 'target', 'focus', 'focustarget', 'boss1' and etc, you also can use 'tank', 'maintank', 'mainassist' in the unit watch panel, so you can use 'tanktarget' to watch the tank's target unit.
If you play in classic, you can install the LibHealComm-4.0 to see the incoming heals.
Based on the Scorpio's Style system, it's very easy to create your own skin for all the ui elements. That's the main reason I create this addon.
So this is a skin example:
It's code is very simple:
Scorpio "AshToAshSkin" "" pcall(Style.RegisterSkin, "5MSkin") DEFAULT_COLOR = Color("|c222222ff") -- default health color LOW_HEALTH_COLOR = Color.WHITE -- lower health color -- Choose different health bar(PredictionHealthBar'll display the incoming heal) HEALTHBAR = (Scorpio.IsRetail or IsAddOnLoaded("LibHealComm-4.0") or pcall(_G.LibStub, "LibHealComm-4.0")) and "PredictionHealthBar" or "HealthBar" Style.UpdateSkin("5MSkin", { [AshToAsh.AshUnitFrame] = { inherit = "default", -- inheirt the default skin, [HEALTHBAR]= { location = { Anchor("TOPLEFT"), Anchor("BOTTOMRIGHT", - 1, 0, "PowerBar", "BOTTOMLEFT")}, Orientation = "VERTICAL", -- Change the status bar's orientation -- Modify the statusbar color based on the unit's health 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")
You can run it with my Cube, for more details, you should check the Scorpio's document.