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

14 lines (13 loc) 754 B
import { type InstructionSet } from '../../../rendering/renderers/shared/instructions/InstructionSet'; import { type Renderer, type RenderPipes } from '../../../rendering/renderers/types'; import { type Container } from '../Container'; /** * Deprecated, please use container.collectRenderables instead. * @param container - The container to collect renderables from. * @param instructionSet - The instruction set to add the renderables to. * @param rendererOrPipes - The renderer to collect the renderables from. * @deprecated since version 8.7.0 * @see container.collectRenderables * @internal */ export declare function collectAllRenderables(container: Container, instructionSet: InstructionSet, rendererOrPipes: Renderer | RenderPipes): void;