Hide property groups from the "Members" section in the remote inspector
This commit is contained in:
parent
f5918a9d35
commit
968b67207e
1 changed files with 3 additions and 0 deletions
|
|
@ -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)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue