UNPKG

pixi.js

Version:

<p align="center"> <a href="https://pixijs.com" target="_blank" rel="noopener noreferrer"> <img height="150" src="https://files.pixijs.download/branding/pixijs-logo-transparent-dark.svg?v=1" alt="PixiJS logo"> </a> </p> <br/> <p align="center">

49 lines (47 loc) 1.63 kB
import { extensions } from '../extensions/Extensions.mjs'; import { ColorBlend } from './ColorBlend.mjs'; import { ColorBurnBlend } from './ColorBurnBlend.mjs'; import { ColorDodgeBlend } from './ColorDodgeBlend.mjs'; import { DarkenBlend } from './DarkenBlend.mjs'; import { DifferenceBlend } from './DifferenceBlend.mjs'; import { DivideBlend } from './DivideBlend.mjs'; import { ExclusionBlend } from './ExclusionBlend.mjs'; import { HardLightBlend } from './HardLightBlend.mjs'; import { HardMixBlend } from './HardMixBlend.mjs'; import { LightenBlend } from './LightenBlend.mjs'; import { LinearBurnBlend } from './LinearBurnBlend.mjs'; import { LinearDodgeBlend } from './LinearDodgeBlend.mjs'; import { LinearLightBlend } from './LinearLightBlend.mjs'; import { LuminosityBlend } from './LuminosityBlend.mjs'; import { NegationBlend } from './NegationBlend.mjs'; import { OverlayBlend } from './OverlayBlend.mjs'; import { PinLightBlend } from './PinLightBlend.mjs'; import { SaturationBlend } from './SaturationBlend.mjs'; import { SoftLightBlend } from './SoftLightBlend.mjs'; import { SubtractBlend } from './SubtractBlend.mjs'; import { VividLightBlend } from './VividLightBlend.mjs'; "use strict"; extensions.add( ColorBlend, ColorBurnBlend, ColorDodgeBlend, DarkenBlend, DifferenceBlend, DivideBlend, ExclusionBlend, HardLightBlend, HardMixBlend, LightenBlend, LinearBurnBlend, LinearLightBlend, LinearDodgeBlend, LuminosityBlend, NegationBlend, OverlayBlend, PinLightBlend, SaturationBlend, SoftLightBlend, SubtractBlend, VividLightBlend ); //# sourceMappingURL=init.mjs.map