You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
#84
The text was updated successfully, but these errors were encountered: