Transformer imports @pixi/interaction, but it was deprecated (as i understand) for pixi 7. At least i cant find version for pixi 7. That line broke all mouse behaviour. Looks like interactive = false, but it's not true.
I did monkey-patch for 3.0.1, just remove require('@pixi/interaction') from assembled js file. And all will works fine.
codepen works well on 3.0.1 and 7.2.4 pixi, because that code (header from transformer.js) in reality doesn't do require('@pixi/interaction') in browser.
Transformer imports @pixi/interaction, but it was deprecated (as i understand) for pixi 7. At least i cant find version for pixi 7. That line broke all mouse behaviour. Looks like
interactive = false
, but it's not true.I did monkey-patch for 3.0.1, just remove
require('@pixi/interaction')
from assembled js file. And all will works fine.codepen works well on 3.0.1 and 7.2.4 pixi, because that code (header from transformer.js) in reality doesn't do
require('@pixi/interaction')
in browser.As fix: Is it okay to just drop
@pixi/interaction
import?cc https://github.com/ShukantPal/pixi-essentials/issues/84