Correct ease type

This commit is contained in:
samme 2019-05-30 16:11:34 -07:00
parent 7a98fe6d8a
commit 8f2e774c4b
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@
* @property {number} [to=1] - The end number. * @property {number} [to=1] - The end number.
* @property {number} [delay=0] - The number of milliseconds to delay before the tween will start. * @property {number} [delay=0] - The number of milliseconds to delay before the tween will start.
* @property {number} [duration=1000] - The duration of the tween in milliseconds. * @property {number} [duration=1000] - The duration of the tween in milliseconds.
* @property {string} [ease='Power0'] - The easing equation to use for the tween. * @property {(string|function)} [ease='Power0'] - The easing equation to use for the tween.
* @property {array} [easeParams] - Optional easing parameters. * @property {array} [easeParams] - Optional easing parameters.
* @property {number} [hold=0] - The number of milliseconds to hold the tween for before yoyo'ing. * @property {number} [hold=0] - The number of milliseconds to hold the tween for before yoyo'ing.
* @property {number} [repeat=0] - The number of times to repeat the tween. * @property {number} [repeat=0] - The number of times to repeat the tween.

View file

@ -5,7 +5,7 @@
* @property {any} targets - The object, or an array of objects, to run the tween on. * @property {any} targets - The object, or an array of objects, to run the tween on.
* @property {number} [delay=0] - The number of milliseconds to delay before the tween will start. * @property {number} [delay=0] - The number of milliseconds to delay before the tween will start.
* @property {number} [duration=1000] - The duration of the tween in milliseconds. * @property {number} [duration=1000] - The duration of the tween in milliseconds.
* @property {string} [ease='Power0'] - The easing equation to use for the tween. * @property {(string|function)} [ease='Power0'] - The easing equation to use for the tween.
* @property {array} [easeParams] - Optional easing parameters. * @property {array} [easeParams] - Optional easing parameters.
* @property {number} [hold=0] - The number of milliseconds to hold the tween for before yoyo'ing. * @property {number} [hold=0] - The number of milliseconds to hold the tween for before yoyo'ing.
* @property {number} [repeat=0] - The number of times each property tween repeats. * @property {number} [repeat=0] - The number of times each property tween repeats.