How do I make a perfect circle UI on all screen sizes that also scales?

If I made a button using the offset size then it will be the same size for all devices and not scale with how big the screen is. I could use the scale size, but the issue I’m having is the circle is no longera perfect circle on some devices since many screens have different ratios.

1 Like

If you use ui corner for a regular frame and make the corner radius 1,0 it should be perfect on all screens.

Lock your button or ui object with a UIAspectConstraint… it will keep it locked to its parent aspect ratio and the same across all screen sizes.

2 Likes