diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2024-09-27 14:57:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-27 14:57:34 +0200 |
commit | 76a135926aef1f02f27e4e09093787f2c670956d (patch) | |
tree | 43766f76a8dee0482eae31ee58ad63b1c7c0343c /platform/android/export/export_plugin.h | |
parent | ac3eadf976006e859b0a3c1b298138cf31c66637 (diff) | |
parent | dbcc7f3051f24663c7215daba1c6a725c5b66096 (diff) | |
download | redot-engine-76a135926aef1f02f27e4e09093787f2c670956d.tar.gz |
Merge pull request #97517 from syntaxerror247/android-themed-icon
Add support for Android Themed Icons (monochrome)
Diffstat (limited to 'platform/android/export/export_plugin.h')
-rw-r--r-- | platform/android/export/export_plugin.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/platform/android/export/export_plugin.h b/platform/android/export/export_plugin.h index 708288fbf4..7e1d626486 100644 --- a/platform/android/export/export_plugin.h +++ b/platform/android/export/export_plugin.h @@ -167,12 +167,13 @@ class EditorExportPlatformAndroid : public EditorExportPlatform { void _process_launcher_icons(const String &p_file_name, const Ref<Image> &p_source_image, int dimension, Vector<uint8_t> &p_data); - void load_icon_refs(const Ref<EditorExportPreset> &p_preset, Ref<Image> &icon, Ref<Image> &foreground, Ref<Image> &background); + void load_icon_refs(const Ref<EditorExportPreset> &p_preset, Ref<Image> &icon, Ref<Image> &foreground, Ref<Image> &background, Ref<Image> &monochrome); void _copy_icons_to_gradle_project(const Ref<EditorExportPreset> &p_preset, const Ref<Image> &p_main_image, const Ref<Image> &p_foreground, - const Ref<Image> &p_background); + const Ref<Image> &p_background, + const Ref<Image> &p_monochrome); static void _create_editor_debug_keystore_if_needed(); |