我已经用动画制作了脊柱项目,并且已经在我的Web应用程序中安装了Pixi,但不能使用脊柱。
我有.atlas文件,.json文件和精灵图像。
这是我的代码:
var renderer = PIXI.autoDetectRenderer(800, 600);
jQuery("body").prepend(renderer.view);
// create the root of the scene graph
var stage = new PIXI.Container();
// load spine data
PIXI.loader
.add('boy', 'assets/data/boy.json')
.load(onAssetsLoaded);
var boy = null;
function onAssetsLoaded(loader,res)
{
// instantiate the spine animation
boy = new PIXI.spine.Spine(res.boy.spineData);
}
这导致控制台错误:无法读取未定义的
的属性'脊柱'据我了解,我必须添加Pixi-Spine插件,我不明白如何。
我是初学者,请帮助
您是否有pixi-spine.min.js
在HTML中添加了pixi.min.js
?
您需要包括Pixi-Spine插件,可在 https://raw.githubusercontent.com/pixijs/pixi-spine/master/bin/pixi-spine.js
。