phaser
Version:
A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers from the team at Phaser Studio Inc.
18 lines (16 loc) • 607 B
JavaScript
/**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* A Phaser Input Event Data object.
*
* This object is passed to the registered event listeners and allows you to stop any further propagation.
*
* @typedef {object} Phaser.Types.Input.EventData
* @since 3.15.1
*
* @property {boolean} [cancelled=false] - The cancelled state of this Event.
* @property {function} stopPropagation - Call this method to stop this event from passing any further down the event chain.
*/