Removed event as no longer required

This commit is contained in:
Richard Davey 2020-12-11 10:24:15 +00:00
parent 27da1dfa4b
commit dbae58368d
2 changed files with 0 additions and 20 deletions

View file

@ -1,19 +0,0 @@
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2020 Photon Storm Ltd.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* The Renderer Projection Update Event.
*
* This event is dispatched by the Phaser Renderer when the global Projection Matrix
* is updated.
*
* @event Phaser.Renderer.Events#PROJECTION
* @since 3.50.0
*
* @param {number} width - The new width of the renderer.
* @param {number} height - The new height of the renderer.
*/
module.exports = 'projection';

View file

@ -12,7 +12,6 @@ module.exports = {
POST_RENDER: require('./POST_RENDER_EVENT'),
PRE_RENDER: require('./PRE_RENDER_EVENT'),
PROJECTION: require('./PROJECTION_EVENT'),
RENDER: require('./RENDER_EVENT'),
RESIZE: require('./RESIZE_EVENT')