diff options
author | Haoyu Qiu <timothyqiu32@gmail.com> | 2022-11-19 10:48:38 +0800 |
---|---|---|
committer | Haoyu Qiu <timothyqiu32@gmail.com> | 2022-11-19 10:48:38 +0800 |
commit | d11bb8809af3e1eeeb6f056755524c4485ad999e (patch) | |
tree | 80e94edd1b45a3d218e3e4bbc5b778b44fb05ed7 /editor | |
parent | 84c404f6bcce9ba112118d77afd6bd70a92774d1 (diff) |
Fix missing editor plugins
Diffstat (limited to 'editor')
-rw-r--r-- | editor/register_editor_types.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/register_editor_types.cpp b/editor/register_editor_types.cpp index 0170cd4b05..d3097a694e 100644 --- a/editor/register_editor_types.cpp +++ b/editor/register_editor_types.cpp @@ -154,6 +154,7 @@ void register_editor_types() { GDREGISTER_ABSTRACT_CLASS(EditorDebuggerSession); // This list is alphabetized, and plugins that depend on Node2D are in their own section below. + EditorPlugins::add_by_type<AnimationTreeEditorPlugin>(); EditorPlugins::add_by_type<AudioStreamRandomizerEditorPlugin>(); EditorPlugins::add_by_type<BitMapEditorPlugin>(); EditorPlugins::add_by_type<BoneMapEditorPlugin>(); @@ -161,6 +162,7 @@ void register_editor_types() { EditorPlugins::add_by_type<ControlEditorPlugin>(); EditorPlugins::add_by_type<CPUParticles3DEditorPlugin>(); EditorPlugins::add_by_type<CurveEditorPlugin>(); + EditorPlugins::add_by_type<DebugAdapterServer>(); EditorPlugins::add_by_type<FontEditorPlugin>(); EditorPlugins::add_by_type<GPUParticles3DEditorPlugin>(); EditorPlugins::add_by_type<GPUParticlesCollisionSDF3DEditorPlugin>(); |