Add native window/taskbar icon support for Windows and macOS.

Co-authored-by: Markus Törnqvist <mjt@nysv.org>
This commit is contained in:
bruvzg
2019-05-17 16:43:56 +03:00
parent c088386c5b
commit 2b9ed68d6a
11 changed files with 209 additions and 2 deletions

View File

@ -692,6 +692,10 @@ Error EditorExportPlatform::export_project_files(const Ref<EditorExportPreset> &
}
}
//add native icons to non-resource include list
_edit_filter_list(paths, String("*.icns"), false);
_edit_filter_list(paths, String("*.ico"), false);
_edit_filter_list(paths, p_preset->get_include_filter(), false);
_edit_filter_list(paths, p_preset->get_exclude_filter(), true);