Implement GDExtension export plugin.

This commit is contained in:
bruvzg 2022-03-10 09:48:25 +02:00
parent cfd21adf64
commit 98d0af7d5c
No known key found for this signature in database
GPG key ID: 7960FCF39844EC38
13 changed files with 231 additions and 52 deletions

View file

@ -440,7 +440,7 @@ Error EditorExportPlatformJavaScript::export_project(const Ref<EditorExportPrese
// Export pck and shared objects
Vector<SharedObject> shared_objects;
String pck_path = base_path + ".pck";
Error error = save_pack(p_preset, pck_path, &shared_objects);
Error error = save_pack(p_preset, p_debug, pck_path, &shared_objects);
if (error != OK) {
EditorNode::get_singleton()->show_warning(TTR("Could not write file:") + "\n" + pck_path);
return error;