我是phaser-3的新手,我遇到了非常基本的问题。
我的问题之一是在设置event时在处理函数中获取目标游戏对象(leftArrow)。
我尝试了这段代码,但无法获取目标对象参数:
leftArrow.customParams = {direction: 1};
leftArrow.setInteractive({pixelPerfect: true});
leftArrow.on('pointerdown', swipe, this);
function swipe(target){
console.log(target.customParams.direction);
}