调试对象未定义

Debug object is undefined

我看过一堆不同的代码示例,他们使用的是类似的东西:

this.game.debug

我大概有 20 种组合,例如

this.game.debug
this.scene.debug, 
this.scene.game.debug

等..但找不到这个调试,谁能指导我在哪里找到这个调试对象?

Phaser 3 带有物理调试器,可以通过配置启用。

var config = {
    type: Phaser.AUTO,
    width: 800,
    height: 600,
    parent: 'phaser-example',
    physics: {
        default: 'arcade',
        arcade: {
            debug: true,
            gravity: { y: 200 }
        }
    },
    scene: {
        preload: preload,
        create: create
    }
};

var game = new Phaser.Game(config);

Here 一个工作示例,它给你这样的东西: