I made this mute sound effects button:
var muteEffectsBtn = game.add.image(650, 25, 'BUTTONS_ATLAS', 'soundOff.png');
muteEffectsBtn.inputEnabled = true;
muteEffectsBtn.visible = true;
muteEffectsBtn.events.onInputDown.add(muteOnOffSound, sifc);
muteOnOffSound = function () {
// mute/unmute sound here
}
But the hand cursor doesn’t appear as with Phaser.Button.
How do I make it show the hand cursor when over Phaser.Image?