Skip to main content

Dev Tool

This is a dev tool to help you debug your game written in excalibur.

This tool allows you to see information about the engine, currentScene, camera, clock, entities, and more!

Using the Dev Tool

  1. Install using npm
> npm install @excaliburjs/dev-tools
> npm install @excaliburjs/dev-tools
  1. Inside your game code pass your game to the devtool
typescript
const game = new ex.Engine({...});
const devtool = new DevTool(game);
typescript
const game = new ex.Engine({...});
const devtool = new DevTool(game);
  1. Voila!