diff options
author | Micky <micheledevita2@gmail.com> | 2022-09-18 02:52:20 +0200 |
---|---|---|
committer | Micky <micheledevita2@gmail.com> | 2022-09-18 02:52:20 +0200 |
commit | 213cc7859ed7d8026edad9a67a7d66a7263c8713 (patch) | |
tree | cf5d06a29b60aeb705ffc28ad88989e7c696bf5d /scene/2d/animated_sprite_2d.cpp | |
parent | 24115beb3c69e648b1d48f969785b9b0729e1be8 (diff) |
Fix outdated warning in AnimatedSprite2D
Diffstat (limited to 'scene/2d/animated_sprite_2d.cpp')
-rw-r--r-- | scene/2d/animated_sprite_2d.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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<String> AnimatedSprite2D::get_configuration_warnings() const { TypedArray<String> 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; |