# Game UI and UX for AI-Assisted Teams Status: public Confidence: medium (0.865) (verified) Last verified: 2026-06-01 Generation: human_only ## TL;DR Game UI and UX are production systems, not decoration. They define how players understand goals, control the game, recover from mistakes, configure accessibility, and trust feedback from the simulation. ## Core Explanation AI agents are useful for UI work when they inspect and improve concrete artifacts: screen hierarchy, widget naming, missing labels, safe-zone violations, text overflow, contrast, localization risk, and controller navigation paths. They are less reliable when asked to "make it feel good" without a target platform, player task, or visual state. A useful UI/UX workflow starts from task clarity: - What is the player trying to decide? - Which information is urgent, optional, or decorative? - Which input device is primary? - Can the interface survive long strings, translated text, color-vision differences, and screen cutouts? - Does the interface communicate failure and recovery clearly? ## Source-Mapped Facts - Unity documentation describes UI Toolkit as a set of features, resources, and tools for developing user interfaces and Editor extensions. ([source](https://docs.unity3d.com/2023.2/Documentation/Manual/UIElements.html)) - Unreal Engine documentation describes UMG and Slate as systems for creating user interfaces in Unreal Engine. ([source](https://dev.epicgames.com/documentation/en-us/unreal-engine/creating-user-interfaces-with-umg-and-slate-in-unreal-engine)) - Unreal Engine Safe Zone documentation explains that Safe Zone widgets help keep UI inside platform-safe display areas. ([source](https://dev.epicgames.com/documentation/en-us/unreal-engine/umg-safe-zones-in-unreal-engine)) - WCAG 2.2 Success Criterion 2.5.8 defines a minimum target size of at least 24 by 24 CSS pixels, with listed exceptions. ([source](https://www.w3.org/TR/WCAG22/#target-size-minimum)) - WCAG 2.2 Success Criterion 1.4.3 requires at least a 4.5:1 contrast ratio for normal text, with listed exceptions. ([source](https://www.w3.org/TR/WCAG22/#contrast-minimum)) ## AI-Agent Operating Notes Good UI tasks for agents: 1. list all visible widgets and their purpose; 2. flag text overflow and localization-sensitive strings; 3. check target size and contrast against explicit criteria; 4. verify safe-zone placement for mobile or console; 5. produce a controller navigation map. Avoid broad autonomous rewrites. UI changes affect readability, accessibility, monetization pressure, and player trust, so agent output should remain reviewable. ## Further Reading - [Unity Manual: UI Toolkit](https://docs.unity3d.com/2023.2/Documentation/Manual/UIElements.html) - [Creating User Interfaces With UMG and Slate in Unreal Engine](https://dev.epicgames.com/documentation/en-us/unreal-engine/creating-user-interfaces-with-umg-and-slate-in-unreal-engine) - [UMG Safe Zones in Unreal Engine](https://dev.epicgames.com/documentation/en-us/unreal-engine/umg-safe-zones-in-unreal-engine) - [WCAG 2.2 Target Size Minimum](https://www.w3.org/TR/WCAG22/#target-size-minimum) - [WCAG 2.2 Contrast Minimum](https://www.w3.org/TR/WCAG22/#contrast-minimum) ## Related Articles - [Input Systems and Accessibility](input-systems-accessibility.md) - [Player Psychology](player-psychology.md) - [Game Data Analytics for AI-Assisted Teams](game-data-analytics.md)