摘要:
当游戏在点击了暂停之后,屏幕依然会监听到触摸事件,导致暂停后点击屏幕依然能够对游戏场景产生影响。 这时我们可以禁用节点上的触摸事件,代码如下: this.node.resumeSystemEvents(true); //在返回游戏时调用,恢复当前节点上注册的所有节点系统事件 this.node.pa 阅读全文
摘要:
获取widget const iconContent = cc.find('Canvas/iconContent').getComponent(cc.Widget); 此时就可以修改Widget 组件的对齐边距 API,包括 top、bottom、left、right: iconContent.ri 阅读全文