Skip to content

Commit

Permalink
#816 Reverted comment style. The <paramref name="layoutNodes"/> will …
Browse files Browse the repository at this point in the history
…not work anyway.
  • Loading branch information
koschke committed Feb 18, 2025
1 parent f5a4136 commit c15daf8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Assets/SEE/Layout/NodeLayouts/RectanglePackingNodeLayout.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ protected override Dictionary<ILayoutNode, NodeTransform> Layout
{
if (node.IsLeaf)
{
/// All leaves maintain their original size. Pack assumes that
/// their sizes are already set in <paramref name="layoutNodes"/>.
/// 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;
Expand Down

0 comments on commit c15daf8

Please sign in to comment.