diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2018-07-18 10:38:30 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-18 10:38:30 +0200 |
| commit | afb554afdfb6b7f8cf7b4ac3c618fc6dc9597cbb (patch) | |
| tree | d5cbc5d9482fe405688294efcaca91014afaf394 /editor/editor_node.cpp | |
| parent | b631306de1a4ab09480aae9a95dee4848351c794 (diff) | |
| parent | dd2f39da5314498e9f6d312d9e55babfa40738a6 (diff) | |
| download | redot-engine-afb554afdfb6b7f8cf7b4ac3c618fc6dc9597cbb.tar.gz | |
Merge pull request #20185 from volzhs/audio-preview
Add audio preview to Inspector dock
Diffstat (limited to 'editor/editor_node.cpp')
| -rw-r--r-- | editor/editor_node.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index cae9c34fe0..37f1626704 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -73,6 +73,7 @@ #include "editor/plugins/animation_state_machine_editor.h" #include "editor/plugins/animation_tree_editor_plugin.h" #include "editor/plugins/asset_library_editor_plugin.h" +#include "editor/plugins/audio_stream_editor_plugin.h" #include "editor/plugins/baked_lightmap_editor_plugin.h" #include "editor/plugins/camera_editor_plugin.h" #include "editor/plugins/canvas_item_editor_plugin.h" @@ -5445,6 +5446,7 @@ EditorNode::EditorNode() { add_editor_plugin(memnew(CollisionShape2DEditorPlugin(this))); add_editor_plugin(memnew(CurveEditorPlugin(this))); 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))); |
