update np

This commit is contained in:
Bunny67
2018-08-12 19:58:16 +03:00
parent 7a6c47db42
commit e642378544
2 changed files with 11 additions and 10 deletions
@@ -118,12 +118,16 @@ function mod:ConfigureElement_HealthBar(frame, configuring)
local healthBar = frame.HealthBar local healthBar = frame.HealthBar
healthBar:SetPoint("TOP", frame, "CENTER", 0, self.db.units[frame.UnitType].castbar.height + 3) 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 if self.db.motionType ~= "OVERLAP" then
frame:GetParent():SetWidth(self.db.clickableWidth + ((E.PixelMode and 2) or 6)) frame:GetParent():SetWidth(width)
frame:GetParent():SetHeight(self.db.clickableHeight + self.db.units[frame.UnitType].castbar.height + 3) frame:GetParent():SetHeight(height)
else
frame:GetParent():SetHitRectInsets(-.5*width, -.5*width, -.5*height, -.5*height)
end end
frame:SetWidth(self.db.clickableWidth + ((E.PixelMode and 2) or 6)) frame:SetWidth(width)
frame:SetHeight(self.db.clickableHeight + self.db.units[frame.UnitType].castbar.height + 3) frame:SetHeight(height)
if frame.isTarget and self.db.useTargetScale then 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)) healthBar:SetHeight(self.db.units[frame.UnitType].healthbar.height * ((frame.CustomScale and frame.CustomScale * self.db.targetScale) or self.db.targetScale))
+3 -6
View File
@@ -529,14 +529,11 @@ function mod:OnCreated(frame)
end) end)
]] ]]
frame.UnitFrame:SetScript("OnMouseDown", function() frame:SetScript("OnMouseDown", function()
if arg1 == "RightButton" then if arg1 == "RightButton" then
MouselookStart() MouselookStart()
end end
end) end)
frame.UnitFrame:SetScript("OnClick", function()
frame:Click()
end)
frame.UnitFrame.moveUp = CreateAnimationGroup(frame.UnitFrame) frame.UnitFrame.moveUp = CreateAnimationGroup(frame.UnitFrame)
local moveUp = frame.UnitFrame.moveUp:CreateAnimation("Move") local moveUp = frame.UnitFrame.moveUp:CreateAnimation("Move")
@@ -772,7 +769,7 @@ function mod:PLAYER_REGEN_ENABLED()
end end
end end
function mod:ClassCacheQueryResult(_, name, class) function mod:ClassCache_ClassUpdated(_, name, class)
if queryList[name] then if queryList[name] then
local frame = queryList[name] local frame = queryList[name]
@@ -819,7 +816,7 @@ function mod:Initialize()
--self:RegisterEvent("UNIT_AURA") --self:RegisterEvent("UNIT_AURA")
--self:RegisterEvent("PLAYER_COMBO_POINTS") --self:RegisterEvent("PLAYER_COMBO_POINTS")
self:RegisterMessage("ClassCacheQueryResult") self:RegisterMessage("ClassCache_ClassUpdated")
self:ScheduleRepeatingTimer("ForEachVisiblePlate", 0.1, "SetTargetFrame") self:ScheduleRepeatingTimer("ForEachVisiblePlate", 0.1, "SetTargetFrame")