/
githubmirror
/
pixijs
Обзор
Документация
Войти
/
githubmirror
/
pixijs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
src/scene/particle-container/init.ts
11 строк
676 B
Krzysztof Sternik
feat: Canvas renderer (#11815)
03 фев 2026, 18:43
Не верифицирован
03 фев 2026, 18:43
c52309f
Код
Авторство
О чём код?
import { extensions } from '../../extensions/Extensions'; import { CanvasParticleContainerPipe } from './canvas/CanvasParticleContainerPipe'; import { GlParticleContainerPipe } from './gl/GlParticleContainerPipe'; import { GpuParticleContainerPipe } from './gpu/GpuParticleContainerPipe'; // NOTE: this is the first occurrence of needing both gl and gpu pipes in the same file // This could cause some issues with tree shaking in the future. // Right now these two files do not import anything specific for a renderer, so is not an issue for now. extensions.add(GlParticleContainerPipe); extensions.add(GpuParticleContainerPipe); extensions.add(CanvasParticleContainerPipe);