UNPKG

@petkoneo/phaser3-rex-plugins

Version:
16 lines (12 loc) 405 B
// import * as Phaser from 'phaser'; export default GrayScalePostFxPipeline; declare namespace GrayScalePostFxPipeline { interface IConfig { intensity?: number, } } declare class GrayScalePostFxPipeline extends Phaser.Renderer.WebGL.Pipelines.PostFXPipeline { resetFromJSON(o?: GrayScalePostFxPipeline.IConfig): this; setIntensity(value: number): this; intensity: number; }