Explorar el Código

Merge pull request #31850 from aole/script-callback-enable-disable-EditorPlugin

Script callback for enabling/disabling EditorPlugin
Rémi Verschelde hace 6 años
padre
commit
4e8ce420f1
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      editor/editor_plugin.cpp

+ 1 - 1
editor/editor_plugin.cpp

@@ -238,7 +238,7 @@ Control *EditorInterface::get_base_control() {
 }
 
 void EditorInterface::set_plugin_enabled(const String &p_plugin, bool p_enabled) {
-	EditorNode::get_singleton()->set_addon_plugin_enabled(p_plugin, p_enabled);
+	EditorNode::get_singleton()->set_addon_plugin_enabled(p_plugin, p_enabled, true);
 }
 
 bool EditorInterface::is_plugin_enabled(const String &p_plugin) const {