From 2c653f8c9273dce215afb36832e613fb4d65487f Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Thu, 13 Apr 2023 21:56:08 +0200 Subject: [PATCH] Improve display names of the platform enum items --- Source/Engine/Platform/Defines.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/Engine/Platform/Defines.h b/Source/Engine/Platform/Defines.h index 22ec5b863..dadecf06b 100644 --- a/Source/Engine/Platform/Defines.h +++ b/Source/Engine/Platform/Defines.h @@ -22,6 +22,7 @@ API_ENUM() enum class PlatformType /// /// Running Windows Store App (Universal Windows Platform). /// + API_ENUM(Attributes="EditorDisplay(null, \"UWP\")") UWP = 3, /// @@ -32,6 +33,7 @@ API_ENUM() enum class PlatformType /// /// Running on PlayStation 4. /// + API_ENUM(Attributes="EditorDisplay(null, \"PS4\")") PS4 = 5, /// @@ -52,6 +54,7 @@ API_ENUM() enum class PlatformType /// /// Running on PlayStation 5. /// + API_ENUM(Attributes="EditorDisplay(null, \"PS5\")") PS5 = 9, /// @@ -62,6 +65,7 @@ API_ENUM() enum class PlatformType /// /// Running on iPhone. /// + API_ENUM(Attributes="EditorDisplay(null, \"iOS\")") iOS = 11, };