Skip to content

Commit cd8a4fd

Browse files
Merge pull request #16 from justjuangui/demo
Increased hover range on Skill Tree nodes
2 parents 0583f51 + ea12da1 commit cd8a4fd

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/Classes/PassiveTree.lua

+3-2
Original file line numberDiff line numberDiff line change
@@ -506,8 +506,9 @@ function PassiveTreeClass:ProcessNode(node)
506506
node.targetSize = self:GetNodeTargetSize(node)
507507
node.overlay = self.nodeOverlay[node.type]
508508
if node.overlay then
509-
node.rsq = node.targetSize.width * node.targetSize.height
510-
node.size = node.targetSize.width
509+
local size = node.targetSize["overlay"] and node.targetSize["overlay"].width or node.targetSize.width
510+
node.rsq = size * size
511+
node.size = size
511512
end
512513

513514
-- Derive the true position of the node

0 commit comments

Comments
 (0)