JSPM

  • Created
  • Published
  • Downloads 342492
  • Score
    100M100P100Q174420F
  • License MIT

Tickers are control the timings within PixiJS

Package Exports

    Readme

    @pixi/ticker

    Installation

    npm install @pixi/ticker

    Usage

    Create a Ticker object directly:

    import { Ticker } from '@pixi/ticker';
    
    const ticker = new Ticker();
    ticker.start();

    Use as an Application plugin:

    import '@pixi/ticker';
    import { Application } from '@pixi/app';
    
    const app = new Application();
    app.ticker.start();