From 968b67207ec50d9ac69dd07bf66bf3e773601184 Mon Sep 17 00:00:00 2001 From: Michael Alexsander Date: Wed, 2 Jul 2025 15:26:52 -0300 Subject: [PATCH] Hide property groups from the "Members" section in the remote inspector --- scene/debugger/scene_debugger.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scene/debugger/scene_debugger.cpp b/scene/debugger/scene_debugger.cpp index 5c222a3a13c..924161494e3 100644 --- a/scene/debugger/scene_debugger.cpp +++ b/scene/debugger/scene_debugger.cpp @@ -833,6 +833,9 @@ void SceneDebuggerObject::_parse_script_properties(Script *p_script, ScriptInsta if (exported_members.has(E)) { continue; // Exported variables already show up in the inspector. } + if (String(E).begins_with("@")) { + continue; // Skip groups. + } Variant m; if (p_instance->get(E, m)) {