diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2023-10-13 22:17:26 +0200 |
|---|---|---|
| committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-10-13 22:17:26 +0200 |
| commit | 4fd0cfa604ee4f465825d337ee365ca565b5bcdb (patch) | |
| tree | fc0938a06e222ac013a49a242becddce1a329cdc | |
| parent | 135fa1ef5d10ec0a06f1d9f8bfa4742d63a7198e (diff) | |
| parent | fee3b85a2b84739c9f6f26ef5dc55f643d623a87 (diff) | |
| download | redot-engine-4fd0cfa604ee4f465825d337ee365ca565b5bcdb.tar.gz | |
Merge pull request #83239 from Daylily-Zeleen/Fixs-missing-editor-singletons-when-dump-extension-api
Fix missing editor singletons when dumping extension api
| -rw-r--r-- | main/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/main/main.cpp b/main/main.cpp index 72a5210f12..c09b437757 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -2960,6 +2960,7 @@ bool Main::start() { } if (dump_extension_api) { + Engine::get_singleton()->set_editor_hint(true); // "extension_api.json" should always contains editor singletons. GDExtensionAPIDump::generate_extension_json_file("extension_api.json", include_docs_in_extension_api_dump); } |
