tapUI制作
创建几个选项卡, 添加 toggle组件,选中的效果要作为节点的子节点
每个tab,都会传入一个值,用for循环遍历,如果传的值等于 循环的那个,就让 tab对应的栏显示
start(){},内的函数只会在游戏开始后执行一次
//选项切换onToggleButtonClick(e, cutomData) {this.soundControl.playSoundEffect(\"buttonClick\");let index = parseInt(cutomData);for (let i = 0; i < this.scrollViewArr.length; i++) {if (i == index) {this.scrollViewArr[i].active = true;} else {this.scrollViewArr[i].active = false;};};},