diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-09-19 22:03:44 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-09-19 22:03:44 +0200 |
commit | 209a837f799c0216387afad304767686b8e033ec (patch) | |
tree | 6d8d7b1923fd7d497512e6eb3b905acebe789f97 /scene/3d/collision_polygon_3d.h | |
parent | 73c35e8d95f75debc90a782fe9c5f896ed00af56 (diff) | |
parent | aed3822a93a54e285bfb711ff91b4cb86ea94841 (diff) |
Merge pull request #66112 from Zylann/get_configuration_warnings_psa
Change return type of `get_configuration_warnings` to `PackedStringArray`
Diffstat (limited to 'scene/3d/collision_polygon_3d.h')
-rw-r--r-- | scene/3d/collision_polygon_3d.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/3d/collision_polygon_3d.h b/scene/3d/collision_polygon_3d.h index 74e5867a2f..bbcea539b2 100644 --- a/scene/3d/collision_polygon_3d.h +++ b/scene/3d/collision_polygon_3d.h @@ -74,7 +74,7 @@ public: real_t get_margin() const; void set_margin(real_t p_margin); - TypedArray<String> get_configuration_warnings() const override; + PackedStringArray get_configuration_warnings() const override; CollisionPolygon3D(); }; |