diff options
author | Chris Bradfield <chris@kidscancode.org> | 2018-01-20 21:19:37 -0800 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2018-02-19 21:48:31 +0100 |
commit | a5688ccd90573b1700e06417b94c0c46ce5a2e9a (patch) | |
tree | 1be42bb4f30bfbbb117532a9b92416ddca8e657b /scene/3d/collision_object.cpp | |
parent | e790ca084d1e1be54421c4fe0cb4aea955c62eb9 (diff) | |
download | redot-engine-a5688ccd90573b1700e06417b94c0c46ce5a2e9a.tar.gz |
Improve CollisionObject/CollisionObject2D warning message
Diffstat (limited to 'scene/3d/collision_object.cpp')
-rw-r--r-- | scene/3d/collision_object.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/3d/collision_object.cpp b/scene/3d/collision_object.cpp index 07235b3da4..1d5d1b2afe 100644 --- a/scene/3d/collision_object.cpp +++ b/scene/3d/collision_object.cpp @@ -373,7 +373,7 @@ String CollisionObject::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 CollisionShape or CollisionPolygon 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 CollisionShape or CollisionPolygon as a child to define its shape."); } return warning; |