From f2d733d48d62fbf0f0cfaa98e1e258baac6c2754 Mon Sep 17 00:00:00 2001 From: Max Piepenbrink Date: Thu, 13 Feb 2025 20:54:05 -0800 Subject: [PATCH] Fix stale VoxelGI warnings. Easy 1 line fix, just need to call update_configuration_warnings() any time fields related to our warning concerns get changed. In this case it's we just need to be concerned about calling this whenever the voxel data field changes for any reason. --- scene/3d/voxel_gi.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/scene/3d/voxel_gi.cpp b/scene/3d/voxel_gi.cpp index f6f004c82eb..25f5d13f0ce 100644 --- a/scene/3d/voxel_gi.cpp +++ b/scene/3d/voxel_gi.cpp @@ -275,6 +275,7 @@ void VoxelGI::set_probe_data(const Ref &p_data) { } probe_data = p_data; + update_configuration_warnings(); } Ref VoxelGI::get_probe_data() const {