2019-01-17 14:54:38 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
2020-01-15 12:07:09 +00:00
|
|
|
* @copyright 2020 Photon Storm Ltd.
|
2019-05-10 15:15:04 +00:00
|
|
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
2019-01-17 14:54:38 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The Impact Physics World Pause Event.
|
|
|
|
*
|
|
|
|
* This event is dispatched by an Impact Physics World instance when it is paused.
|
|
|
|
*
|
|
|
|
* Listen to it from a Scene using: `this.impact.world.on('pause', listener)`.
|
|
|
|
*
|
|
|
|
* @event Phaser.Physics.Impact.Events#PAUSE
|
2019-02-12 11:37:58 +00:00
|
|
|
* @since 3.0.0
|
2019-01-17 14:54:38 +00:00
|
|
|
*/
|
|
|
|
module.exports = 'pause';
|