I have been following this code at:Moving an Object along a Bezier Curve - Unity Answers
I have attached this script to a sphere.
the code is working perfectly and the sphere is moving along the curved path but the problem is i am not able to increase or decrease the speed of the moving sphere.the code in the above link moves the sphere along the curve in the update method so i have created an instance of the sphere using instantiate method.now first time when the sphere is created it should move with slow speed and when the other instances are created the speed should increase gradually.how can i do this?