Is there a UI layout where it lists out GUIS in rows and columns but it doesnt have a restriction on the sizing?
Basically, I dont want all the siblings of the layout to have the same Size and position but I also want the auto listing in the rows. For example, I can have 5 frames in the first row with different sizes and the max number of frames is when the next frame cant fit.
One option is to use UITableLayout, although it can be hard to use. Another would be to use a UIListLayout and then make each row have a UIListLayout that’s Horizontal.
Thanks I originally thought about having nested UIListLayouts but I couldn’t stop thinking about performance. In my current script and UI, I have a problem with text font size that doesn’t look straight. My UI is to create animated text so I also had the problem of having to cut off the end if the word wouldn’t fit inside the row. This was single cell per letter. I tried to tackle both problems and try to find a solution that could solve both of them but I feel like maybe I should look back at my previous UI.
Gif of my previous UI
If you notice, the spacing between each letter is sightly off even though each cell has the same text size, position, and size. This is even more noticeable in the change to BOLD fonts and certain characters. I was wondering if maybe there was a solution to this?
This is fixed if you use a single text label but then you couldnt have that fad in animation or specific character font. Thats why I also wanted a way to mix textlabels with more than one character