Merge pull request #36879 from ThakeeNathees/animation-autocomplete-bug-fix

Fix: animation autocomplete bug fixed
This commit is contained in:
Rémi Verschelde 2020-07-02 09:06:47 +02:00 committed by GitHub
commit b65ebfc7e7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1462,7 +1462,7 @@ void AnimationPlayer::get_argument_options(const StringName &p_function, int p_i
#endif
String pf = p_function;
if (p_function == "play" || p_function == "play_backwards" || p_function == "remove_animation" || p_function == "has_animation" || p_function == "queue") {
if (p_idx == 0 && (p_function == "play" || p_function == "play_backwards" || p_function == "remove_animation" || p_function == "has_animation" || p_function == "queue")) {
List<StringName> al;
get_animation_list(&al);
for (List<StringName>::Element *E = al.front(); E; E = E->next()) {