Update all get_configuration_warning to retrieve warnings from the parent
This commit is contained in:
@ -660,11 +660,16 @@ StringName AnimatedSprite2D::get_animation() const {
|
||||
}
|
||||
|
||||
String AnimatedSprite2D::get_configuration_warning() const {
|
||||
String warning = Node2D::get_configuration_warning();
|
||||
|
||||
if (frames.is_null()) {
|
||||
return TTR("A SpriteFrames resource must be created or set in the \"Frames\" property in order for AnimatedSprite to display frames.");
|
||||
if (!warning.empty()) {
|
||||
warning += "\n\n";
|
||||
}
|
||||
warning += TTR("A SpriteFrames resource must be created or set in the \"Frames\" property in order for AnimatedSprite to display frames.");
|
||||
}
|
||||
|
||||
return String();
|
||||
return warning;
|
||||
}
|
||||
|
||||
void AnimatedSprite2D::set_specular_color(const Color &p_color) {
|
||||
|
||||
Reference in New Issue
Block a user