v0.4.0-beta
Pre-release
Pre-release
- Migrate to Pixi v6
- ed9ca1b: Re-export components of Cubism 4 framework
- b51b9cb: Emit "poseLoadError" and "physicsLoadError" when the loading fails
- bc2b58a: Fix ignored fading durations in motion JSON
- 0b42911: Fix incorrect expression blending (fixes #67)
Breaking changes
None. It appears to work well with v6.
There's something to note though - Pixi v6 supports single-entry import like this:
import { Application } from 'pixi.js';
But, I'd recommend you to not use it along with this plugin, instead, stick to per-package import as in v5:
import { Application } from '@pixi/app';
That's because the former may cause webpack to generate duplicate Pixi modules in your app's bundle, I'm not quite sure why this happens, it needs further investigation.