diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-03-13 14:02:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-13 14:02:26 +0100 |
commit | 0d37c291730014a84c4c24f3abb2d3a27dc1cf89 (patch) | |
tree | bb6b510320cd8ee94d9673f2a3ebdadd76f2b3e2 | |
parent | 541e688ad1eefea08495c1f92111a6a3db59a66d (diff) | |
parent | 14658e3d10bfd44566936b821c2ae9cc1b9e55f7 (diff) |
Merge pull request #46957 from sboronczyk/fix-editor-plugin
Fix Create Plugin after GD Annotation Changes
-rw-r--r-- | editor/plugin_config_dialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugin_config_dialog.cpp b/editor/plugin_config_dialog.cpp index 2a0e7d0732..f496811e0a 100644 --- a/editor/plugin_config_dialog.cpp +++ b/editor/plugin_config_dialog.cpp @@ -86,7 +86,7 @@ void PluginConfigDialog::_on_confirmed() { // Hard-coded GDScript template to keep usability until we use script templates. Ref<Script> gdscript = memnew(GDScript); gdscript->set_source_code( - "tool\n" + "@tool\n" "extends EditorPlugin\n" "\n" "\n" |