linux platform added

This commit is contained in:
BLaZeKiLL 2020-10-24 13:09:01 +05:30
parent 9269fba307
commit 72ab50499d
2 changed files with 4 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@ -38,6 +38,7 @@ class ImageTag {
webgl: 'webgl',
mac: 'mac-mono',
windows: 'windows-mono',
linux: 'base',
android: 'android',
ios: 'ios',
facebook: 'facebook',
@ -45,14 +46,14 @@ class ImageTag {
}
static get targetPlatformToImageSuffixMap() {
const { generic, webgl, mac, windows, android, ios, facebook } = ImageTag.imageSuffixes;
const { generic, webgl, mac, windows, linux, android, ios, facebook } = ImageTag.imageSuffixes;
// @see: https://docs.unity3d.com/ScriptReference/BuildTarget.html
return {
[Platform.types.StandaloneOSX]: mac,
[Platform.types.StandaloneWindows]: windows,
[Platform.types.StandaloneWindows64]: windows,
[Platform.types.StandaloneLinux64]: windows,
[Platform.types.StandaloneLinux64]: linux,
[Platform.types.iOS]: ios,
[Platform.types.Android]: android,
[Platform.types.WebGL]: webgl,