API Docs for: 2.2.1
Show:

File: pixi/filters/DotScreenFilter.hx

  1. package pixi.filters;
  2. @:native("PIXI.DotScreenFilter")
  3. extern class DotScreenFilter extends AbstractFilter {
  4. /**
  5. * This filter applies a dotscreen effect making display objects appear to be made out of black and white halftone dots like an old printer.
  6. *
  7. * @class DotScreenFilter
  8. * @extends AbstractFilter
  9. * @constructor
  10. */
  11. function new():Void;
  12. /**
  13. * The scale of the effect.
  14. */
  15. var scale:Float;
  16. /**
  17. * The radius of the effect.
  18. */
  19. var angle:Float;
  20. }