I wanted to have all the SCNNodes rotate around an axis (says SCNVector3Zero at center). But when I do this:
for node in nodes {
node.runAction(SCNAction.rotate(by: 3.14, around: SCNVector3Zero, duration: 0.5))
}
Nothing is moved. Changed to SCNAction.move instead of rotate works fine. Any idea?
I am testing in ARKit.