Moving a SKSpriteNode in a downward loop, using Swift
Using Swift and SpriteKit, I'd like to move a SKSpritenode in a spiral pattern, but didn't find the right resources to get me started. To be more precise, I'd like to move a sprite node in a downward loop. I've checked a sequence of SKActions, but as they are not executed parallel, a circular movement combined with move-to will not work. I'd be glad for any hints, tutorials or snippets to set me on the right track. Thanx in advance, Marcus I've put together some sample code which you can adapt for your purposes. I've based the code off the equation for an Archimedean Spiral : r = a + bθ Where