diff options
author | Micky <micheledevita2@gmail.com> | 2024-01-03 00:13:04 +0100 |
---|---|---|
committer | Micky <micheledevita2@gmail.com> | 2024-01-03 00:13:04 +0100 |
commit | ca2f3403840cae9748a38c98b7af1e9e60c63475 (patch) | |
tree | c9d47bf59e4282350a2b8dabc7a9771e03dd3177 /scene/animation/animation_player.cpp | |
parent | 07b88600b793104b21244aa36d0cc37b689e9b95 (diff) | |
download | redot-engine-ca2f3403840cae9748a38c98b7af1e9e60c63475.tar.gz |
Fix missing autocompletion for inheriting classes
Diffstat (limited to 'scene/animation/animation_player.cpp')
-rw-r--r-- | scene/animation/animation_player.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/animation/animation_player.cpp b/scene/animation/animation_player.cpp index 02b74c9188..162882fd9e 100644 --- a/scene/animation/animation_player.cpp +++ b/scene/animation/animation_player.cpp @@ -665,7 +665,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) { |