Construct2 - 检测设备类型

时间:2016-06-09 10:21:14

标签: plugins construct-2

我想写小型多平台游戏。 我为我的游戏创建了Contruct2插件,我有不同操作系统的特定方法。

如何检测插件runtime.js中的设备类型?

1 个答案:

答案 0 :(得分:0)

我找到了解决方案:

if (this.runtime.isAndroid) {
    // ...
} else if (this.runtime.isiOS) {
    // ...
} else if (this.runtime.isWindowsPhone8 || this.runtime.isWindowsPhone81) {
    // ...
}