diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2019-05-29 10:42:09 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-05-29 10:42:09 +0200 |
| commit | 3f11505f4f858f07b397aa6c1004b33ce2b93302 (patch) | |
| tree | 26eaf4b743d468c42e2fe16ec8b42a7087a1c7bd | |
| parent | 36591b1ae8a8403d7ca2269d996a60a1775a9e94 (diff) | |
| parent | 506436b28af0b79c8ba8f50ec37e8a93204486be (diff) | |
Merge pull request #29253 from IronicallySerious/remove-duplicate-plugin
Remove duplicate audio bus plugin registry
| -rw-r--r-- | editor/editor_node.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index 28aa706c22..90604a36f1 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -6242,7 +6242,6 @@ EditorNode::EditorNode() { add_editor_plugin(memnew(TextureEditorPlugin(this))); add_editor_plugin(memnew(AudioStreamEditorPlugin(this))); add_editor_plugin(memnew(AudioBusesEditorPlugin(audio_bus_editor))); - add_editor_plugin(memnew(AudioBusesEditorPlugin(audio_bus_editor))); add_editor_plugin(memnew(SkeletonEditorPlugin(this))); add_editor_plugin(memnew(SkeletonIKEditorPlugin(this))); add_editor_plugin(memnew(PhysicalBonePlugin(this))); |