2020-11-17 14:08:23 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
2023-01-02 17:36:27 +00:00
|
|
|
* @copyright 2013-2023 Photon Storm Ltd.
|
2020-11-17 14:08:23 +00:00
|
|
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The Pre-Render Event.
|
|
|
|
*
|
2020-12-04 15:07:26 +00:00
|
|
|
* This event is dispatched by the Phaser Renderer. This happens right at the start of the render
|
|
|
|
* process, after the context has been cleared, the scissors enabled (WebGL only) and everything has been
|
2020-11-17 14:08:23 +00:00
|
|
|
* reset ready for the render.
|
|
|
|
*
|
2020-12-04 15:07:26 +00:00
|
|
|
* @event Phaser.Renderer.Events#PRE_RENDER
|
2022-09-21 21:01:03 +00:00
|
|
|
* @type {string}
|
2020-11-17 14:08:23 +00:00
|
|
|
* @since 3.50.0
|
|
|
|
*/
|
|
|
|
module.exports = 'prerender';
|