mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 12:43:34 +00:00
Make currently required features for some examples explicit (#3262)
# Objective Fixes #3255 ## Solution - mark the `bevy_gltf` feature as required for some examples This should be cleaned up when we remove the old renderer
This commit is contained in:
parent
25b62f9577
commit
d8abfdbc6a
1 changed files with 6 additions and 0 deletions
|
@ -176,6 +176,7 @@ path = "examples/3d/cornell_box_pipelined.rs"
|
||||||
[[example]]
|
[[example]]
|
||||||
name = "load_gltf"
|
name = "load_gltf"
|
||||||
path = "examples/3d/load_gltf.rs"
|
path = "examples/3d/load_gltf.rs"
|
||||||
|
required-features = ["bevy_gltf"]
|
||||||
|
|
||||||
[[example]]
|
[[example]]
|
||||||
name = "load_gltf_pipelined"
|
name = "load_gltf_pipelined"
|
||||||
|
@ -236,6 +237,7 @@ path = "examples/3d/texture_pipelined.rs"
|
||||||
[[example]]
|
[[example]]
|
||||||
name = "update_gltf_scene"
|
name = "update_gltf_scene"
|
||||||
path = "examples/3d/update_gltf_scene.rs"
|
path = "examples/3d/update_gltf_scene.rs"
|
||||||
|
required-features = ["bevy_gltf"]
|
||||||
|
|
||||||
[[example]]
|
[[example]]
|
||||||
name = "wireframe"
|
name = "wireframe"
|
||||||
|
@ -290,6 +292,7 @@ path = "examples/app/thread_pool_resources.rs"
|
||||||
[[example]]
|
[[example]]
|
||||||
name = "asset_loading"
|
name = "asset_loading"
|
||||||
path = "examples/asset/asset_loading.rs"
|
path = "examples/asset/asset_loading.rs"
|
||||||
|
required-features = ["bevy_gltf"]
|
||||||
|
|
||||||
[[example]]
|
[[example]]
|
||||||
name = "custom_asset"
|
name = "custom_asset"
|
||||||
|
@ -302,6 +305,7 @@ path = "examples/asset/custom_asset_io.rs"
|
||||||
[[example]]
|
[[example]]
|
||||||
name = "hot_asset_reloading"
|
name = "hot_asset_reloading"
|
||||||
path = "examples/asset/hot_asset_reloading.rs"
|
path = "examples/asset/hot_asset_reloading.rs"
|
||||||
|
required-features = ["bevy_gltf"]
|
||||||
|
|
||||||
# Async Tasks
|
# Async Tasks
|
||||||
[[example]]
|
[[example]]
|
||||||
|
@ -383,6 +387,7 @@ path = "examples/ecs/timers.rs"
|
||||||
[[example]]
|
[[example]]
|
||||||
name = "alien_cake_addict"
|
name = "alien_cake_addict"
|
||||||
path = "examples/game/alien_cake_addict.rs"
|
path = "examples/game/alien_cake_addict.rs"
|
||||||
|
required-features = ["bevy_gltf"]
|
||||||
|
|
||||||
[[example]]
|
[[example]]
|
||||||
name = "breakout"
|
name = "breakout"
|
||||||
|
@ -530,6 +535,7 @@ path = "examples/window/clear_color_pipelined.rs"
|
||||||
[[example]]
|
[[example]]
|
||||||
name = "multiple_windows"
|
name = "multiple_windows"
|
||||||
path = "examples/window/multiple_windows.rs"
|
path = "examples/window/multiple_windows.rs"
|
||||||
|
required-features = ["bevy_gltf"]
|
||||||
|
|
||||||
[[example]]
|
[[example]]
|
||||||
name = "scale_factor_override"
|
name = "scale_factor_override"
|
||||||
|
|
Loading…
Reference in a new issue