Is there a way to make a SKScene\'s background transparent and present that scene over another one seeing thru the transparency.
The idea is to have the background o
Transparency works only for iOS 8, have to check for iOS 7
In the ViewController set transparency as :
SKView *skView = (SKView *)self.mySKView;
SKScene *skScene = [MyScene sceneWithSize:skView.bounds.size];
skScene.scaleMode = SKSceneScaleModeAspectFill;
skView.allowsTransparency = YES;
[skView presentScene: skScene];
In MyScene.m set background as clear color:
self.scene.backgroundColor = [UIColor clearColor];