假设我有一个类似以下的代码。

Crafty.c("SomeType",{//do something... });
var obj=Crafty.e("SomeType");

谁能告诉我是否存在用于检查对象类型的函数?

例如:
Crafty.isComponent(obj,"SomeType")==true

要么
Crafty.getComponents(obj)=="SomeType"

最佳答案

Ah从Crafty.js文件中发现,有一个.has()函数来检查组件。 :)

    /**@
    * #.has
    * @comp Crafty Core
    * @sign public Boolean .has(String component)
    * Returns `true` or `false` depending on if the
    * entity has the given component.
    *
    * For better performance, simply use the `.__c` object
    * which will be `true` if the entity has the component or
    * will not exist (or be `false`).
    */

09-17 22:15