mirror of
https://github.com/photonstorm/phaser
synced 2024-12-25 04:23:30 +00:00
22 lines
527 B
JavaScript
22 lines
527 B
JavaScript
/**
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
* @copyright 2013-2023 Photon Storm Ltd.
|
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
|
*/
|
|
|
|
/**
|
|
* @namespace Phaser.GameObjects.FX
|
|
*/
|
|
|
|
module.exports = {
|
|
|
|
BaseFX: require('./BaseFX'),
|
|
Glow: require('./Glow'),
|
|
Pixelate: require('./Pixelate'),
|
|
Shadow: require('./Shadow'),
|
|
Shine: require('./Shine'),
|
|
Blur: require('./Blur'),
|
|
LinearGradient: require('./LinearGradient'),
|
|
Vignette: require('./Vignette')
|
|
|
|
};
|