当我使用圆圈时,只有其中心会接收到该事件,如果我单击它不起作用的任何地方,则只有在单击圆圈中心时才会收到该事件。 如何使整个圈子可点击?
const circle = this.add.circle(300, 300, 25, 0xff0000, 1);
circle.setInteractive();
circle.on('pointerdown', function() {
console.log("click");
});
更新:使用Phaser 3
答案 0 :(得分:1)
var config = {
width: 800,
height: 600,
type: Phaser.AUTO,
parent: 'phaser-example',
scene: {
create: create
}
};
var game = new Phaser.Game(config);
function create ()
{
var graphics = this.add.graphics({ fillStyle: { color: 0xff0000 } });
var circle = new Phaser.Geom.Circle(30, 30, 25);
graphics.fillCircleShape(circle);
this.input.on('pointerdown', function (pointer) {
console.log("click")
});
}
<script src="//cdn.jsdelivr.net/npm/phaser@3.17.0/dist/phaser.min.js"></script>