Construct2 - 检测设备类型
Construct2 - Detect device type
我想编写小型多平台游戏。
我为我的游戏创建了 Contruct2 插件,我有针对不同操作系统的任何特定方法。
如何检测插件中的设备类型 runtime.js?
我找到了解决方案:
if (this.runtime.isAndroid) {
// ...
} else if (this.runtime.isiOS) {
// ...
} else if (this.runtime.isWindowsPhone8 || this.runtime.isWindowsPhone81) {
// ...
}
我想编写小型多平台游戏。 我为我的游戏创建了 Contruct2 插件,我有针对不同操作系统的任何特定方法。
如何检测插件中的设备类型 runtime.js?
我找到了解决方案:
if (this.runtime.isAndroid) {
// ...
} else if (this.runtime.isiOS) {
// ...
} else if (this.runtime.isWindowsPhone8 || this.runtime.isWindowsPhone81) {
// ...
}