mirror of
https://github.com/godotengine/godot.git
synced 2025-12-07 22:00:10 +00:00
Merge pull request #108794 from bruvzg/macos_actool_export
[macOS] Add support for exporting macOS 26 Liquid Glass icons.
This commit is contained in:
commit
326b22124a
11 changed files with 132 additions and 5 deletions
|
|
@ -309,11 +309,16 @@ String OS::get_bundle_resource_dir() const {
|
|||
return ".";
|
||||
}
|
||||
|
||||
// Path to macOS .app bundle embedded icon
|
||||
// Path to macOS .app bundle embedded icon (.icns file).
|
||||
String OS::get_bundle_icon_path() const {
|
||||
return String();
|
||||
}
|
||||
|
||||
// Name of macOS .app bundle embedded icon (Liquid Glass asset name).
|
||||
String OS::get_bundle_icon_name() const {
|
||||
return String();
|
||||
}
|
||||
|
||||
// OS specific path for user://
|
||||
String OS::get_user_data_dir(const String &p_user_dir) const {
|
||||
return ".";
|
||||
|
|
|
|||
|
|
@ -294,6 +294,7 @@ public:
|
|||
virtual String get_temp_path() const;
|
||||
virtual String get_bundle_resource_dir() const;
|
||||
virtual String get_bundle_icon_path() const;
|
||||
virtual String get_bundle_icon_name() const;
|
||||
|
||||
virtual String get_user_data_dir(const String &p_user_dir) const;
|
||||
virtual String get_user_data_dir() const;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue