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);
})