0.1.2 • Published 5 years ago

phaser3-debug v0.1.2

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

Phaser 3 Debug

A simple debug scene that makes it easy to 1) pause at any time and 2) see current stats on any or all sprites and bodies.

NOTE: There is currently no build version. If you want to use this in your own project, either copy the DebugScene.js file, or wait until I create a nice build you can import.

Run the Demo

1) Clone this repository. 2) npm install 3) npm start

While it is running, press 'P' to pause/unpause.

Configure the Debug Scene

To enable debug for an entity, set debug = true on the entity. Example: sprite.debug = true;

When creating the debug scene, you can pass in a config object. The table below shows the properties you can configure.

PropertyDescriptionDefault
propsAn array of the propertys to display.['x','y','angle']
colorThe color of the debug text.'#da4d4d'
pauseKeyThe key to map to pause/unpause.'P'