Skip to content

flo-bit/pixi-scaffold

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PIXI scaffold

This is a scaffold for PIXI.js projects.

includes:

  • automatic resizing of root container (fixed size) and canvas to window size
  • keydown and keyup events
  • setup and update functions

see flo-bit.github.io/pixi-scaffold/ for a simple example.

Usage

  • import the pixi-scaffold module
import PixiScaffold from "https://flo-bit.github.io/pixi-scaffold/pixi-scaffold.js";
  • make a game class with a setup and update function
class Game {
  setup(app) {
    // setup your game here
  }
  update(delta, total, app) {
    // update your game here
  }
}
  • call PixiScaffold.run and pass an instance of your game class
PixiScaffold.run(new Game());

About

basic pixi.js scaffold for quick testing/demoing

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published