I want to blur the movement of fast moving nodes. I should look like it fades away behind the movement. Is there some easy solution to archive this?
It should somehow look like this movement:
Thanks in advance!
Update
I tried to call this every 0.0X seconds:
for child in self.allNodes{
let node = SKSpriteNode(color: child.color, size: CGSizeMake(size, size))
node.position = child.position
self.addChild(node)
node.runAction(SKAction.fadeOutWithDuration(0.2))
}
The problem is, that this solution is to expensive. It should be way easier. :/