我试图在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
我可以访问其他组件中的功能,例如Multivay
,Text
就好了。