Hide property groups from the "Members" section in debugger

This commit is contained in:
Jayden Sipe 2026-02-25 22:02:49 -05:00
parent 923c751af4
commit 23edf0d4d9

View file

@ -417,6 +417,10 @@ void EditorDebuggerInspector::add_stack_variable(const Array &p_array, int p_off
type = "Locals/";
break;
case 1:
if (n.begins_with("@")) {
return; // Skip groups.
}
type = "Members/";
break;
case 2: