mirror of
https://github.com/Bluewhale1337/ElvUIModernized.git
synced 2026-07-27 08:24:44 +00:00
update np
This commit is contained in:
@@ -118,12 +118,16 @@ function mod:ConfigureElement_HealthBar(frame, configuring)
|
||||
local healthBar = frame.HealthBar
|
||||
|
||||
healthBar:SetPoint("TOP", frame, "CENTER", 0, self.db.units[frame.UnitType].castbar.height + 3)
|
||||
|
||||
local width, height = self.db.clickableWidth + ((E.PixelMode and 2) or 6), self.db.clickableHeight + self.db.units[frame.UnitType].castbar.height + 3
|
||||
if self.db.motionType ~= "OVERLAP" then
|
||||
frame:GetParent():SetWidth(self.db.clickableWidth + ((E.PixelMode and 2) or 6))
|
||||
frame:GetParent():SetHeight(self.db.clickableHeight + self.db.units[frame.UnitType].castbar.height + 3)
|
||||
frame:GetParent():SetWidth(width)
|
||||
frame:GetParent():SetHeight(height)
|
||||
else
|
||||
frame:GetParent():SetHitRectInsets(-.5*width, -.5*width, -.5*height, -.5*height)
|
||||
end
|
||||
frame:SetWidth(self.db.clickableWidth + ((E.PixelMode and 2) or 6))
|
||||
frame:SetHeight(self.db.clickableHeight + self.db.units[frame.UnitType].castbar.height + 3)
|
||||
frame:SetWidth(width)
|
||||
frame:SetHeight(height)
|
||||
|
||||
if frame.isTarget and self.db.useTargetScale then
|
||||
healthBar:SetHeight(self.db.units[frame.UnitType].healthbar.height * ((frame.CustomScale and frame.CustomScale * self.db.targetScale) or self.db.targetScale))
|
||||
|
||||
@@ -529,14 +529,11 @@ function mod:OnCreated(frame)
|
||||
|
||||
end)
|
||||
]]
|
||||
frame.UnitFrame:SetScript("OnMouseDown", function()
|
||||
frame:SetScript("OnMouseDown", function()
|
||||
if arg1 == "RightButton" then
|
||||
MouselookStart()
|
||||
end
|
||||
end)
|
||||
frame.UnitFrame:SetScript("OnClick", function()
|
||||
frame:Click()
|
||||
end)
|
||||
|
||||
frame.UnitFrame.moveUp = CreateAnimationGroup(frame.UnitFrame)
|
||||
local moveUp = frame.UnitFrame.moveUp:CreateAnimation("Move")
|
||||
@@ -772,7 +769,7 @@ function mod:PLAYER_REGEN_ENABLED()
|
||||
end
|
||||
end
|
||||
|
||||
function mod:ClassCacheQueryResult(_, name, class)
|
||||
function mod:ClassCache_ClassUpdated(_, name, class)
|
||||
if queryList[name] then
|
||||
local frame = queryList[name]
|
||||
|
||||
@@ -819,7 +816,7 @@ function mod:Initialize()
|
||||
--self:RegisterEvent("UNIT_AURA")
|
||||
--self:RegisterEvent("PLAYER_COMBO_POINTS")
|
||||
|
||||
self:RegisterMessage("ClassCacheQueryResult")
|
||||
self:RegisterMessage("ClassCache_ClassUpdated")
|
||||
|
||||
self:ScheduleRepeatingTimer("ForEachVisiblePlate", 0.1, "SetTargetFrame")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user