How can I make an UIListLayout ignore a specific object/child?

Let’s say I have a GUI with an UIListLayout, and in the same GUI there are 3 frames with 2 frames children each (in the picture there’s only one frame child, but there are two):
image

The padding for the UIListLayout is 0.315 (scale). I want to make the UIListLayout affect a child, but not the other. I want the unaffected children to meet in the middle:
image
But as you can see in the picture, they go above eachother. I have tried to reposition each Y scale position by 0.315*LayoutOrder, but they still don’t meet at the middle:
image

What I’d do is doing a frame with all elements which will use UILIstLayout, since I don’t think there’s an option to do such thing.

The UIListLayout works, it’s just that I want it to ignore specific items

1 Like

I know, make a new frame inside the one which has the listlayout, and set its size to 1, 0, 1, 0, and put the UIListLayout in it along with all the elements you want to be affected by it. Then, on the main frame remove the listlayout and you can move those elements freely.

That could work, but I found another way. The children frames are identical, so maybe I can make a common frame outside the list.

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.