phaser3 创建多个按钮
//按钮一
let btn1 = this.add.image(this.game.config.width/2, this.game.config.height/2, 'btn1')
btn1.setInteractive()
btn1.on('pointerdown', function() {
//点击后的处理代码
})
//按钮二
let btn2 = this.add.image(this.game.config.width/2, this.game.config.height-200, 'btn2')
btn2.setInteractive()
btn2.on('pointerdown', function() {
//点击后的处理代码
})
phaser3跟phaser2的API还是有挺大差别的,在phaser3中,phaser2的创建按钮方式 this.add.button()在phaser3已经不适合使用,在phaser3可以用图片、精灵等代替。