Crafty.js中的动作

时间:2015-11-25 21:48:25

标签: javascript craftyjs

我试图在crafty.js中使用Motion组件,但我在最基本的事情上失败了。看起来像是' Motion'组件未添加。

就像这个非常简单的代码from example code in the docs

var ent = Crafty.e("2D, Motion");

var vel = ent.velocity(); //returns the velocity vector
vel.x;       // retrieve the velocity in the x direction
vel.x = 0;   // set the velocity in the x direction
vel.x += 4   // add to the velocity in the x direction

结果:TypeError: ent.velocity is not a function

我可以访问其他组件中的功能,例如MultivayText就好了。

0 个答案:

没有答案