ConsoleDevice provides a clean and generic tool for printing debug messages. The key benefit relative to using console.log directly is ConsoleDevice disables all output when cfg.hitBoxes is false, which is nice when releasing a game.
console.log
cfg.hitBoxes
Create an output console based on the game config object
Display a message to the console if we're not in debug mode
ConsoleDevice provides a clean and generic tool for printing debug messages. The key benefit relative to using
console.log
directly is ConsoleDevice disables all output whencfg.hitBoxes
is false, which is nice when releasing a game.