diff options
| author | Juan Linietsky | 2015-12-16 08:34:57 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2015-12-16 08:34:57 -0300 |
| commit | f65eb470ae5d373a28921b648dbac962deb0b008 (patch) | |
| tree | b8b520bb78becb29ca8e5f68bbc63c8ecb2af8d9 | |
| parent | fb01d18251769ae58e2a0db79666a286379ef16f (diff) | |
| download | godot-f65eb470ae5d373a28921b648dbac962deb0b008.tar.gz godot-f65eb470ae5d373a28921b648dbac962deb0b008.tar.zst godot-f65eb470ae5d373a28921b648dbac962deb0b008.zip | |
-fix function calls in animationtree, closes #2789
| -rw-r--r-- | scene/animation/animation_tree_player.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/animation/animation_tree_player.cpp b/scene/animation/animation_tree_player.cpp index c04c65381..eeb2e6aa3 100644 --- a/scene/animation/animation_tree_player.cpp +++ b/scene/animation/animation_tree_player.cpp @@ -837,7 +837,7 @@ void AnimationTreePlayer::_process_animation(float p_delta) { StringName method = a->method_track_get_name(tr.local_track,E->get()); Vector<Variant> args=a->method_track_get_params(tr.local_track,E->get()); - ERR_CONTINUE(args.size()!=VARIANT_ARG_MAX); + args.resize(VARIANT_ARG_MAX); tr.track->node->call(method,args[0],args[1],args[2],args[3],args[4]); } } break; |
