1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-31 18:41:20 +00:00

Hide property groups from the "Members" section in the remote inspector

This commit is contained in:
Michael Alexsander
2025-07-02 15:26:52 -03:00
parent f5918a9d35
commit 968b67207e

View File

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