From 213cc7859ed7d8026edad9a67a7d66a7263c8713 Mon Sep 17 00:00:00 2001 From: Micky Date: Sun, 18 Sep 2022 02:52:20 +0200 Subject: Fix outdated warning in AnimatedSprite2D --- scene/2d/animated_sprite_2d.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scene/2d/animated_sprite_2d.cpp') diff --git a/scene/2d/animated_sprite_2d.cpp b/scene/2d/animated_sprite_2d.cpp index afa4633848..f84e82a6bb 100644 --- a/scene/2d/animated_sprite_2d.cpp +++ b/scene/2d/animated_sprite_2d.cpp @@ -458,7 +458,7 @@ TypedArray AnimatedSprite2D::get_configuration_warnings() const { TypedArray warnings = Node::get_configuration_warnings(); if (frames.is_null()) { - warnings.push_back(RTR("A SpriteFrames resource must be created or set in the \"Frames\" property in order for AnimatedSprite to display frames.")); + warnings.push_back(RTR("A SpriteFrames resource must be created or set in the \"Frames\" property in order for AnimatedSprite2D to display frames.")); } return warnings; -- cgit v1.2.3