Переглянути джерело

Merge pull request #44657 from timothyqiu/inspect-dynamic-3.2

[3.x] Fix display of programmatically created value in remote inspector
Rémi Verschelde 4 роки тому
батько
коміт
9d1770d4fb
1 змінених файлів з 1 додано та 1 видалено
  1. 1 1
      scene/debugger/script_debugger_remote.cpp

+ 1 - 1
scene/debugger/script_debugger_remote.cpp

@@ -675,7 +675,7 @@ void ScriptDebuggerRemote::_send_object_id(ObjectID p_id) {
 			prop.push_back(pi.hint_string);
 			prop.push_back(pi.usage);
 
-			if (!res.is_null()) {
+			if (!res.is_null() && !res->get_path().empty()) {
 				var = res->get_path();
 			}