如何在cocosjs中旋转节点?

时间:2018-03-25 16:00:47

标签: cocos2d-iphone cocos2d-js

我是Cocos Creator的新手。

尝试使用操作旋转节点。

openGates(){
    const gateLeft = this.node.getChildByName("gateLeft")
    const gateRight = this.node.getChildByName("gateLeft")

    const rotateLeft = cc.RotateBy.create(2, 40);
    const rotateRight = cc.RotateBy.create(2, -40);

    gateLeft.runAction(rotateLeft)
    gateRight.runAction(rotateRight)
},

我收到了这个错误

Uncaught TypeError: cc.RotateBy.create is not a function

任何想法?

1 个答案:

答案 0 :(得分:0)

请使用const rotateLeft = new cc.RotateBy(2, 40); 而不是使用create方法。 还有“;”在前两个陈述中遗漏了