diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-06-05 00:58:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-05 00:58:44 +0200 |
commit | 8363ee6f8d398529d2db0e481fea82ccc9dcda31 (patch) | |
tree | 3c0f5f2826eae97cc025942ffbb13dbef1547d05 /scene/2d/collision_shape_2d.cpp | |
parent | 766c6dbb24c736eb1e24ca69eb15398eac654c2c (diff) | |
parent | 23abac93256185a47f64800220f6b9fa230b3f87 (diff) |
Merge pull request #48908 from nekomatata/physics-nodes-reorganization
Physics nodes reorganization
Diffstat (limited to 'scene/2d/collision_shape_2d.cpp')
-rw-r--r-- | scene/2d/collision_shape_2d.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/2d/collision_shape_2d.cpp b/scene/2d/collision_shape_2d.cpp index d9009ef85c..60780f1cc3 100644 --- a/scene/2d/collision_shape_2d.cpp +++ b/scene/2d/collision_shape_2d.cpp @@ -181,7 +181,7 @@ TypedArray<String> CollisionShape2D::get_configuration_warnings() const { TypedArray<String> warnings = Node::get_configuration_warnings(); if (!Object::cast_to<CollisionObject2D>(get_parent())) { - warnings.push_back(TTR("CollisionShape2D only serves to provide a collision shape to a CollisionObject2D derived node. Please only use it as a child of Area2D, StaticBody2D, RigidBody2D, KinematicBody2D, etc. to give them a shape.")); + warnings.push_back(TTR("CollisionShape2D only serves to provide a collision shape to a CollisionObject2D derived node. Please only use it as a child of Area2D, StaticBody2D, RigidBody2D, CharacterBody2D, etc. to give them a shape.")); } if (!shape.is_valid()) { warnings.push_back(TTR("A shape must be provided for CollisionShape2D to function. Please create a shape resource for it!")); |