summaryrefslogtreecommitdiffstats
path: root/scene/2d/collision_polygon_2d.cpp
diff options
context:
space:
mode:
authorMarc Gilleron <marc.gilleron@gmail.com>2022-09-19 16:43:15 +0100
committerMarc Gilleron <marc.gilleron@gmail.com>2022-09-19 16:43:15 +0100
commitaed3822a93a54e285bfb711ff91b4cb86ea94841 (patch)
tree5b2ce97169ae411015041e35005984d9cc5762b9 /scene/2d/collision_polygon_2d.cpp
parent908795301b9e4fcf24b115329a48d7d295c13a1a (diff)
downloadredot-engine-aed3822a93a54e285bfb711ff91b4cb86ea94841.tar.gz
Change return type of `get_configuration_warnings` to `PackedStringArray`
Diffstat (limited to 'scene/2d/collision_polygon_2d.cpp')
-rw-r--r--scene/2d/collision_polygon_2d.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/2d/collision_polygon_2d.cpp b/scene/2d/collision_polygon_2d.cpp
index b69b19d30d..d06461b566 100644
--- a/scene/2d/collision_polygon_2d.cpp
+++ b/scene/2d/collision_polygon_2d.cpp
@@ -235,8 +235,8 @@ bool CollisionPolygon2D::_edit_is_selected_on_click(const Point2 &p_point, doubl
}
#endif
-TypedArray<String> CollisionPolygon2D::get_configuration_warnings() const {
- TypedArray<String> warnings = Node::get_configuration_warnings();
+PackedStringArray CollisionPolygon2D::get_configuration_warnings() const {
+ PackedStringArray warnings = Node::get_configuration_warnings();
if (!Object::cast_to<CollisionObject2D>(get_parent())) {
warnings.push_back(RTR("CollisionPolygon2D 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."));