guansss / pixi-live2d-display

A PixiJS plugin to display Live2D models of any kind.
https://guansss.github.io/pixi-live2d-display/
MIT License
810 stars 123 forks source link

Live2DModel.from 中 onLoad 不触发 #156

Open Flysky12138 opened 1 week ago

Flysky12138 commented 1 week ago
model.current = await window.PIXI.live2d.Live2DModel.from(source, {
  onLoad() {
    console.log(1)
  },
  onError() {
    console.log(2)
  }
})

source 为远程地址,模型加载成功后 onLoad & onError 不会执行