Tickers are control the timings within PixiJS
npm install @pixi/ticker``bash`
npm install @pixi/ticker
Create a Ticker object directly:
`js
import { Ticker } from '@pixi/ticker';
const ticker = new Ticker();
ticker.start();
`
Use as an Application plugin:
`js
import '@pixi/ticker';
import { Application } from '@pixi/app';
const app = new Application();
app.ticker.start();
``