iTween path

I am using iTween path.
There is a way lo link iTween path to an Object so when i move object the path follow the object.
I need a way to make iTween path relative…

S.

You cannot make a relative path using built-in movement functions like iTween.MoveTo(). You can make a relative path by using iTween.PointOnPath() and/or iTween.PutOnPath(). You would have to write a bit of code to increment the fraction and (if necessary) orientation code. To make it relative, either adjust the Vector3 points in the path passed to these two functions, or make a Path of Transforms childed to the game object that moves.