mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 04:33:37 +00:00
Feature for bevy UI (#3546)
# Objective - For a plugin, I would like to enable `bevy_ui` without adding the complete `render` feature ## Solution - Add a feature for `bevy_ui` Co-authored-by: François <8672791+mockersf@users.noreply.github.com>
This commit is contained in:
parent
1a2646ecc4
commit
37f9e418d2
1 changed files with 8 additions and 6 deletions
14
Cargo.toml
14
Cargo.toml
|
@ -45,15 +45,17 @@ render = [
|
||||||
# Optional bevy crates
|
# Optional bevy crates
|
||||||
bevy_audio = ["bevy_internal/bevy_audio"]
|
bevy_audio = ["bevy_internal/bevy_audio"]
|
||||||
bevy_core_pipeline = ["bevy_internal/bevy_core_pipeline"]
|
bevy_core_pipeline = ["bevy_internal/bevy_core_pipeline"]
|
||||||
bevy_render = ["bevy_internal/bevy_render"]
|
|
||||||
bevy_text = ["bevy_internal/bevy_text"]
|
|
||||||
bevy_pbr = ["bevy_internal/bevy_pbr"]
|
|
||||||
bevy_sprite = ["bevy_internal/bevy_sprite"]
|
|
||||||
bevy_dynamic_plugin = ["bevy_internal/bevy_dynamic_plugin"]
|
bevy_dynamic_plugin = ["bevy_internal/bevy_dynamic_plugin"]
|
||||||
bevy_gilrs = ["bevy_internal/bevy_gilrs"]
|
bevy_gilrs = ["bevy_internal/bevy_gilrs"]
|
||||||
bevy_gltf = ["bevy_internal/bevy_gltf"]
|
bevy_gltf = ["bevy_internal/bevy_gltf"]
|
||||||
|
bevy_pbr = ["bevy_internal/bevy_pbr"]
|
||||||
|
bevy_render = ["bevy_internal/bevy_render"]
|
||||||
|
bevy_sprite = ["bevy_internal/bevy_sprite"]
|
||||||
|
bevy_text = ["bevy_internal/bevy_text"]
|
||||||
|
bevy_ui = ["bevy_internal/bevy_ui"]
|
||||||
bevy_winit = ["bevy_internal/bevy_winit"]
|
bevy_winit = ["bevy_internal/bevy_winit"]
|
||||||
|
|
||||||
|
# Tracing features
|
||||||
trace_chrome = ["trace", "bevy_internal/trace_chrome"]
|
trace_chrome = ["trace", "bevy_internal/trace_chrome"]
|
||||||
trace_tracy = ["trace", "bevy_internal/trace_tracy"]
|
trace_tracy = ["trace", "bevy_internal/trace_tracy"]
|
||||||
trace = ["bevy_internal/trace"]
|
trace = ["bevy_internal/trace"]
|
||||||
|
@ -82,10 +84,10 @@ serialize = ["bevy_internal/serialize"]
|
||||||
wayland = ["bevy_internal/wayland"]
|
wayland = ["bevy_internal/wayland"]
|
||||||
x11 = ["bevy_internal/x11"]
|
x11 = ["bevy_internal/x11"]
|
||||||
|
|
||||||
# enable rendering of font glyphs using subpixel accuracy
|
# Enable rendering of font glyphs using subpixel accuracy
|
||||||
subpixel_glyph_atlas = ["bevy_internal/subpixel_glyph_atlas"]
|
subpixel_glyph_atlas = ["bevy_internal/subpixel_glyph_atlas"]
|
||||||
|
|
||||||
# enable systems that allow for automated testing on CI
|
# Enable systems that allow for automated testing on CI
|
||||||
bevy_ci_testing = ["bevy_internal/bevy_ci_testing"]
|
bevy_ci_testing = ["bevy_internal/bevy_ci_testing"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
|
Loading…
Reference in a new issue