From d260681773cae2710c00859d66d7a25002d7c17d Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Sun, 21 Nov 2021 14:03:27 +0100 Subject: [PATCH] Add ps5 icon --- Content/Editor/IconsAtlas.flax | 4 ++-- Source/Editor/EditorIcons.cs | 1 + Source/Editor/GUI/PlatformSelector.cs | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Content/Editor/IconsAtlas.flax b/Content/Editor/IconsAtlas.flax index fb0b5ac90..177d9271d 100644 --- a/Content/Editor/IconsAtlas.flax +++ b/Content/Editor/IconsAtlas.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1c0410aeda532654eadab49d025d5d073bf771e27c7b0f741a7658031d19b046 -size 5611414 +oid sha256:60a89863a4a8a69d259fdbd63389b3f7de157f6097dd236d4e60231f2422eaf0 +size 5608074 diff --git a/Source/Editor/EditorIcons.cs b/Source/Editor/EditorIcons.cs index 8bf3df846..b34fe78e0 100644 --- a/Source/Editor/EditorIcons.cs +++ b/Source/Editor/EditorIcons.cs @@ -135,6 +135,7 @@ namespace FlaxEditor public SpriteHandle Scene128; public SpriteHandle AndroidIcon128; public SpriteHandle PS4Icon128; + public SpriteHandle PS5Icon128; public SpriteHandle FlaxLogo128; public SpriteHandle SwitchIcon128; public SpriteHandle SwitchSettings128; diff --git a/Source/Editor/GUI/PlatformSelector.cs b/Source/Editor/GUI/PlatformSelector.cs index c5f4cb449..bb02bb95c 100644 --- a/Source/Editor/GUI/PlatformSelector.cs +++ b/Source/Editor/GUI/PlatformSelector.cs @@ -90,7 +90,7 @@ namespace FlaxEditor.GUI new PlatformData(PlatformType.XboxScarlett, icons.XBoxScarletIcon128, "Xbox Scarlett"), new PlatformData(PlatformType.Android, icons.AndroidIcon128, "Android"), new PlatformData(PlatformType.Switch, icons.SwitchIcon128, "Switch"), - new PlatformData(PlatformType.PS5, icons.PS4Icon128, "PlayStation 5"), + new PlatformData(PlatformType.PS5, icons.PS5Icon128, "PlayStation 5"), }; const float IconSize = 64.0f;