linux platform added
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -38,6 +38,7 @@ class ImageTag {
|
|||||||
webgl: 'webgl',
|
webgl: 'webgl',
|
||||||
mac: 'mac-mono',
|
mac: 'mac-mono',
|
||||||
windows: 'windows-mono',
|
windows: 'windows-mono',
|
||||||
|
linux: 'base',
|
||||||
android: 'android',
|
android: 'android',
|
||||||
ios: 'ios',
|
ios: 'ios',
|
||||||
facebook: 'facebook',
|
facebook: 'facebook',
|
||||||
@@ -45,14 +46,14 @@ class ImageTag {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static get targetPlatformToImageSuffixMap() {
|
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
|
// @see: https://docs.unity3d.com/ScriptReference/BuildTarget.html
|
||||||
return {
|
return {
|
||||||
[Platform.types.StandaloneOSX]: mac,
|
[Platform.types.StandaloneOSX]: mac,
|
||||||
[Platform.types.StandaloneWindows]: windows,
|
[Platform.types.StandaloneWindows]: windows,
|
||||||
[Platform.types.StandaloneWindows64]: windows,
|
[Platform.types.StandaloneWindows64]: windows,
|
||||||
[Platform.types.StandaloneLinux64]: windows,
|
[Platform.types.StandaloneLinux64]: linux,
|
||||||
[Platform.types.iOS]: ios,
|
[Platform.types.iOS]: ios,
|
||||||
[Platform.types.Android]: android,
|
[Platform.types.Android]: android,
|
||||||
[Platform.types.WebGL]: webgl,
|
[Platform.types.WebGL]: webgl,
|
||||||
|
|||||||
Reference in New Issue
Block a user