UNPKG

phaser

Version:

A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers from the team at Phaser Studio Inc.

21 lines (19 loc) 660 B
/** * @author Richard Davey <rich@phaser.io> * @copyright 2013-2025 Phaser Studio Inc. * @license {@link https://opensource.org/licenses/MIT|MIT License} */ /** * The WebGLPipeline Resize Event. * * This event is dispatched by a WebGLPipeline when it is resized, usually as a result * of the Renderer resizing. * * @event Phaser.Renderer.WebGL.Pipelines.Events#RESIZE * @since 3.50.0 * * @param {number} width - The new width of the pipeline. * @param {number} height - The new height of the pipeline. * @param {Phaser.Renderer.WebGL.WebGLPipeline} pipeline - The pipeline that was resized. */ module.exports = 'pipelineresize';