From f65eb470ae5d373a28921b648dbac962deb0b008 Mon Sep 17 00:00:00 2001 From: Juan Linietsky Date: Wed, 16 Dec 2015 08:34:57 -0300 Subject: -fix function calls in animationtree, closes #2789 --- scene/animation/animation_tree_player.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scene/animation/animation_tree_player.cpp') diff --git a/scene/animation/animation_tree_player.cpp b/scene/animation/animation_tree_player.cpp index c04c653819..eeb2e6aa32 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 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; -- cgit v1.2.3