Sfoglia il codice sorgente

Fix _validate_property on AnimatedSprite 2D and 3D

Jonathan Gollnick 3 anni fa
parent
commit
0c14b930ef
2 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 1 1
      scene/2d/animated_sprite_2d.cpp
  2. 1 1
      scene/3d/sprite_3d.cpp

+ 1 - 1
scene/2d/animated_sprite_2d.cpp

@@ -122,7 +122,7 @@ void AnimatedSprite2D::_validate_property(PropertyInfo &property) const {
 			}
 
 			property.hint_string += String(E->get());
-			if (animation == E) {
+			if (animation == E->get()) {
 				current_found = true;
 			}
 		}

+ 1 - 1
scene/3d/sprite_3d.cpp

@@ -998,7 +998,7 @@ void AnimatedSprite3D::_validate_property(PropertyInfo &property) const {
 			}
 
 			property.hint_string += String(E->get());
-			if (animation == E) {
+			if (animation == E->get()) {
 				current_found = true;
 			}
 		}