mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 20:53:53 +00:00
8d1f6ff7fa
# Objective UIs created for Bevy cannot currently be made accessible. This PR aims to address that. ## Solution Integrate AccessKit as a dependency, adding accessibility support to existing bevy_ui widgets. ## Changelog ### Added * Integrate with and expose [AccessKit](https://accesskit.dev) for platform accessibility. * Add `Label` for marking text specifically as a label for UI controls.
17 lines
502 B
TOML
17 lines
502 B
TOML
[package]
|
|
name = "bevy_a11y"
|
|
version = "0.9.0"
|
|
edition = "2021"
|
|
description = "Provides accessibility support for Bevy Engine"
|
|
homepage = "https://bevyengine.org"
|
|
repository = "https://github.com/bevyengine/bevy"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["bevy", "accessibility", "a11y"]
|
|
|
|
[dependencies]
|
|
# bevy
|
|
bevy_app = { path = "../bevy_app", version = "0.9.0" }
|
|
bevy_derive = { path = "../bevy_derive", version = "0.9.0" }
|
|
bevy_ecs = { path = "../bevy_ecs", version = "0.9.0" }
|
|
|
|
accesskit = "0.10"
|