| 287 | } |
| 288 | |
| 289 | void ScriptEditorDebugger::clear_inspector(bool p_send_msg) { |
| 290 | inspector->clear_remote_inspector(); |
| 291 | if (p_send_msg) { |
| 292 | _put_msg("scene:clear_selection", Array()); |
| 293 | } |
| 294 | } |
| 295 | |
| 296 | void ScriptEditorDebugger::_remote_object_selected(ObjectID p_id) { |
| 297 | Array arr = { p_id }; |
no test coverage detected