diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-03-28 21:12:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-28 21:12:44 +0200 |
commit | 1ae8b2de38edd3f013226a88490cd3d4f83d2a61 (patch) | |
tree | c8dd1ee45b54b81a9d8b33f6cba7cd3ff02ff282 /scene/3d/physics_body_3d.cpp | |
parent | 0c7a15d777073860603f7f36f0eed731ff745ada (diff) | |
parent | 7119d355eb6dfe18df5d6f505c4216791bfdbd92 (diff) | |
download | redot-engine-1ae8b2de38edd3f013226a88490cd3d4f83d2a61.tar.gz |
Merge pull request #59636 from akien-mga/string-remove-ttr
Diffstat (limited to 'scene/3d/physics_body_3d.cpp')
-rw-r--r-- | scene/3d/physics_body_3d.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/3d/physics_body_3d.cpp b/scene/3d/physics_body_3d.cpp index 47baa9e023..32cad42133 100644 --- a/scene/3d/physics_body_3d.cpp +++ b/scene/3d/physics_body_3d.cpp @@ -988,7 +988,7 @@ TypedArray<String> RigidDynamicBody3D::get_configuration_warnings() const { TypedArray<String> warnings = Node::get_configuration_warnings(); if (ABS(t.basis.get_axis(0).length() - 1.0) > 0.05 || ABS(t.basis.get_axis(1).length() - 1.0) > 0.05 || ABS(t.basis.get_axis(2).length() - 1.0) > 0.05) { - warnings.push_back(TTR("Size changes to RigidDynamicBody will be overridden by the physics engine when running.\nChange the size in children collision shapes instead.")); + warnings.push_back(RTR("Size changes to RigidDynamicBody will be overridden by the physics engine when running.\nChange the size in children collision shapes instead.")); } return warnings; |