Skip to content

jasonsturges/pixi-gauges

Repository files navigation

Pixi Gauges

Pixi.js gauge visualization components

pixi-gauges

CodeSandbox Demo: https://codesandbox.io/s/pixi-gauges-s2cw6

Getting Started

To install, execute:

npm i pixi-gauges

Then, import into a project as:

import { RadialGauge } from "pixi-gauges";

Usage

Radial Gauge is a Pixi.js Sprite, able to be added to the display list:

import { RadialGauge } from "pixi-gauges";

let gauge = new RadialGauge();
stage.addChild(gauge);

Additional components and documentation in progress.