Liar0320 / pixi-inspector

Devtools for PixiJS

Home Page:https://chrome.google.com/webstore/detail/pixi-inspector/aamddddknhcagpehecnhphigffljadon

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PixiJS Devtools

Browser extension to debug games and apps written with PixiJS.

Features

  • Show the scene graph
  • View and edit properties
  • Double-click in the outliner to console.log a node
  • Outline the active node in the viewport.
  • The active node is available in the developer console as $pixi
  • Right-click (or alt click) in the viewport to activate a node

Installation

Install PixiJS Devtools from:

Usage

PixiJS

In your code find where the PIXI.Application instance is created, it looks like this:

import { Application } from "pixi.js";

const app = new Application(...)

Expose that app to the PixiJS Devtools by adding the line:

globalThis.__PIXI_APP__ = app;

or depending on your TypeScript and ESLint configuration:

(globalThis as any).__PIXI_APP__ = app; // eslint-disable-line

Phaser

In your code find where the Phaser.Game instance is created, it looks like this:

import Phaser from "phaser";

const game = Phaser.Game(...)

Expose that game to the PixiJS Devtools by adding the line:

globalThis.__PHASER_GAME__ = game;

Custom setup?

If you don't use a PIXI.Application or Phaser.Game? you can specify the root-node manually with:

globalThis.__PIXI_STAGE__ = yourContainer;

And to enable highlighting and selecting the nodes in the viewport add:

globalThis.__PIXI_RENDERER__ = yourRenderer;

About

Devtools for PixiJS

https://chrome.google.com/webstore/detail/pixi-inspector/aamddddknhcagpehecnhphigffljadon

License:MIT License


Languages

Language:TypeScript 55.6%Language:Svelte 41.7%Language:JavaScript 1.6%Language:HTML 1.0%Language:Shell 0.1%