如何在cocos js中旋转节点?

问题描述 投票:0回答:1

我是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

任何的想法?

cocos2d-iphone cocos2d-js
1个回答
0
投票

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

© www.soinside.com 2019 - 2024. All rights reserved.