summaryrefslogtreecommitdiffstats
path: root/scene/animation/animation_player.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-01-03 10:14:37 +0100
committerRémi Verschelde <rverschelde@gmail.com>2024-01-03 10:14:37 +0100
commit4acfe4aa3c86ba76672ec7d90ae59333b0bc030a (patch)
tree9e1a4dbbc057db3d611efe514d677519b116bf7c /scene/animation/animation_player.cpp
parent34594a3096985c0fccd17cbefb9826c2d1084e3d (diff)
parentca2f3403840cae9748a38c98b7af1e9e60c63475 (diff)
downloadredot-engine-4acfe4aa3c86ba76672ec7d90ae59333b0bc030a.tar.gz
Merge pull request #86729 from Mickeon/autocompletion-for-all
Fix missing autocompletion for inheriting classes
Diffstat (limited to 'scene/animation/animation_player.cpp')
-rw-r--r--scene/animation/animation_player.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/animation/animation_player.cpp b/scene/animation/animation_player.cpp
index 49362f47c8..b7bed59c00 100644
--- a/scene/animation/animation_player.cpp
+++ b/scene/animation/animation_player.cpp
@@ -667,7 +667,7 @@ void AnimationPlayer::get_argument_options(const StringName &p_function, int p_i
r_options->push_back(String(name).quote());
}
}
- Node::get_argument_options(p_function, p_idx, r_options);
+ AnimationMixer::get_argument_options(p_function, p_idx, r_options);
}
void AnimationPlayer::_animation_removed(const StringName &p_name, const StringName &p_library) {