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">

21 lines (18 loc) 602 B
import { ExtensionType } from '../../../extensions/Extensions.mjs'; import { GpuParticleContainerAdaptor } from '../gpu/GpuParticleContainerAdaptor.mjs'; import { ParticleContainerPipe } from './ParticleContainerPipe.mjs'; "use strict"; class GpuParticleContainerPipe extends ParticleContainerPipe { constructor(renderer) { super(renderer, new GpuParticleContainerAdaptor()); } } /** @ignore */ GpuParticleContainerPipe.extension = { type: [ ExtensionType.WebGPUPipes ], name: "particle" }; export { GpuParticleContainerPipe }; //# sourceMappingURL=GpuParticleContainerPipe.mjs.map