Update SettingsUtils.cs

This commit is contained in:
ALEXTANG
2024-03-29 15:24:02 +08:00
parent 5adb2f83e5
commit 4c34858ce0

View File

@@ -187,6 +187,8 @@ public static class SettingsUtils
case RuntimePlatform.Android: case RuntimePlatform.Android:
return "Android"; return "Android";
case RuntimePlatform.WebGLPlayer:
return "WebGL";
default: default:
throw new NotSupportedException($"Platform '{Application.platform.ToString()}' is not supported."); throw new NotSupportedException($"Platform '{Application.platform.ToString()}' is not supported.");
} }