Skip to content

Releases: Prozi/pixi-stats

v3.1.1

06 Nov 20:47
Compare
Choose a tag to compare

fixed the log at start of stats

Collected texture count: undefined

now it for pixi v6 v7 v8 shows correctly number of textures 0-X

v3.0.0

26 Sep 13:39
Compare
Choose a tag to compare
  • simplified api
  • improved typescript types
  • zero dependencies

breaking change

in v1

import { Application, Ticker, UPDATE_PRIORITY } from 'pixi.js';
import { addStats, Stats } from 'pixi-stats';

const app: Application = new Application({});
const stats: Stats = addStats(document, app);
const ticker: Ticker = Ticker.shared;

ticker.add(stats.update, stats, UPDATE_PRIORITY.UTILITY);

in v3

import { Application } from 'pixi.js';
import { Stats } from 'pixi-stats';

const app = new Application();
const stats = new Stats(app.renderer);

now does the same thing

v1.3.5

23 May 19:32
Compare
Choose a tag to compare

coffee

v1.3.4

23 May 16:29
Compare
Choose a tag to compare

updated deps

v1.3.3

20 May 14:18
Compare
Choose a tag to compare

publishing 2024 version compatible with current pixi 8.1.4

v1.2.1

11 Jun 13:29
Compare
Choose a tag to compare