2019-10-11 11:26:24 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
2020-01-15 12:07:09 +00:00
|
|
|
* @copyright 2020 Photon Storm Ltd.
|
2019-10-11 11:26:24 +00:00
|
|
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The Video Game Object Seeked Event.
|
|
|
|
*
|
|
|
|
* This event is dispatched when a Video completes seeking to a new point in its timeline.
|
|
|
|
*
|
|
|
|
* Listen for it from a Video Game Object instance using `Video.on('seeked', listener)`.
|
|
|
|
*
|
|
|
|
* @event Phaser.GameObjects.Events#VIDEO_SEEKED
|
|
|
|
* @since 3.20.0
|
|
|
|
*
|
|
|
|
* @param {Phaser.GameObjects.Video} video - The Video Game Object which completed seeking.
|
|
|
|
*/
|
|
|
|
module.exports = 'seeked';
|