let bigWinNumCfg = progress;
let obj: any={}
obj.num = 0
Tween.stopAllByTag(101)
tween(obj)
.tag(101)
.to(2, { num: bigWinNumCfg }, {
progress(start: number, end: number, current: number, ratio: number): number {
const progress = ratio * ratio;
return ProgressBarNode.progress = start + (end - start) * progress;
},
}).start();