LoginSignup
0
1

More than 5 years have passed since last update.

PIXI.jsでカーソルを変更する

Posted at

簡単にカーソル変更ができなかったのでメモ

PIXI.js 4.3.0で仕様が変更になっている

具体的には、先にappに変更に使いたいカーソルを設定しておかないとダメ
デフォルトではクリック用のpointerと、カーソルの2種類しか使えない。
それ以外を指定しても無効化される

app.renderer.plugins.interaction.cursorStyles["ew-resize"] = "ew-resize";
sprite.interactive = true;
sprite.cursor = "ew-resize";

参考

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1