PixiJS has five text-rendering classes that cover different trade-offs between styling, performance, and animation. renders to a canvas for full CSS-style fidelity. reads from a pre-generated atlas for cheap updates. renders an HTML fragment via SVG for rich markup. and wrap the first two classes and expose per-character, per-word, and per-line containers for animation. Assumes familiarity with . All text classes are leaf nodes; they cannot have children. Wrap multiple text instances in a to group them. Quick Start All text classes use options-object constructors; positional from v7 is not su…