| 320 | } |
| 321 | |
| 322 | Error SceneDebugger::_msg_live_node_prop(const Array &p_args) { |
| 323 | ERR_FAIL_COND_V(p_args.size() < 3, ERR_INVALID_DATA); |
| 324 | LiveEditor::get_singleton()->_node_set_func(p_args[0], p_args[1], p_args[2]); |
| 325 | return OK; |
| 326 | } |
| 327 | |
| 328 | Error SceneDebugger::_msg_live_res_prop_res(const Array &p_args) { |
| 329 | ERR_FAIL_COND_V(p_args.size() < 3, ERR_INVALID_DATA); |
nothing calls this directly
no test coverage detected