diff options
author | RedMser <redmser.jj2@gmail.com> | 2023-07-05 15:41:44 +0200 |
---|---|---|
committer | RedMser <redmser.jj2@gmail.com> | 2024-02-08 23:05:20 +0100 |
commit | d3852deaa450d77edb30df2bb1c77bd7bc45befc (patch) | |
tree | e25fb2b4795f3ffec816349a7080ef95f3406a24 /scene/3d/voxel_gi.cpp | |
parent | bf37a9bac6ebfb09c0a374260c35ede8373ce427 (diff) | |
download | redot-engine-d3852deaa450d77edb30df2bb1c77bd7bc45befc.tar.gz |
Update Node::get_configuration_warnings signature
Diffstat (limited to 'scene/3d/voxel_gi.cpp')
-rw-r--r-- | scene/3d/voxel_gi.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/3d/voxel_gi.cpp b/scene/3d/voxel_gi.cpp index 8250083a9f..7c617e8bd2 100644 --- a/scene/3d/voxel_gi.cpp +++ b/scene/3d/voxel_gi.cpp @@ -518,8 +518,8 @@ AABB VoxelGI::get_aabb() const { return AABB(-size / 2, size); } -PackedStringArray VoxelGI::get_configuration_warnings() const { - PackedStringArray warnings = Node::get_configuration_warnings(); +Array VoxelGI::get_configuration_warnings() const { + Array warnings = Node::get_configuration_warnings(); if (OS::get_singleton()->get_current_rendering_method() == "gl_compatibility") { warnings.push_back(RTR("VoxelGI nodes are not supported when using the GL Compatibility backend yet. Support will be added in a future release.")); |