Create Unity applications that are accessible for mobile users.
Creating accessible applications makes your digital experiences available to a wider audience, including people with disabilities. Use the Accessibility module APIs to add screen reader support and configure UI(User Interface) Allows a user to interact with your application. Unity currently supports three UI systems. More info
See in Glossary based on the system accessibility settings of a user’s mobile device.
The Accessibility module APIs are available only for iOS and Android devices, with the following minimum requirements:
Platform | Operating system version |
---|---|
Android | Android 8.0 (API level 26) |
iOS | iOS 13 |
Android and iOS devices have built-in screen readers that describe what appears on the screen out loud. These screen readers are designed to help users who are blind or have low vision to navigate and interact with their mobile devices without needing to see the screen.
Platform | Screen reader |
---|---|
Android | VoiceOver |
iOS | TalkBack |
Use Unity’s Assistive Support API to enable screen reader capabilities for your application. The AssistiveSupport
class stores the active accessibility hierarchy that you create, allows your application to notify the screen reader of changes in your UI, and notifies your application of events based on user actions. Use the Accessibility Hierarchy Viewer (menu: Window > Accessibility > Accessibility Hierarchy Viewer) during Play mode to view the active accessibility hierarchy and its nodes in real-time.
Use Unity’s Accessibility Settings API to configure your UI to interact with native font scaling, bold text, and closed captions. This improves the readability and visibility of your application’s UI for all your users.