You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-13 13:31:48 +00:00
Remove the EditorNode parameter from EditorPlugins create methods
Remove EditorNode usage from the Navigation editor plugin.
This commit is contained in:
@@ -7033,7 +7033,7 @@ EditorNode::EditorNode() {
|
||||
add_editor_plugin(memnew(ControlEditorPlugin));
|
||||
|
||||
for (int i = 0; i < EditorPlugins::get_plugin_count(); i++) {
|
||||
add_editor_plugin(EditorPlugins::create(i, this));
|
||||
add_editor_plugin(EditorPlugins::create(i));
|
||||
}
|
||||
|
||||
for (int i = 0; i < plugin_init_callback_count; i++) {
|
||||
|
||||
Reference in New Issue
Block a user