You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-19 14:31:59 +00:00
Merge pull request #23389 from marcelofg55/multiple_ext
Export for OS X on OS X now lets you select .dmg or .zip
This commit is contained in:
@@ -1459,8 +1459,10 @@ public:
|
||||
return valid;
|
||||
}
|
||||
|
||||
virtual String get_binary_extension(const Ref<EditorExportPreset> &p_preset) const {
|
||||
return "apk";
|
||||
virtual List<String> get_binary_extensions(const Ref<EditorExportPreset> &p_preset) const {
|
||||
List<String> list;
|
||||
list.push_back("apk");
|
||||
return list;
|
||||
}
|
||||
|
||||
virtual Error export_project(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path, int p_flags = 0) {
|
||||
|
||||
Reference in New Issue
Block a user