phaser/src/renderer/events/PRE_RENDER_EVENT.js

19 lines
564 B
JavaScript
Raw Normal View History

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.
*
* 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.
*
* @event Phaser.Renderer.Events#PRE_RENDER
* @type {string}
2020-11-17 14:08:23 +00:00
* @since 3.50.0
*/
module.exports = 'prerender';