diff options
author | HolonProduction <holonproduction@gmail.com> | 2024-11-15 13:06:59 +0100 |
---|---|---|
committer | HolonProduction <holonproduction@gmail.com> | 2024-11-15 13:06:59 +0100 |
commit | a389eb4608d87ea071916b52b40bd28aa542e9ae (patch) | |
tree | eb9684c6904fd6b17f134cdc34f9dc0c1bb69e30 /scene/animation/animation_player.cpp | |
parent | 98ddec4b8b64e1253fb3a2c1ae853c604ff490fa (diff) | |
download | redot-engine-a389eb4608d87ea071916b52b40bd28aa542e9ae.tar.gz |
Add back `AnimationPlayer.get_argument_options`
Diffstat (limited to 'scene/animation/animation_player.cpp')
-rw-r--r-- | scene/animation/animation_player.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/scene/animation/animation_player.cpp b/scene/animation/animation_player.cpp index b3a75a75a0..7d28aead6e 100644 --- a/scene/animation/animation_player.cpp +++ b/scene/animation/animation_player.cpp @@ -876,6 +876,20 @@ Tween::EaseType AnimationPlayer::get_auto_capture_ease_type() const { return auto_capture_ease_type; } +#ifdef TOOLS_ENABLED +void AnimationPlayer::get_argument_options(const StringName &p_function, int p_idx, List<String> *r_options) const { + const String pf = p_function; + if (p_idx == 0 && (pf == "play" || pf == "play_backwards" || pf == "has_animation" || pf == "queue")) { + List<StringName> al; + get_animation_list(&al); + for (const StringName &name : al) { + r_options->push_back(String(name).quote()); + } + } + AnimationMixer::get_argument_options(p_function, p_idx, r_options); +} +#endif + void AnimationPlayer::_animation_removed(const StringName &p_name, const StringName &p_library) { AnimationMixer::_animation_removed(p_name, p_library); |