I have a very simple particle setup where a rain particle layer is on top of my whole SKScene. Now, i just want to touch my buttons and objects underneath that layer. How can i achieve this by still keeping this layer on the highest zPosition. (code Below)
let rainParticlePath = NSBundle.mainBundle().pathForResource("myRainParticles",
ofType: "sks")
let rainEmitter = NSKeyedUnarchiver.unarchiveObjectWithFile(rainParticlePath!)
as! SKEmitterNode
rainEmitter.position = CGPointMake(0,screenSize.height)
rainEmitter.zPosition = 200
rainEmitter.userInteractionEnabled = true
self.addChild(rainEmitter)