let time;
time = Math.abs(d.hand.to.x - d.hand.start.x) / 100;
hand.x = d.hand.start.x;
hand.y = d.hand.start.y;
cc.tween(hand)
.to(time,{x:d.hand.to.x,y:d.hand.to.y})
.delay(1)
.call(function () {
hand.x = d.hand.start.x;
hand.y = d.hand.start.y;
})
.repeatForever()
.start();
2.0.9版本正常使用, 2.0.10版本一直提醒[Action update]. override me
