pixi.js
    Preparing search index...

    Class DivideBlend

    The Divide blend mode divides the RGB channel values of the bottom layer by those of the top layer. The darker the top layer, the brighter the bottom layer will appear. Blending any color with black yields white, and blending with white has no effect

    Available as container.blendMode = 'divide' after importing pixi.js/advanced-blend-modes.

    import 'pixi.js/advanced-blend-modes';
    import { Sprite } from 'pixi.js';

    const sprite = Sprite.from('something.png');
    sprite.blendMode = 'divide'
    Index

    Constructors

    Constructors