Go to the source code of this file.
|  | 
| const short | DISCRETE = 0 | 
|  | This specifies that the animation function will jump from one value to the next without any interpolation. 
 | 
|  | 
| const short | LINEAR = 1 | 
|  | Simple linear interpolation between values is used to calculate the animation function. 
 | 
|  | 
| const short | PACED = 2 | 
|  | Defines interpolation to produce an even pace of change across the animation. 
 | 
|  | 
| const short | SPLINE = 3 | 
|  | Interpolates from one value in the values list to the next according to a time function defined by a cubic Bezier spline. 
 | 
|  |