@petkoneo/phaser3-rex-plugins
Version:
16 lines (12 loc) • 409 B
TypeScript
// import * as Phaser from 'phaser';
export default GlowFilterPostFxPipeline;
declare namespace GlowFilterPostFxPipeline {
interface IConfig {
intensity?: number,
}
}
declare class GlowFilterPostFxPipeline extends Phaser.Renderer.WebGL.Pipelines.PostFXPipeline {
resetFromJSON(o?: GlowFilterPostFxPipeline.IConfig): this;
setIntensity(value: number): this;
intensity: number;
}