diff --git a/Assets/SEE/Layout/NodeLayouts/RectanglePackingNodeLayout.cs b/Assets/SEE/Layout/NodeLayouts/RectanglePackingNodeLayout.cs index ed0a27ff1d..23300641d4 100644 --- a/Assets/SEE/Layout/NodeLayouts/RectanglePackingNodeLayout.cs +++ b/Assets/SEE/Layout/NodeLayouts/RectanglePackingNodeLayout.cs @@ -45,10 +45,10 @@ protected override Dictionary Layout { if (node.IsLeaf) { - /// All leaves maintain their original size. Pack assumes that - /// their sizes are already set in . - /// We add the padding upfront. Padding is added on both sides. - /// The padding will later be removed again. + // All leaves maintain their original size. Pack assumes that + // their sizes are already set in layoutNodes. + // We add the padding upfront. Padding is added on both sides. + // The padding will later be removed again. Vector3 scale = node.AbsoluteScale; float padding = Padding(scale.x, scale.z); scale.x += padding;