3.1.0 • Published 3 years ago

@armathai/pixi-stats v3.1.0

Weekly downloads
42
License
MIT
Repository
github
Last release
3 years ago

npm version styled with prettier

pixi-stats

Pixi Performance Monitor (Textures, Draw Calls) for WebGL applications. Uses stats.js under the hood.

Install

$ npm install @armathai/pixi-stats # for npm users
$ yarn add @armathai/pixi-stats # for yarn users

Using

import from '@armathai/pixi-stats';

class Game extends PIXI.Application {
    public constructor() {
        super({ resizeTo: window, backgroundColor: 0xcdcdcd });
        document.body.appendChild(this.view);
        document.body.appendChild(this.stats.dom);
        this.ticker.add(() => {
            this.stats.update();
        });
    }
}