You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-13 13:31:48 +00:00
Export for OS X on OS X now lets you select .dmg or .zip
This commit is contained in:
@@ -1021,8 +1021,10 @@ public:
|
||||
return "UWP";
|
||||
}
|
||||
|
||||
virtual String get_binary_extension(const Ref<EditorExportPreset> &p_preset) const {
|
||||
return "appx";
|
||||
virtual List<String> get_binary_extensions(const Ref<EditorExportPreset> &p_preset) const {
|
||||
List<String> list;
|
||||
list.push_back("appx");
|
||||
return list;
|
||||
}
|
||||
|
||||
virtual Ref<Texture> get_logo() const {
|
||||
|
||||
Reference in New Issue
Block a user