there is the code:
this.tw1 = this.tweens.create({
targets: this.plane,
props: {
rotation: {
getStart:()=>{
return that.plane.rotation;
},
getEnd:function () {
return -Math.PI;
}
}
}
}, this);
why this tween always start from zero , not the object’s current rotation?
thanks for your advice