@koreez/pixi-stats
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

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 @koreez/pixi-stats # for npm users
$ yarn add @koreez/pixi-stats # for yarn users

Using

import { PixiStatsPlugin } from '@koreez/pixi-stats';

PIXI.Application.registerPlugin(PixiStatsPlugin);

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();
        });
    }
}

Package Sidebar

Install

npm i @koreez/pixi-stats

Weekly Downloads

0

Version

1.0.0

License

MIT

Unpacked Size

34.9 kB

Total Files

41

Last publish

Collaborators

  • arturvardanyan
  • gnun
  • saqsun
  • avagyanah