mirror of
https://github.com/bevyengine/bevy
synced 2024-11-25 14:10:19 +00:00
Add depending bevy features for higher level one (#7855)
This commit is contained in:
parent
520e413c21
commit
13196613ee
1 changed files with 6 additions and 6 deletions
12
Cargo.toml
12
Cargo.toml
|
@ -66,7 +66,7 @@ bevy_asset = ["bevy_internal/bevy_asset"]
|
||||||
bevy_audio = ["bevy_internal/bevy_audio"]
|
bevy_audio = ["bevy_internal/bevy_audio"]
|
||||||
|
|
||||||
# Provides cameras and other basic render pipeline features
|
# Provides cameras and other basic render pipeline features
|
||||||
bevy_core_pipeline = ["bevy_internal/bevy_core_pipeline"]
|
bevy_core_pipeline = ["bevy_internal/bevy_core_pipeline", "bevy_asset", "bevy_render"]
|
||||||
|
|
||||||
# Plugin for dynamic loading (using [libloading](https://crates.io/crates/libloading))
|
# Plugin for dynamic loading (using [libloading](https://crates.io/crates/libloading))
|
||||||
bevy_dynamic_plugin = ["bevy_internal/bevy_dynamic_plugin"]
|
bevy_dynamic_plugin = ["bevy_internal/bevy_dynamic_plugin"]
|
||||||
|
@ -75,25 +75,25 @@ bevy_dynamic_plugin = ["bevy_internal/bevy_dynamic_plugin"]
|
||||||
bevy_gilrs = ["bevy_internal/bevy_gilrs"]
|
bevy_gilrs = ["bevy_internal/bevy_gilrs"]
|
||||||
|
|
||||||
# [glTF](https://www.khronos.org/gltf/) support
|
# [glTF](https://www.khronos.org/gltf/) support
|
||||||
bevy_gltf = ["bevy_internal/bevy_gltf"]
|
bevy_gltf = ["bevy_internal/bevy_gltf", "bevy_asset", "bevy_scene", "bevy_pbr"]
|
||||||
|
|
||||||
# Adds PBR rendering
|
# Adds PBR rendering
|
||||||
bevy_pbr = ["bevy_internal/bevy_pbr"]
|
bevy_pbr = ["bevy_internal/bevy_pbr", "bevy_asset", "bevy_render", "bevy_core_pipeline"]
|
||||||
|
|
||||||
# Provides rendering functionality
|
# Provides rendering functionality
|
||||||
bevy_render = ["bevy_internal/bevy_render"]
|
bevy_render = ["bevy_internal/bevy_render"]
|
||||||
|
|
||||||
# Provides scene functionality
|
# Provides scene functionality
|
||||||
bevy_scene = ["bevy_internal/bevy_scene"]
|
bevy_scene = ["bevy_internal/bevy_scene", "bevy_asset"]
|
||||||
|
|
||||||
# Provides sprite functionality
|
# Provides sprite functionality
|
||||||
bevy_sprite = ["bevy_internal/bevy_sprite"]
|
bevy_sprite = ["bevy_internal/bevy_sprite", "bevy_render", "bevy_core_pipeline"]
|
||||||
|
|
||||||
# Provides text functionality
|
# Provides text functionality
|
||||||
bevy_text = ["bevy_internal/bevy_text"]
|
bevy_text = ["bevy_internal/bevy_text"]
|
||||||
|
|
||||||
# A custom ECS-driven UI framework
|
# A custom ECS-driven UI framework
|
||||||
bevy_ui = ["bevy_internal/bevy_ui"]
|
bevy_ui = ["bevy_internal/bevy_ui", "bevy_core_pipeline", "bevy_text", "bevy_sprite"]
|
||||||
|
|
||||||
# winit window and input backend
|
# winit window and input backend
|
||||||
bevy_winit = ["bevy_internal/bevy_winit"]
|
bevy_winit = ["bevy_internal/bevy_winit"]
|
||||||
|
|
Loading…
Reference in a new issue