if i want to move an object from one point to another in a straight line using tween library then i can just use the following code.
this.entity
.tween(this.entity.getLocalPosition())
.to(new pc.Vec3(4, 0, 0), 1.0, pc.SineOut)
.loop(true)
.yoyo(true)
.start();
but lets say if i want to make an object move in a curvature path,then how am i suppose to do so???