create() {
        const circle = this.add
            .circle(this.scale.width >> 1, this.scale.height >> 1, 100, 0xd3c799)
            .setInteractive()
            .setStrokeStyle(0, 0);

        const text = this.add
            .text(this.scale.width >> 1, this.scale.height - 10, "un text")
            .setFontSize(30)
            .setOrigin(0.5, 1);

        circle.on("pointerdown", () => {
            text.text = "click";
        });
    }