We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80aeee3 commit d36b927Copy full SHA for d36b927
crates/bevy_animation/src/graph.rs
@@ -812,10 +812,12 @@ impl AssetLoader for AnimationGraphAssetLoader {
812
SerializedAnimationClip::AssetPath(path),
813
) => {
814
if !already_warned {
815
+ let path = load_context.asset_path();
816
warn!(
- "Loaded an AnimationGraph asset which contains a legacy-style \
817
- SerializedAnimationClip. Please re-save the asset using \
818
- AnimationGraph::save to automatically migrate to the new format"
+ "Loaded an AnimationGraph asset at \"{path}\" which contains a \
+ legacy-style SerializedAnimationClip. Please re-save the asset \
819
+ using AnimationGraph::save to automatically migrate to the new \
820
+ format"
821
);
822
already_warned = true;
823
}
0 commit comments