2019-06-27 00:00:37 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
2022-02-28 14:29:51 +00:00
|
|
|
* @copyright 2022 Photon Storm Ltd.
|
2019-06-27 00:00:37 +00:00
|
|
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The Tween Repeat Event.
|
2022-02-28 14:29:51 +00:00
|
|
|
*
|
2019-06-27 00:00:37 +00:00
|
|
|
* This event is dispatched by a Tween when one of the properties it is tweening repeats.
|
2022-02-28 14:29:51 +00:00
|
|
|
*
|
2019-06-27 00:00:37 +00:00
|
|
|
* This event will only be dispatched if the Tween has a property with a repeat count set.
|
2022-02-28 14:29:51 +00:00
|
|
|
*
|
2019-06-27 00:00:37 +00:00
|
|
|
* If a Tween has a `repeatDelay` set, this event will fire after that delay expires.
|
2022-02-28 14:29:51 +00:00
|
|
|
*
|
2019-06-27 00:00:37 +00:00
|
|
|
* The difference between `loop` and `repeat` is that `repeat` is a property setting,
|
|
|
|
* where-as `loop` applies to the entire Tween.
|
2022-02-28 14:29:51 +00:00
|
|
|
*
|
2019-06-27 00:00:37 +00:00
|
|
|
* Listen to it from a Tween instance using `Tween.on('repeat', listener)`, i.e.:
|
2022-02-28 14:29:51 +00:00
|
|
|
*
|
2019-06-27 00:00:37 +00:00
|
|
|
* ```javascript
|
|
|
|
* var tween = this.tweens.add({
|
|
|
|
* targets: image,
|
|
|
|
* x: 500,
|
|
|
|
* ease: 'Power1',
|
|
|
|
* duration: 3000,
|
|
|
|
* repeat: 4
|
|
|
|
* });
|
|
|
|
* tween.on('repeat', listener);
|
|
|
|
* ```
|
|
|
|
*
|
|
|
|
* @event Phaser.Tweens.Events#TWEEN_REPEAT
|
|
|
|
* @since 3.19.0
|
2022-02-28 14:29:51 +00:00
|
|
|
*
|
2019-06-27 00:00:37 +00:00
|
|
|
* @param {Phaser.Tweens.Tween} tween - A reference to the Tween instance that emitted the event.
|
2022-08-19 12:45:56 +00:00
|
|
|
* @param {string} key - The property on the target that has just repeated, i.e. `x` or `scaleY`, or whatever property you are tweening.
|
|
|
|
* @param {any} target - The target object that was repeated. Usually a Game Object, but can be of any type.
|
|
|
|
* @param {number} current - The current value of the property being set on the target.
|
|
|
|
* @param {number} previous - The previous value of the property being set on the target.
|
2019-06-27 00:00:37 +00:00
|
|
|
*/
|
|
|
|
module.exports = 'repeat';
|