phaser
Version:
A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers from the team at Phaser Studio Inc.
25 lines (23 loc) • 904 B
JavaScript
/**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* The Loader Plugin Post Process Event.
*
* This event is dispatched by the Loader Plugin when the Loader has finished loading everything in the load queue.
* It is dispatched before the internal lists are cleared and each File is destroyed.
*
* Use this hook to perform any last minute processing of files that can only happen once the
* Loader has completed, but prior to it emitting the `complete` event.
*
* Listen to it from a Scene using: `this.load.on('postprocess', listener)`.
*
* @event Phaser.Loader.Events#POST_PROCESS
* @type {string}
* @since 3.0.0
*
* @param {Phaser.Loader.LoaderPlugin} loader - A reference to the Loader Plugin that dispatched this event.
*/
module.exports = 'postprocess';