I am trying to add a SCNView
on top of a SKView
.
My hierarchy begins with a UIViewController
.
From there I present a SKScene
on top of the UIViewController
's view.
Then I had added a few layers of SKSpriteNodes
.
Visually speaking, I want to add a SCNView
on top of the top layer of SKSpriteNodes
for me to display a row of SCNBoxes
.
Is there any way for me to do this aside from creating another UIViewController
, adding all of my components on top of that new controller, then adding it on top of my currently existing ViewController
?
I would appreciate a solution in Swift code, but I am able to read/write Objective-C, I just don't want to mix any Swift with Objective-C as I haven't needed to use any for my current project.