openfl
Version:
A fast, productive library for 2D cross-platform development.
36 lines (23 loc) • 789 B
TypeScript
declare namespace openfl.filters {
/**
* The BitmapFilter class is the base class for all image filter effects.
*
* The BevelFilter, BlurFilter, ColorMatrixFilter, ConvolutionFilter,
* DisplacementMapFilter, DropShadowFilter, GlowFilter, GradientBevelFilter,
* and GradientGlowFilter classes all extend the BitmapFilter class. You can
* apply these filter effects to any display object.
*
* You can neither directly instantiate nor extend BitmapFilter.
*/
export class BitmapFilter {
public constructor ();
/**
* Returns a BitmapFilter object that is an exact copy of the original
* BitmapFilter object.
*
* @return A BitmapFilter object.
*/
public clone ():BitmapFilter;
}
}
export default openfl.filters.BitmapFilter;