1

我已经用动画制作了脊椎项目,并且已经在我的网络应用程序中安装了 pixi,但不能使用脊椎。

我有 .atlas 文件、.json 文件和 Sprite 图像。

这是我的代码:

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 插件,我不明白怎么做。

我是初学者,请帮助

4

2 回答 2

0

您是否pixi-spine.min.js像以前那样在 HTML 中添加了内容pixi.min.js

于 2016-09-28T11:58:06.947 回答
-1

您需要包含 Pixi-spine 插件,可在 https://raw.githubusercontent.com/pixijs/pixi-spine/master/bin/pixi-spine.js.

于 2017-03-05T16:18:19.610 回答