diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-07-11 00:27:39 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-07-11 00:27:39 +0200 |
commit | fbac9c54c9fb44654814d1031f7cd561de848eb8 (patch) | |
tree | ae1781a1a0ded10e522c14f2d488554318f375c7 /scene/2d/animated_sprite_2d.cpp | |
parent | f5bb5db8ae3753526f42a1b0a78a4ed4de5244f5 (diff) | |
parent | 32369d2b6d90825abcaf5968a69cc4ac2a6a0056 (diff) | |
download | redot-engine-fbac9c54c9fb44654814d1031f7cd561de848eb8.tar.gz |
Merge pull request #94147 from MovaUA/fixes/node-configuration-warning-dialog-text
Fixes/node configuration warning dialog text
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 b3f735e044..014419573c 100644 --- a/scene/2d/animated_sprite_2d.cpp +++ b/scene/2d/animated_sprite_2d.cpp @@ -574,7 +574,7 @@ StringName AnimatedSprite2D::get_animation() const { PackedStringArray AnimatedSprite2D::get_configuration_warnings() const { PackedStringArray warnings = Node2D::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 AnimatedSprite2D to display frames.")); + warnings.push_back(RTR("A SpriteFrames resource must be created or set in the \"Sprite Frames\" property in order for AnimatedSprite2D to display frames.")); } return warnings; } |