You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error[E0432]: unresolved import `bevy_animation`
--> /Users/kpreid/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bevy_gltf-0.15.0/src/loader.rs:7:5
|
7 | use bevy_animation::animated_field;
| ^^^^^^^^^^^^^^ use of undeclared crate or module `bevy_animation`
It appears that the use just needs a #[cfg(feature = "bevy_animation")].
The text was updated successfully, but these errors were encountered:
Bevy version
0.15.0
Relevant system information
cargo 1.83.0 (5ffbef321 2024-10-29)
host: x86_64-apple-darwin
What you did
What went wrong
It appears that the
use
just needs a#[cfg(feature = "bevy_animation")]
.The text was updated successfully, but these errors were encountered: