Move features needed for animated_fox exameple into baseline dev deps.
This commit is contained in:
parent
fc74926073
commit
cf7358cc44
|
@ -23,7 +23,11 @@ thiserror = "1.0"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
bevy = { version = "0.10", default-features = false, features = [
|
bevy = { version = "0.10", default-features = false, features = [
|
||||||
|
"animation",
|
||||||
|
"bevy_gltf",
|
||||||
|
"bevy_scene",
|
||||||
"bevy_winit",
|
"bevy_winit",
|
||||||
|
"png",
|
||||||
"x11",
|
"x11",
|
||||||
] }
|
] }
|
||||||
|
|
||||||
|
@ -46,6 +50,3 @@ path = "examples/render_layers.rs"
|
||||||
[[example]]
|
[[example]]
|
||||||
name = "animated_fox"
|
name = "animated_fox"
|
||||||
path = "examples/animated_fox.rs"
|
path = "examples/animated_fox.rs"
|
||||||
required-features = [
|
|
||||||
"bevy/animation", "bevy/bevy_gltf", "bevy/png", "bevy/bevy_scene"
|
|
||||||
]
|
|
||||||
|
|
|
@ -40,8 +40,7 @@ cargo run --example render_layers
|
||||||
An animated jointed model with an outline.
|
An animated jointed model with an outline.
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
cargo run --features="bevy/animation bevy/bevy_gltf bevy/png bevy/bevy_scene" \
|
cargo run --example animated_fox
|
||||||
--example animated_fox
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## Versions
|
## Versions
|
||||||
|
|
Loading…
Reference in New Issue