minigame-lockstep-demo icon indicating copy to clipboard operation
minigame-lockstep-demo copied to clipboard

Results 4 minigame-lockstep-demo issues
Sort by recently updated
recently updated
newest added

wx-wasm-sdk中没有找到wx.getGameServerManager的方法

gameserver.js this.server.onDisconnect((res) => { console.log('onDisconnect', res); this.isDisconnect = true; res.type !== "game" && wx.showToast({ title: "游戏已掉线...", icon: "none", duration: 2e3 }); res.type === "game" && function(that) { function relink() {...

Joystick的destroy内容如下: ``` _destroy() { if (this.tweener) { this.tweener.clear(); this.tweener = null; } } ``` 它调用了Tween实例的clear()但是Tween类并没有clear(),导致渲染循环中的Update()执行出错 ``` VM702:1 gameThirdScriptError Cannot read property 'position' of null TypeError: Cannot read property 'position' of...

util.js中的 下面两个方法中中文注释是不是反了,方法名和注释冲突 /** * 将弧度换算成角度 */ export function convertDegree2Radian(deg) { return deg * Math.PI / 180; } /** * 将角度换算成弧度 */ export function convertRadian2Degree(radian) { return radian * 180 /...