Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
math-extras.js | 2025-08-05 | 6.5 kB | |
advanced-blend-modes.js | 2025-08-05 | 37.8 kB | |
advanced-blend-modes.js.map | 2025-08-05 | 69.2 kB | |
advanced-blend-modes.min.js | 2025-08-05 | 31.7 kB | |
advanced-blend-modes.min.js.map | 2025-08-05 | 63.8 kB | |
gif.js | 2025-08-05 | 43.2 kB | |
gif.js.map | 2025-08-05 | 91.0 kB | |
gif.min.js | 2025-08-05 | 14.2 kB | |
gif.min.js.map | 2025-08-05 | 71.3 kB | |
math-extras.js.map | 2025-08-05 | 20.3 kB | |
math-extras.min.js | 2025-08-05 | 2.7 kB | |
math-extras.min.js.map | 2025-08-05 | 15.0 kB | |
pixi.js | 2025-08-05 | 2.0 MB | |
pixi.js.d.ts | 2025-08-05 | 1.5 MB | |
pixi.js.map | 2025-08-05 | 4.6 MB | |
pixi.min.js | 2025-08-05 | 691.1 kB | |
pixi.min.js.map | 2025-08-05 | 3.9 MB | |
pixi.min.mjs | 2025-08-05 | 691.7 kB | |
pixi.min.mjs.map | 2025-08-05 | 3.9 MB | |
pixi.mjs | 2025-08-05 | 1.8 MB | |
pixi.mjs.map | 2025-08-05 | 4.6 MB | |
unsafe-eval.js | 2025-08-05 | 36.0 kB | |
unsafe-eval.js.map | 2025-08-05 | 100.5 kB | |
unsafe-eval.min.js | 2025-08-05 | 15.6 kB | |
unsafe-eval.min.js.map | 2025-08-05 | 79.6 kB | |
webworker.js | 2025-08-05 | 2.1 MB | |
webworker.js.map | 2025-08-05 | 4.5 MB | |
webworker.min.js | 2025-08-05 | 716.0 kB | |
webworker.min.js.map | 2025-08-05 | 3.9 MB | |
webworker.min.mjs | 2025-08-05 | 716.6 kB | |
webworker.min.mjs.map | 2025-08-05 | 3.9 MB | |
webworker.mjs | 2025-08-05 | 1.9 MB | |
webworker.mjs.map | 2025-08-05 | 4.5 MB | |
README.md | 2025-08-05 | 5.9 kB | |
v8.12.0 source code.tar.gz | 2025-08-05 | 7.7 MB | |
v8.12.0 source code.zip | 2025-08-05 | 9.8 MB | |
Totals: 36 Items | 64.1 MB | 3 |
💾 Download
Installation:
:::bash
npm install pixi.js@8.12.0
Development Build: - https://cdn.jsdelivr.net/npm/pixi.js@8.12.0/dist/pixi.js - https://cdn.jsdelivr.net/npm/pixi.js@8.12.0/dist/pixi.mjs
Production Build: - https://cdn.jsdelivr.net/npm/pixi.js@8.12.0/dist/pixi.min.js - https://cdn.jsdelivr.net/npm/pixi.js@8.12.0/dist/pixi.min.mjs
Documentation: - https://pixijs.download/v8.12.0/docs/index.html
Changed
https://github.com/pixijs/pixi.js/compare/v8.11.0...v8.12.0
🚨 Behavior Change 🚨
lineHeight
is now correctly calculated forBitmapText
. This change may result in some text elements changing position slightly. See [#11531].
🎁 Added
- feat: support scaleMode for cacheAsTexture options by @mayakwd in https://github.com/pixijs/pixijs/pull/11578
- feat: Adds max anisotropy passthrough property by @Zyie in https://github.com/pixijs/pixijs/pull/11588
- feat: use DomAdapter for new Image by @Zyie in https://github.com/pixijs/pixijs/pull/11565
- feat: allow sharing device and adaptor with other engine by @littleboarx in https://github.com/pixijs/pixijs/pull/11435
- feat: Refactors asset parser configuration by @Zyie in https://github.com/pixijs/pixijs/pull/11557
- feat: add WorkerManager.reset by @Zyie in https://github.com/pixijs/pixijs/pull/11562
🐛 Fixed
- fix: Add missing createCanvas calls by @bigtimebuddy in https://github.com/pixijs/pixijs/pull/11553
- fix: Boost classes in the docs search results by @bigtimebuddy in https://github.com/pixijs/pixijs/pull/11555
- fix: video texture loading with no extension by @Zyie in https://github.com/pixijs/pixijs/pull/11546
- fix: fillGradientStop logic in TextStyle by @Zyie in https://github.com/pixijs/pixijs/pull/11549
- fix: resource leak in Graphics and fills by @Zyie in https://github.com/pixijs/pixijs/pull/11543
- fix: AnimatedSprite destroy method by @Zyie in https://github.com/pixijs/pixijs/pull/11544
- fix: text fill and stroke with padding by @Zyie in https://github.com/pixijs/pixijs/pull/11524
- fix: HTMLText incorrectly handling font weights by @Zyie in https://github.com/pixijs/pixijs/pull/11520
- fix: HTML text rendering with broken tags by @Zyie in https://github.com/pixijs/pixijs/pull/11521
- fix: progress tracking for asset bundles by @Zyie in https://github.com/pixijs/pixijs/pull/11558
- fix: earcut triangulation issues by @Zyie in https://github.com/pixijs/pixijs/pull/11559
- fix: allow for culler plugin to update transforms by @Zyie in https://github.com/pixijs/pixijs/pull/11548
- fix: text fill documentation by @Zyie in https://github.com/pixijs/pixijs/pull/11561
- fix: DOMContainer scaling if canvas width/height is percentage by @Zyie in https://github.com/pixijs/pixijs/pull/11539
- fix: MeshPipe.addRenderable does not set the current geometry parameters by @midiusRed in https://github.com/pixijs/pixijs/pull/11534
- fix:
Text
andBitmapText
that doesn't render it's new value on some condition by @privatestefans in https://github.com/pixijs/pixijs/pull/11547 - fix: Container.parent type not being nullable and possibly undefined by @ch1ll0ut1 in https://github.com/pixijs/pixijs/pull/11567
- fix: masking turns off when the mask texture is out of the viewport bounds by @mayakwd in https://github.com/pixijs/pixijs/pull/11569
- fix: BitmapFont's texture frame handling for rotated spritesheet regions by @privatestefans in https://github.com/pixijs/pixijs/pull/11525
- fix: incorrect trim mask rendering by @littleboarx in https://github.com/pixijs/pixijs/pull/11529
- fix: origin calculation to ensure it scales from origin point by @Zyie in https://github.com/pixijs/pixijs/pull/11538
- fix: loading unsupported video formats by @Zyie in https://github.com/pixijs/pixijs/pull/11541
- fix: trimmed text rendereing with non default resolution by @mayakwd in https://github.com/pixijs/pixijs/pull/11570
- fix: Align
GetGlobalMixin
implementation with documentation by @albinkong in https://github.com/pixijs/pixijs/pull/11574 - fix: accessibility scaling issues by @Zyie in https://github.com/pixijs/pixijs/pull/11579
- fix: Remove deprecation version constants by @albinkong in https://github.com/pixijs/pixijs/pull/11582
- fix: Installed bitmap text showing wrong fill by @Zyie in https://github.com/pixijs/pixijs/pull/11523
- fix:
lineHeight
calculation for multi-line layout forBitmapText
by @privatestefans in https://github.com/pixijs/pixijs/pull/11531 - fix: minor typos in comments and docs, add missing @params and @returns by @afarber in https://github.com/pixijs/pixijs/pull/11590
🧹 Chores
- chore: add code owners and support newer node versions by @Zyie in https://github.com/pixijs/pixijs/pull/11572
- chore: Increases timeout for HTMLText test by @Zyie in https://github.com/pixijs/pixijs/pull/11580
- chore: adds needs reproduction automation by @Zyie in https://github.com/pixijs/pixijs/pull/11552
- chore: Enables StackBlitz integration by @Zyie in https://github.com/pixijs/pixijs/pull/11571
- chore: update issue templates by @Zyie in https://github.com/pixijs/pixijs/pull/11563
- chore: Fix missing constructors by @bigtimebuddy in https://github.com/pixijs/pixijs/pull/11583
- chore: fix Assets docs typos by @bigtimebuddy in https://github.com/pixijs/pixijs/pull/11586
New Contributors
- @privatestefans made their first contribution in https://github.com/pixijs/pixijs/pull/11547
- @ch1ll0ut1 made their first contribution in https://github.com/pixijs/pixijs/pull/11567
- @mayakwd made their first contribution in https://github.com/pixijs/pixijs/pull/11569
- @littleboarx made their first contribution in https://github.com/pixijs/pixijs/pull/11529
- @albinkong made their first contribution in https://github.com/pixijs/pixijs/pull/11574
- @afarber made their first contribution in https://github.com/pixijs/pixijs/pull/11590