Add macOS icon

This commit is contained in:
Wojtek Figat
2022-01-26 22:12:27 +01:00
parent 249a3332dc
commit e3c613e6e3
3 changed files with 4 additions and 3 deletions

View File

@@ -136,6 +136,7 @@ namespace FlaxEditor
public SpriteHandle AndroidIcon128;
public SpriteHandle PS4Icon128;
public SpriteHandle PS5Icon128;
public SpriteHandle MacOSIcon128;
public SpriteHandle FlaxLogo128;
public SpriteHandle SwitchIcon128;
public SpriteHandle SwitchSettings128;

View File

@@ -91,7 +91,7 @@ namespace FlaxEditor.GUI
new PlatformData(PlatformType.Android, icons.AndroidIcon128, "Android"),
new PlatformData(PlatformType.Switch, icons.SwitchIcon128, "Switch"),
new PlatformData(PlatformType.PS5, icons.PS5Icon128, "PlayStation 5"),
new PlatformData(PlatformType.Mac, icons.Flax64, "Mac"),
new PlatformData(PlatformType.Mac, icons.MacOSIcon128, "macOS"),
};
const float IconSize = 64.0f;