我是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
任何想法?
答案 0 :(得分:0)
请使用const rotateLeft = new cc.RotateBy(2, 40);
而不是使用create方法。
还有“;”在前两个陈述中遗漏了