cc.repeat次数BUG,会少执行一次 2.3.0版本

let index = 0;
this.node.runAction(cc.repeat(cc.callFunc(function () {
cc.log(‘test’, index);
index = index + 1;
}), 5));
以上回调应该是执行5次,但日志输出就只执行了4次,
test 0
test 1
test 2
test 3

自己手动处理下,建议使用最新的tween接口,我们再确认下。
https://docs.cocos.com/creator/manual/zh/scripting/tween.html#缓动系统(cctween)介绍