How to disable clicking inside minimap-camera?

I would like to create a platformer game and have a mini-map using phaser 3
the scene has some buttons the user can use a pointer to click on it.

but another camera screen also can click on this button

Here is my code and demo

Thank you very much

this.minimap = this.cameras.add(200, 10, 400, 100).setZoom(0.2).setName('mini');
        this.minimap.setBackgroundColor(0x002244);
        this.minimap.scrollX = 1600;
        this.minimap.scrollY = 300;

this.add.sprite(400, 300, 'eye').setInteractive();

    sprite.on('pointerdown', function (pointer) {

        this.setTint(0xff0000);

    });
this.minimap.inputEnabled = false;
2 Likes

Work Fine!!!
Thank you very much