当前位置:   article > 正文

Unity WebGL RuntimeError: integer overflow(整数溢出问题)_an error occurred running the unity content on thi

an error occurred running the unity content on this page. see your browser j

今天在开发Web版项目的时候发现整数溢出的问题。

An error occurred running the Unity content on this page. See your browser JavaScript console for more info. The error was:
RuntimeError: integer overflow

仔细查看是WebAssembly在实例化的时候出现了问题。于是我门查看一下打包的设置。

在打包设置里边我门看一下 WebAssembly Arithmetic Exceptions 

包含 WebAssembly 代码的不同捕获模式的枚举。

此枚举在 WebGL 平台中用于定义在 WebAssembly 代码中执行算术运算时使用的捕获类型。

throwWebAssembly 代码会在除以零、将非常大的浮点数舍入为 int 等情况下抛出异常。
ignore此模式通过在执行算术运算时将浮点值限制在合理范围内来避免陷阱。

设置为 Ignore,忽略掉浏览器的异常错误。

这样子就不会在浏览器端弹出报错弹窗而影响程序运行逻辑。

 

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/83270
推荐阅读
相关标签
  

闽ICP备14008679号