Merge pull request #108213 from YeldhamDev/no_grouping_here

Hide property groups from the "Members" section in the remote inspector
This commit is contained in:
Thaddeus Crews
2025-12-08 11:53:50 -06:00

View File

@@ -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)) {