Showing results for
on pixijs.com...Control the rendering order of objects independently of their scene graph hierarchy.
- GIF Support: Load and manipulate animated GIFs with playback controls.
- Three.js...
- GIF Support: Load and manipulate animated GIFs with playback controls.
- Three.js...
...v7 approach:
- Traverse the scene graph and make sure all the transforms are correct
- Traverse the scene graph a second time and do the...
- Traverse the scene graph and make sure all the transforms are correct
- Traverse the scene graph a second time and do the...
...Control the rendering order of objects independently of their scene graph hierarchy.
- GIF Support: Load and manipulate animated GIFs with playback controls.
- Three.js...
- GIF Support: Load and manipulate animated GIFs with playback controls.
- Three.js...
...Each Sprite contains a Texture to be drawn, along with all the transformation and display state required to function in the scene graph.
import...
import...
HTML Text
HTMLText
enables styled, formatted HTML strings to be rendered as part of the PixiJS scene graph. It uses an SVG
to...
HTMLText
enables styled, formatted HTML strings to be rendered as part of the PixiJS scene graph. It uses an SVG
to...
...What Makes PixiJS Special
At its core, PixiJS simplifies the complexities of rendering by providing:
- A robust scene graph to manage and render objects...
At its core, PixiJS simplifies the complexities of rendering by providing:
- A robust scene graph to manage and render objects...
...tilemaps, world views)
- Optimizing render performance without restructuring your scene graph
Usage
const app = new Application();
await app.init({
- Optimizing render performance without restructuring your scene graph
Usage
const app = new Application();
await app.init({
Container
The Container
class is the foundation of PixiJS's scene graph system. Containers act as groups of scene objects, allowing you to build...
The Container
class is the foundation of PixiJS's scene graph system. Containers act as groups of scene objects, allowing you to build...
...Masking
Another common use for Container objects is as hosts for masked content. "Masking" is a technique where parts of your scene graph are...
Another common use for Container objects is as hosts for masked content. "Masking" is a technique where parts of your scene graph are...
...We'll get into the details of how the scene graph works in a later guide, but for now all you need to know...