phaser/plugins/impact/events/RESUME_EVENT.js

18 lines
507 B
JavaScript
Raw Normal View History

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 Resume Event.
*
* This event is dispatched by an Impact Physics World instance when it resumes from a paused state.
*
* Listen to it from a Scene using: `this.impact.world.on('resume', listener)`.
*
* @event Phaser.Physics.Impact.Events#RESUME
* @since 3.0.0
2019-01-17 14:54:38 +00:00
*/
module.exports = 'resume';