API Docs for: 2.2.1
Show:

File: pixi/filters/FilterBlock.hx

  1. package pixi.filters;
  2. @:native("PIXI.FilterBlock")
  3. extern class FilterBlock {
  4. /**
  5. * A target and pass info object for filters.
  6. *
  7. * @class FilterBlock
  8. * @constructor
  9. */
  10. function new():Void;
  11. /**
  12. * The renderable state of this FilterBlock.
  13. */
  14. var renderable:Bool;
  15. /**
  16. * The visible state of this FilterBlock.
  17. */
  18. var visible:Bool;
  19. }