Skip to content

Cursor

Introduction

Custom cursor, built-in feature of phaser.

  • Author: Richard Davey

Usage

References:

Set default cursor

scene.input.setDefaultCursor(CSSString);
// CSSString: 'url(assets/input/cursors/sword.cur), pointer'

Set cursor of a Game Object

Change cursor image when cursor is over that Game Object.

gameObject.setInteractive({
    cursor: CSSString
});
// CSSString: 'url(assets/input/cursors/sword.cur), pointer'

Set cursor image directly after gameObject.setInteractive().

gameObject.input.cursor = CSSString;
// CSSString: 'url(assets/input/cursors/sword.cur), pointer'

Use pointer (hand cursor).

gameObject.setInteractive({
    useHandCursor: true
});

Change current cursor

scene.input.manager.canvas.style.cursor = cursor;
  • cursor : CSSString