We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb36422 commit c62bf22Copy full SHA for c62bf22
Runtime/Common/SystemHelper.cs
@@ -83,6 +83,8 @@ internal static string Name()
83
return "ps3";
84
case RuntimePlatform.PS4:
85
return "ps4";
86
+ case RuntimePlatform.PS5:
87
+ return "ps5";
88
case RuntimePlatform.TizenPlayer:
89
case RuntimePlatform.SamsungTVPlayer:
90
return "Samsung TV";
@@ -101,8 +103,12 @@ internal static string Name()
101
103
case RuntimePlatform.WSAPlayerX86:
102
104
return "Windows";
105
case RuntimePlatform.XBOX360:
106
+ return "Xbox 360";
107
case RuntimePlatform.XboxOne:
- return "Xbox";
108
+ case RuntimePlatform.GameCoreXboxOne:
109
+ return "Xbox One";
110
+ case RuntimePlatform.GameCoreXboxSeries:
111
+ return "Xbox Series";
112
default:
113
return Application.platform.ToString();
114
}
0 commit comments