您好,我的菜单中有一个按钮可以在 android 上使用,但在 ios 上无法点击。有人可以指出我缺少什么或解决方案是什么吗?按钮位于 <canvas>
元素
Pokeball.MainMenu = function(game) {};
Pokeball.MainMenu.prototype = {
create: function() {
this.add.sprite(0, 0, 'screen-mainmenu');
this.gameTitle = this.add.sprite(Pokeball._WIDTH*0.5, 40, 'title');
this.gameTitle.anchor.set(0.5,0);
this.startButton = this.add.button(Pokeball._WIDTH*0.5, 200, 'button-start', this.startGame, this, 2, 0, 1);
this.startButton.anchor.set(0.5,0);
this.startButton.input.useHandCursor = true;
},
startGame: function() {
this.game.state.start('Game');
}
};