summaryrefslogtreecommitdiffstats
path: root/scene/3d/decal.cpp
diff options
context:
space:
mode:
authorRedMser <redmser.jj2@gmail.com>2023-07-05 15:41:44 +0200
committerRedMser <redmser.jj2@gmail.com>2024-02-08 23:05:20 +0100
commitd3852deaa450d77edb30df2bb1c77bd7bc45befc (patch)
treee25fb2b4795f3ffec816349a7080ef95f3406a24 /scene/3d/decal.cpp
parentbf37a9bac6ebfb09c0a374260c35ede8373ce427 (diff)
downloadredot-engine-d3852deaa450d77edb30df2bb1c77bd7bc45befc.tar.gz
Update Node::get_configuration_warnings signature
Diffstat (limited to 'scene/3d/decal.cpp')
-rw-r--r--scene/3d/decal.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/3d/decal.cpp b/scene/3d/decal.cpp
index 6878df21d8..acd52da8b0 100644
--- a/scene/3d/decal.cpp
+++ b/scene/3d/decal.cpp
@@ -162,8 +162,8 @@ void Decal::_validate_property(PropertyInfo &p_property) const {
}
}
-PackedStringArray Decal::get_configuration_warnings() const {
- PackedStringArray warnings = Node::get_configuration_warnings();
+Array Decal::get_configuration_warnings() const {
+ Array warnings = Node::get_configuration_warnings();
if (OS::get_singleton()->get_current_rendering_method() == "gl_compatibility") {
warnings.push_back(RTR("Decals are only available when using the Forward+ or Mobile rendering backends."));