how to stack SKScenes in Xcode using Swift 3

135 Views Asked by At

How can I stack SKScenes, and to use push/pop method to switch between the scenes?

Reason I'm asking is because i'm trying to implement an inventory management system to my rogue like game. I want the inventory to show up without transitioning out of the main games scene.

I tried to add an UI subview to the game scene but it didn't work out, because I couldn't add any images(anything that's a SKSpriteNode) to the subview. So, the only option I'm left with is to add another SKScene on top of the main game scene. (Unless someone can enlighten me as how to get SKSpriteNode to work within an UI subview)

Please show me a way to stack SKScenes, in Swift :)

Thanks in advance!

0

There are 0 best solutions below