summaryrefslogtreecommitdiff
path: root/scene/3d/sprite_3d.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2022-03-28 21:12:44 +0200
committerGitHub <noreply@github.com>2022-03-28 21:12:44 +0200
commit1ae8b2de38edd3f013226a88490cd3d4f83d2a61 (patch)
treec8dd1ee45b54b81a9d8b33f6cba7cd3ff02ff282 /scene/3d/sprite_3d.cpp
parent0c7a15d777073860603f7f36f0eed731ff745ada (diff)
parent7119d355eb6dfe18df5d6f505c4216791bfdbd92 (diff)
Merge pull request #59636 from akien-mga/string-remove-ttr
Diffstat (limited to 'scene/3d/sprite_3d.cpp')
-rw-r--r--scene/3d/sprite_3d.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/3d/sprite_3d.cpp b/scene/3d/sprite_3d.cpp
index 514bd4aba0..8d813e8b2b 100644
--- a/scene/3d/sprite_3d.cpp
+++ b/scene/3d/sprite_3d.cpp
@@ -1200,7 +1200,7 @@ StringName AnimatedSprite3D::get_animation() const {
TypedArray<String> AnimatedSprite3D::get_configuration_warnings() const {
TypedArray<String> warnings = SpriteBase3D::get_configuration_warnings();
if (frames.is_null()) {
- warnings.push_back(TTR("A SpriteFrames resource must be created or set in the \"Frames\" property in order for AnimatedSprite3D to display frames."));
+ warnings.push_back(RTR("A SpriteFrames resource must be created or set in the \"Frames\" property in order for AnimatedSprite3D to display frames."));
}
return warnings;