我是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
任何的想法?
请使用const rotateLeft = new cc.RotateBy(2, 40);
而不是使用create方法。还有“;”你的前两个陈述中缺少