| 500 | } |
| 501 | |
| 502 | EditorPlugin *EditorData::get_editor_plugin(int p_idx) { |
| 503 | ERR_FAIL_INDEX_V(p_idx, editor_plugins.size(), nullptr); |
| 504 | return editor_plugins[p_idx]; |
| 505 | } |
| 506 | |
| 507 | void EditorData::add_extension_editor_plugin(const StringName &p_class_name, EditorPlugin *p_plugin) { |
| 508 | ERR_FAIL_COND(extension_editor_plugins.has(p_class_name)); |
no test coverage detected