-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #64 from rookdorf/dragonflight
Initial Dragonflight Update
- Loading branch information
Showing
14 changed files
with
98 additions
and
25 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
Libs/* | ||
Libs/* | ||
.release | ||
.idea |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
local module = ArcHUD:NewModule("Essence") | ||
module.version = "5.0 (@file-abbreviated-hash@)" | ||
|
||
module.unit = "player" | ||
module.noAutoAlpha = nil | ||
|
||
module.defaults = { | ||
profile = { | ||
Enabled = true, | ||
Outline = true, | ||
Flash = false, | ||
Side = 2, | ||
Level = 1, | ||
ShowSeparators = true, | ||
--Color = PowerBarColor["ESSENCE"], | ||
Color = { r = 0.71, g = 1.0, b = 0.92 }, --the real essence color is NYI. this reuses chi's for now | ||
RingVisibility = 2, -- always fade out when out of combat, regardless of ring status | ||
ShowTextHuge = false | ||
} | ||
} | ||
module.options = { | ||
{name = "Flash", text = "FLASH", tooltip = "FLASH"}, | ||
{name = "ShowTextHuge", text = "SHOWTEXTHUGE", tooltip = "SHOWTEXTHUGE"}, -- fka "combo points" | ||
attach = true, | ||
hasseparators = true, | ||
} | ||
module.localized = true | ||
|
||
module.class = "EVOKER" | ||
module.specs = nil -- array of SPEC_... constants; nil if this ring is available for all specs | ||
module.powerType = Enum.PowerType.Essence | ||
module.powerTypeString = "ESSENCE" | ||
module.flashAt = nil | ||
|
||
function module:Initialize() | ||
self.InitializePowerRing = ArcHUD.templatePowerRing.InitializePowerRing | ||
self.OnModuleUpdate = ArcHUD.templatePowerRing.OnModuleUpdate | ||
self.OnModuleEnable = ArcHUD.templatePowerRing.OnModuleEnable | ||
self.UpdatePowerRing = ArcHUD.templatePowerRing.UpdatePowerRing | ||
self.UpdatePower = ArcHUD.templatePowerRing.UpdatePower | ||
self.UpdateActive = ArcHUD.templatePowerRing.UpdateActive | ||
|
||
self:InitializePowerRing() | ||
end |
This file contains 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
This file contains 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
This file contains 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