收藏
回答

pc 端小游戏 worker WXWebAssembly 执行异常

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小游戏 Bug worker WXWebAssembly 微信安卓客户端 3.9.11.25 3.5.6

pc 端小游戏 worker 内 WXWebAssembly.instantiate 调用返回失败。详情看以下代码,跟执行结果截图。

            console.log("初始化物理引擎WXWebAssembly"+ typeof(WXWebAssembly));
            
            var mem= new WXWebAssembly.Memory({ initial: initialMemory });
            console.log("初始化物理引擎WXWebAssembly"+ typeof(WXWebAssembly.instantiate));
            WXWebAssembly.instantiate(param.path,{
                LayaAirInteractive:interactive,
                wasi_unstable:{
                    fd_close:()=>{console.log("fd_close")},
                    fd_seek:()=>{console.log("fd_seek")},
                    fd_write:()=>{console.log("fd_write")}},
                    env:{memory:mem}}
            ).then(physics3D=>{
                initOK(physics3D);
            }).catch((res)=>{
                console.error("初始化物理引擎Error",res);
            })

最后一次编辑于  09-24
回答关注问题邀请回答
收藏
登录 后发表内容