| 260 | #endif // _3D_DISABLED |
| 261 | |
| 262 | Error SceneDebugger::_msg_set_object_property(const Array &p_args) { |
| 263 | ERR_FAIL_COND_V(p_args.size() < 3, ERR_INVALID_DATA); |
| 264 | _set_object_property(p_args[0], p_args[1], p_args[2]); |
| 265 | RuntimeNodeSelect::get_singleton()->_queue_selection_update(); |
| 266 | return OK; |
| 267 | } |
| 268 | |
| 269 | Error SceneDebugger::_msg_set_object_property_field(const Array &p_args) { |
| 270 | ERR_FAIL_COND_V(p_args.size() < 4, ERR_INVALID_DATA); |
nothing calls this directly
no test coverage detected