Newer
Older
pixi.js / src / filters / FilterBlock.js
@Chad Engler Chad Engler on 26 Dec 2014 439 bytes refactored the filters
/**
 * A target and pass info object for filters.
 *
 * @class
 * @namespace PIXI
 */
function FilterBlock() {
    /**
     * The visible state of this FilterBlock.
     *
     * @member {boolean}
     */
    this.visible = true;

    /**
     * The renderable state of this FilterBlock.
     *
     * @member {boolean}
     */
    this.renderable = true;
};

FilterBlock.prototype.constructor = FilterBlock;
module.exports = FilterBlock;