I have just installed Cocos Creator 3.0.0
I want to run an animation sequence.
this.node.runAction(
cc.sequence(
cc.spawn(
cc.moveTo(1, 100, 100),
cc.rotateTo(1, 360),
),
cc.scale(1, 2)
)
)
But the node does not seems to have runAction.
How should I do this type of animations 3D?
3 posts - 3 participants