pixi-scenes
TypeScript icon, indicating that this package has built-in type declarations

1.4.0 • Public • Published

pixi-scenes

forthebadgeforthebadge

dependencies

Split your pixi.js application into multiple scenes and manage them with ease.

Getting started

Installation

npm i pixi-scenes

Usage

Accessability

You can use this library through import/require or by loading it straight into your html. After loading it you can access the library under the global declaration of the pixi namespace. ex: PIXI.scenes.SceneManager

Setup

import {SceneManager} from 'pixi-scenes';
const scenes = new SceneManager(myPixiApplication);

Using scenes

scenes.add('splash', new SplashScene());
scenes.add('menu', new MenuScene());
scenes.add('gameover', new GameoverScene());
scenes.start('splash');

Example scene

import {Scene} from 'pixi-scenes';
 
export default class SplashScene extends Scene {
 
    private header: PIXI.Text;
 
    public init(): void {
        this.header = new PIXI.Text('My Game Studio');
        this.header.x = this.app.screen.width / 2;
        this.header.y = this.app.screen.height / 2;
        this.header.anchor.set(0.5);
        this.addChild(this.header);
    }
 
    public start(): void {
        this.header.angle = 0;
        setTimeout(() => {
            this.scenes.start('menu');
        }, 5000);
    }
 
    public update(delta: number): void {
        this.header.angle += delta / 1000 * 45;
    }
}

About

Splitting your codebase into multiple states/scenes in a common practice in the app/game world and can now easilly be done using this plugin for PIXI.js.

TODO

  • Event system on manager
  • Allow scene transitions
  • Subscenes structure
  • Resize integration
  • Improve tests
  • Improve readme
  • Add documentation pages
  • Add example project
  • Add exports/globals tests
  • Bundle definitions

Package Sidebar

Install

npm i pixi-scenes

Weekly Downloads

8

Version

1.4.0

License

ISC

Unpacked Size

46.9 kB

Total Files

26

Last publish

Collaborators

  • florisdh