cc.tween
区分to 与by
cc.tween(node).to ( ...).start()
对属性进行绝对值计算,传入最终值cc.tween(node).by (...).start()
对属性进行相对值计算,传入改变值
例如,cc.tween(node).by(1, { position: cc.v3(400,0,0) }).by(1, { position: cc.v3(0,400, 0)).by(1, { position: cc.v3(-400,0,0) }).by(1, { position: cc.v3(0, -400,0) }).start();

