请问如何解决的,我也出现了
GameServerManager的startMatch后收不到onMatch小游戏帧同步调用startMatch返回 errCode:0,errMsg:"ok", 但是就是收不到 onMatch,多个客户端同时发起匹配也匹配不到,请问这是什么原因;
2023-06-26你好,这个问题怎么解决的,有结果吗
GameServerManager异常1、微信小游戏调用GameServerManager的房间创建、加入、房主离开、成员离开api,返回errCode = 1, errMsg: system error,这个是什么错误?出现这个问题时是不是要重新调用getGameServerManager? 2、模拟器监听不到网络变换。关掉网络连接时,监听GameServerManager退出登录中,模拟器会频繁上报,特别是重新登录失败一次就会上报一次退出登录。关掉网络,真机重新登录有log:open fail: _code:1,_msg:Host not found (authoritative),恢复网络连接后,没能重新登录成功过。出现这个问题时是不是要重新调用getGameServerManager?
2023-06-22楼主有进展吗,我也遇到同样问题,谢谢
pixijs的 auto-detect Resource 问题小游戏的代码片段好像有bug 下载片段下来就是完整的飞机大战了真是无语了 [图片] 先进行安装 "@pixi/unsafe-eval": "6.2.2", "pixi.js": "6.2.2" 然后构建npm game.js代码 import './js/libs/weapp-adapter' import './js/libs/symbol' import * as PIXI from 'pixi.js'; import { ShaderSystem } from '@pixi/core'; import { install } from '@pixi/unsafe-eval'; install({ ShaderSystem, }); let app = new PIXI.Application({ width: 640, height: 360, }); document.body.appendChild(app.view); let text = new PIXI.Text( 'This text will scroll up and be masked, so you can see how masking works. Lorem ipsum and all that.\n\n' + 'You can put anything in the container and it will be masked!', { fontSize: 24, fill: 0x1010ff, wordWrap: true, wordWrapWidth: 180, } ); 打开控制台报错 ` Unrecognized source type to auto-detect Resource` 目前发现只用 new PIXI.Text 才会出现,浏览器环境是没有问题的
2022-11-13