layabox 跑分

var RunningScore = (function () {

function RunningScore() {

}

//显示分数 0 100

RunningScore.prototype.showScore=function(starNum,endNum,txtp,time,is_comma) {

//this.bestLab.visible = false;

var delayTime = 31;//

var preDis = Math.ceil((endNum - starNum)/(time * delayTime));//一次改变值

Laya.timer.once(delayTime, this, this.addScoreEffect, [starNum,endNum, delayTime, preDis,txtp]);

};

RunningScore.prototype.addScoreEffect=function(score,endNum, delay, increase,txtp){

txtp.text=score;

if (score < endNum) {

var gameScore = score + increase;

Laya.timer.once(delay, this, this.addScoreEffect, [gameScore,endNum,delay,increase,txtp]);

}else{

txtp.text=endNum;

};

};

return RunningScore;

}());

猜你喜欢

转载自blog.csdn.net/qq_40708273/article/details/82768361
今日推荐