| 372 | } |
| 373 | |
| 374 | void EditorInterface::set_plugin_enabled(const String &p_plugin, bool p_enabled) { |
| 375 | EditorNode::get_singleton()->set_addon_plugin_enabled(p_plugin, p_enabled, true); |
| 376 | } |
| 377 | |
| 378 | bool EditorInterface::is_plugin_enabled(const String &p_plugin) const { |
| 379 | return EditorNode::get_singleton()->is_addon_plugin_enabled(p_plugin); |
nothing calls this directly
no test coverage detected