summaryrefslogtreecommitdiff
path: root/scene/2d
diff options
context:
space:
mode:
authorChris Bradfield <chris@kidscancode.org>2018-01-20 21:19:37 -0800
committerRĂ©mi Verschelde <rverschelde@gmail.com>2018-02-19 21:48:31 +0100
commita5688ccd90573b1700e06417b94c0c46ce5a2e9a (patch)
tree1be42bb4f30bfbbb117532a9b92416ddca8e657b /scene/2d
parente790ca084d1e1be54421c4fe0cb4aea955c62eb9 (diff)
Improve CollisionObject/CollisionObject2D warning message
Diffstat (limited to 'scene/2d')
-rw-r--r--scene/2d/collision_object_2d.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/2d/collision_object_2d.cpp b/scene/2d/collision_object_2d.cpp
index 8350e7c48a..d05c818ae1 100644
--- a/scene/2d/collision_object_2d.cpp
+++ b/scene/2d/collision_object_2d.cpp
@@ -336,7 +336,7 @@ String CollisionObject2D::get_configuration_warning() const {
if (warning == String()) {
warning += "\n";
}
- warning += TTR("This node has no children shapes, so it can't interact with the space.\nConsider adding CollisionShape2D or CollisionPolygon2D children nodes to define its shape.");
+ warning += TTR("This node has no shape, so it can't collide or interact with other objects.\nConsider adding a CollisionShape2D or CollisionPolygon2D as a child to define its shape.");
}
return warning;