使用PIXI.loader和vue.js加载png文件时出现问题

时间:2019-04-29 08:37:26

标签: vue.js pixi.js

我正在使用PIXI js为应用程序创建预加载器页面。应用是Vue。我将loader与链式结合使用:

    loader
          .add("a", "logo.png")
          .add("b", "bbb.png")
          .load(handleLoadComplete);

function handleLoadComplete() {
    let texture = loader.resources.a.texture;
    img = new PIXI.Sprite(texture);
    img.anchor.x = 0.5;
    img.anchor.y = 0.5;
    app.stage.addChild(img);

    app.ticker.add(animate);
};

function animate() {
    img.x = app.renderer.screen.width / 2;
    img.y = app.renderer.screen.height / 2;
    img.rotation += 0.1;
}

加载程序中的错误文本:“错误:无法使用IMG加载元素     在Resource.abort(webpack-internal:///./node_modules/resource-loader/lib/Resource.js:388:22)     在Resource._onError(webpack-internal:///../node_modules/resource-loader/lib/Resource.js:753:14)上

然后在loader.resourses.b.error.message中获得“无法使用IMG加载元素”。我在做什么错了?

0 个答案:

没有答案