diff --git a/scene/debugger/scene_debugger.cpp b/scene/debugger/scene_debugger.cpp index 9458a9e9b80..637c9298e4e 100644 --- a/scene/debugger/scene_debugger.cpp +++ b/scene/debugger/scene_debugger.cpp @@ -834,6 +834,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)) {