Browse Source

Fix crash when frames are empty

(cherry picked from commit 37c259552643204f57a808dd848ab1f8f00783b2)
qarmin 6 years ago
parent
commit
6de4c53d26
1 changed files with 1 additions and 0 deletions
  1. 1 0
      scene/2d/animated_sprite.cpp

+ 1 - 0
scene/2d/animated_sprite.cpp

@@ -646,6 +646,7 @@ void AnimatedSprite::_reset_timeout() {
 void AnimatedSprite::set_animation(const StringName &p_animation) {
 
 	ERR_EXPLAIN(vformat("There is no animation with name '%s'.", p_animation));
+	ERR_FAIL_COND(frames == NULL)
 	ERR_FAIL_COND(frames->get_animation_names().find(p_animation) == -1);
 
 	if (animation == p_animation)