mirror of
https://github.com/photonstorm/phaser
synced 2024-11-22 20:53:39 +00:00
Removed event as no longer required
This commit is contained in:
parent
27da1dfa4b
commit
dbae58368d
2 changed files with 0 additions and 20 deletions
|
@ -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';
|
|
|
@ -12,7 +12,6 @@ module.exports = {
|
||||||
|
|
||||||
POST_RENDER: require('./POST_RENDER_EVENT'),
|
POST_RENDER: require('./POST_RENDER_EVENT'),
|
||||||
PRE_RENDER: require('./PRE_RENDER_EVENT'),
|
PRE_RENDER: require('./PRE_RENDER_EVENT'),
|
||||||
PROJECTION: require('./PROJECTION_EVENT'),
|
|
||||||
RENDER: require('./RENDER_EVENT'),
|
RENDER: require('./RENDER_EVENT'),
|
||||||
RESIZE: require('./RESIZE_EVENT')
|
RESIZE: require('./RESIZE_EVENT')
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue