mirror of
https://github.com/photonstorm/phaser
synced 2025-01-12 21:28:53 +00:00
42 lines
709 B
JavaScript
42 lines
709 B
JavaScript
|
/**
|
||
|
* @author Richard Davey <rich@photonstorm.com>
|
||
|
* @copyright 2013-2023 Photon Storm Ltd.
|
||
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
||
|
*/
|
||
|
|
||
|
var FX_CONST = {
|
||
|
|
||
|
/**
|
||
|
* The Glow FX.
|
||
|
*
|
||
|
* @name Phaser.GameObjects.FX.GLOW
|
||
|
* @type {number}
|
||
|
* @const
|
||
|
* @since 3.60.0
|
||
|
*/
|
||
|
GLOW: 4,
|
||
|
|
||
|
/**
|
||
|
* The Shadow FX.
|
||
|
*
|
||
|
* @name Phaser.GameObjects.FX.SHADOW
|
||
|
* @type {number}
|
||
|
* @const
|
||
|
* @since 3.60.0
|
||
|
*/
|
||
|
SHADOW: 5,
|
||
|
|
||
|
/**
|
||
|
* The Pixelate FX.
|
||
|
*
|
||
|
* @name Phaser.GameObjects.FX.PIXELATE
|
||
|
* @type {number}
|
||
|
* @const
|
||
|
* @since 3.60.0
|
||
|
*/
|
||
|
PIXELATE: 6
|
||
|
|
||
|
};
|
||
|
|
||
|
module.exports = FX_CONST;
|