Pixi.jsでcanvas上でスクロールできるようにする設定
Pixi.jsのcanvas上でスクロールしてもスクロールできないのは困ることが多いのでメモ
Pixi.jsでスクロールできないのを解除
const app = new PIXI.Application({
view: document.querySelector('canvas'),
});
app.renderer.plugins.interaction.autoPreventDefault = false;
app.renderer.view.style.touchAction = 'auto';
デフォルトでスクロールするようにして欲しい…
参考サイト
autoPreventDefault not working. still can not touch scroll. · Issue #4824 · pixijs/pixi.js