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
No known key found for this signature in database
GPG key ID: A9C91EE110F4EABA

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