We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0583f51 + ea12da1 commit cd8a4fdCopy full SHA for cd8a4fd
src/Classes/PassiveTree.lua
@@ -506,8 +506,9 @@ function PassiveTreeClass:ProcessNode(node)
506
node.targetSize = self:GetNodeTargetSize(node)
507
node.overlay = self.nodeOverlay[node.type]
508
if node.overlay then
509
- node.rsq = node.targetSize.width * node.targetSize.height
510
- node.size = node.targetSize.width
+ local size = node.targetSize["overlay"] and node.targetSize["overlay"].width or node.targetSize.width
+ node.rsq = size * size
511
+ node.size = size
512
end
513
514
-- Derive the true position of the node
0 commit comments