创建一个新场景 sence(gg)
放一个精灵当背景 放一个按钮关闭加时间
新建一个js脚本 gg
在脚本定义 label 计时数字label
添加计时器
cc.Class({ extends: cc.Component, properties: { label_num:cc.Label }, // LIFE-CYCLE CALLBACKS: onLoad () { this.time_num = 10; this.schedule(function(){ console.log(1); this.label_num.string = this.time_num; this.time_num--; if(this.time_num==0){ this.go_to_game(); } },1); }, go_to_game(){ }, start () { }, // update (dt) {}, });
加载场景 切换场景
站长微信:xiaomao0055
站长QQ:14496453