Quick answer: UI that breaks at different resolutions, elements overlapping, cut off, mispositioned, or wrongly sized, happens when the layout assumes a specific resolution or aspect ratio instead of adapting. Fix it with proper anchoring (elements positioned relative to screen edges/regions), appropriate scaling (UI scales sensibly with resolution), and responsive layout that handles different aspect ratios (including ultrawide and narrow), then test across the resolutions and aspect ratios players use, accounting for safe areas.
UI that looks perfect at your development resolution but breaks at others, buttons off-screen, text cut off, elements overlapping or floating, is a layout problem: the UI was built for one resolution/aspect ratio and doesn't adapt to others. Since players use a huge range of resolutions and aspect ratios, UI must be built to adapt, and the fixes are standard responsive-UI techniques plus broad testing.
Why UI Breaks at Different Resolutions
UI breaks across resolutions when its layout is tied to specific dimensions rather than adapting. Fixed positioning, elements placed at absolute positions/sizes for one resolution end up mispositioned or wrongly sized at others. Aspect-ratio assumptions, a layout built for 16:9 breaks at other ratios, on ultrawide (16:9-designed UI stretches or floats with too much space), on narrower or taller screens (elements overlap or go off-screen). No scaling, UI that doesn't scale with resolution is too small at high resolutions or too big at low ones. And ignoring safe areas, on devices with notches/rounded corners/TV overscan, UI in the unsafe regions gets cut off or obscured.
The root issue is the UI assuming one screen configuration. Players span many resolutions (from low to 4K) and aspect ratios (ultrawide to mobile portrait), so UI that doesn't adapt will break for many of them.
How to Diagnose It
Test across resolutions and aspect ratios, the breaks reveal themselves when you change the resolution/aspect ratio. Try a range: low and high resolutions, 16:9, ultrawide, narrower/taller ratios, and (on relevant devices) screens with safe-area considerations. See where elements overlap, get cut off, mispositioned, or wrongly sized. The specific breaks point at the cause (cutoff at edges = anchoring/safe area; wrong size = scaling; broken at certain ratios = aspect-ratio assumptions).
Reports describe UI being cut off, overlapping, or off-screen, often correlated with resolution/aspect ratio (ultrawide users, mobile users). Bugnet captures reports with device context (resolution, aspect ratio), so UI-break reports and the configurations they affect surface, but the main diagnosis is testing across resolutions yourself, since the breaks are reproducible by changing the screen configuration.
How to Fix It
Build responsive UI. Use anchoring, position UI elements relative to screen edges, corners, or regions (anchor to the top-left, center, bottom-right, etc.) so they stay correctly placed regardless of resolution/aspect ratio, rather than at absolute positions. Use appropriate scaling, scale UI sensibly with resolution (so it's readable at high resolutions and not oversized at low ones), using a scaling approach that maintains usability across the range. Handle aspect ratios responsively, design the layout to adapt to different aspect ratios, anchoring elements so ultrawide adds space sensibly and narrower ratios don't cause overlap/cutoff. And respect safe areas, keep important UI within the safe area on devices with notches/overscan.
These are standard responsive-UI techniques, anchoring and scaling are the core. After implementing, test across the full range of resolutions and aspect ratios players use (low to 4K, ultrawide to portrait, safe-area devices) and confirm the UI adapts correctly everywhere, no cutoff, overlap, or misposition. Responsive UI that adapts to any screen configuration is essential given how varied players' displays are.
UI breaks across resolutions when it assumes one screen size. Use anchoring and scaling so it adapts, handle ultrawide and safe areas, and test the full range of resolutions and ratios.