Skip to content

Commit c4c1c8f

Browse files
authored
Undeprecate is_playing_animation (#16121)
# Objective - Fixes #16098 ## Solution - Undeprecate `is_playing_animation` and copy the docs from `animation_is_playing` to it. ## Testing - CI ## Migration https://github.com/bevyengine/bevy-website/blob/68e9a34e3068ed2e7db5ae0b4b32feac94a589dd/release-content/0.15/migration-guides/_guides.toml#L13-L17 needs to be removed.
1 parent 3d72f49 commit c4c1c8f

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

crates/bevy_animation/src/lib.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -856,8 +856,8 @@ impl AnimationPlayer {
856856
self.active_animations.iter_mut()
857857
}
858858

859-
#[deprecated = "Use `animation_is_playing` instead"]
860-
/// Check if the given animation node is being played.
859+
/// Returns true if the animation is currently playing or paused, or false
860+
/// if the animation is stopped.
861861
pub fn is_playing_animation(&self, animation: AnimationNodeIndex) -> bool {
862862
self.active_animations.contains_key(&animation)
863863
}
@@ -944,6 +944,7 @@ impl AnimationPlayer {
944944
self.active_animations.get_mut(&animation)
945945
}
946946

947+
#[deprecated = "Use `is_playing_animation` instead"]
947948
/// Returns true if the animation is currently playing or paused, or false
948949
/// if the animation is stopped.
949950
pub fn animation_is_playing(&self, animation: AnimationNodeIndex) -> bool {

examples/animation/animation_graph.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ fn sync_weights(mut query: Query<(&mut AnimationPlayer, &ExampleAnimationWeights
452452
.zip(animation_weights.weights.iter())
453453
{
454454
// If the animation happens to be no longer active, restart it.
455-
if !animation_player.animation_is_playing(animation_node_index.into()) {
455+
if !animation_player.is_playing_animation(animation_node_index.into()) {
456456
animation_player.play(animation_node_index.into());
457457
}
458458

0 commit comments

Comments
 (0)