I’m using the itween moveto function to move a gameobject along a path. Now i want the gameobject to go faster between point 3 and 5. Can i change the speed parameters during the path? Or is there any other way to do this?
One way is to use PutOnPath() or PointOnPath() to place the game object on the path. The last parameter of these two methods is the percent of the way through the path to place the object/point. To use these, you’ll have to write code that increments the percentage at at some rate. You can increase the percentage faster between points 3 and 5. Untested example code. Assume your points 3 and 5 are at .47 and .65 of the way along the path: