summaryrefslogtreecommitdiffstats
path: root/scene/3d/collision_object.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2018-01-21 21:32:00 +0100
committerRémi Verschelde <rverschelde@gmail.com>2018-01-21 21:32:00 +0100
commite1f34249ebacb3098c9da8c21ef47cfc93ac812c (patch)
tree9532af32f30d428f6c7d7269858755c6a88c9edd /scene/3d/collision_object.cpp
parent8daf5491ab6bc60434e4d952830bdd258eaf0e53 (diff)
downloadredot-engine-e1f34249ebacb3098c9da8c21ef47cfc93ac812c.tar.gz
Fix typo in CollisionObject warning
Diffstat (limited to 'scene/3d/collision_object.cpp')
-rw-r--r--scene/3d/collision_object.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/3d/collision_object.cpp b/scene/3d/collision_object.cpp
index 73770a2dd2..07235b3da4 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 it's shape.");
+ 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.");
}
return warning;