0

我希望能够运行或不运行代码,具体取决于我正在构建的平台。一些代码应该只为 HTML5 平台运行。如何在我的游戏制作者活动中确定正在运行的平台是否为 HTML5?

4

1 回答 1

0

感谢以下人员找到了答案:Charanor。 https://gamedev.stackexchange.com/questions/152719/in-gamemaker-studio-2-how-can-i-find-out-in-code-whether-the-platform-is-html5-o

您可以使用 os_browser 常量检查游戏当前在哪个浏览器中运行。如果游戏不在浏览器中运行,则常量将为 browser_not_a_browser。因此,要检查它是否正在浏览器中运行,只需执行以下操作:

if os_browser != browser_not_a_browser {
     // Being run in a browser
}
于 2017-12-31T14:56:59.447 回答