Remove the EditorNode parameter from EditorPlugins create methods
Remove EditorNode usage from the Navigation editor plugin.
This commit is contained in:
parent
f810f76890
commit
cd1d7294d8
10 changed files with 15 additions and 19 deletions
|
|
@ -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++) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue