7.1.4 • Published 1 year ago

pixijs v7.1.4

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

PixiJS — The HTML5 Creation Engine

Note This is an alternative package to pixi.js, @pixi/core, etc that contains all of the PixiJS packages. This is much easier to consume since it contains all of the necessary packages, including optional packages in a single module.

pixi.js logo

The aim of this project is to provide a fast lightweight 2D library that works across all devices. The PixiJS renderer allows everyone to enjoy the power of hardware acceleration without prior knowledge of WebGL. Also, it's fast. Really fast.

We are now a part of the Open Collective and with your support you can help us make PixiJS even better. To make a donation, simply click the button below and we'll love you forever!

Package Mappings

The names of packages have changed. These mappings are available as JSON from pixijs/aliases.

Official PackageNew Package
pixi.jspixijs/browser or pixijs
pixi.js-legacypixijs/browser/legacy
@pixi/accessibilitypixijs/accessibility
@pixi/apppixijs/app
@pixi/assetspixijs/assets
@pixi/basispixijs/basis
@pixi/canvas-displaypixijs/display/canvas
@pixi/canvas-extractpixijs/extract/canvas
@pixi/canvas-graphicspixijs/graphics/canvas
@pixi/canvas-meshpixijs/mesh/canvas
@pixi/canvas-particle-containerpixijs/particle-container/canvas
@pixi/canvas-preparepixijs/prepare/canvas
@pixi/canvas-rendererpixijs/renderer/canvas
@pixi/canvas-spritepixijs/sprite/canvas
@pixi/canvas-sprite-tilingpixijs/sprite-tiling/canvas
@pixi/canvas-textpixijs/text/canvas
@pixi/compressed-texturespixijs/compressed-textures
@pixi/constantspixijs/constants
@pixi/corepixijs/core
@pixi/displaypixijs/display
@pixi/eventspixijs/events
@pixi/extensionspixijs/extensions
@pixi/extractpixijs/extract
@pixi/filter-alphapixijs/filter/alpha
@pixi/filter-blurpixijs/filter/blur
@pixi/filter-color-matrixpixijs/filter/color-matrix
@pixi/filter-displacementpixijs/filter/displacement
@pixi/filter-fxaapixijs/filter/fxaa
@pixi/filter-noisepixijs/filter/noise
@pixi/graphicspixijs/graphics
@pixi/graphics-extraspixijs/graphics/extras
@pixi/mathpixijs/math
@pixi/math-extraspixijs/math/extras
@pixi/meshpixijs/mesh
@pixi/mesh-extraspixijs/mesh/extras
@pixi/mixin-cache-as-bitmappixijs/display/cache-as-bitmap
@pixi/mixin-get-child-by-namepixijs/display/get-child-by-name
@pixi/mixin-get-global-positionpixijs/display/get-global-position
@pixi/nodepixijs/node
@pixi/particle-containerpixijs/particle-container
@pixi/preparepixijs/prepare
@pixi/runnerpixijs/runner
@pixi/settingspixijs/settings
@pixi/spritepixijs/sprite
@pixi/sprite-animatedpixijs/sprite-animated
@pixi/sprite-tilingpixijs/sprite-tiling
@pixi/spritesheetpixijs/spritesheet
@pixi/textpixijs/text
@pixi/text-bitmappixijs/text-bitmap
@pixi/tickerpixijs/ticker
@pixi/unsafe-evalpixijs/unsafe-eval
@pixi/utilspixijs/utils
@pixi/webworkerpixijs/webworker

Supported

This package is only supported in tools that support the exports field for subpath entry points. For example:

  • Webpack 5+
  • Parcel 2+
  • Node.js 16+
  • TypeScript 4.7+

If using TypeScript, make sure to use compilerOptions.moduleResolution to nodenext or node16.

Install

npm install pixijs
import * as PIXI from 'pixijs'

Basic Usage Example

import { Application, Assets, Sprite } from 'pixijs';

// The application will create a renderer using WebGL, if possible,
// with a fallback to a canvas render. It will also setup the ticker
// and the root stage PIXI.Container
const app = new Application();

// The application will create a canvas element for you that you
// can then insert into the DOM
document.body.appendChild(app.view);

// load the texture we need
const texture = await Assets.load('bunny.png');

// This creates a texture from a 'bunny.png' image
const bunny = new Sprite(texture);

// Setup the position of the bunny
bunny.x = app.renderer.width / 2;
bunny.y = app.renderer.height / 2;

// Rotate around the center
bunny.anchor.x = 0.5;
bunny.anchor.y = 0.5;

// Add the bunny to the scene we are building
app.stage.addChild(bunny);

// Listen for frame updates
app.ticker.add(() => {
    // each frame we spin the bunny around a bit
    bunny.rotation += 0.01;
});

License

This content is released under the (http://opensource.org/licenses/MIT) MIT License.