Animations only work when the node is already in the scene

If you try to add an animation to an SCNNode that’s not yet part of a scene graph, nothing will happen.  It won’t give any indication of failing, and the performance of rendering implies it’s still running them, but there will be no visible effect.  So, addChildNode: and then addAnimation:forKey:.

Leave a Comment