I\'m experimenting with Swift and Scenekit. Building a Mac OS X app. It seems quite easy to get a 3d-scene working. But what is scene without some kind of 2D hi-score, radar dis
As @Toyos said above, you can use
scnView.overlaySKScene = aSKScene
to superimpose the SKScene on your SCNView.
However, when I tried this in Swift, I found that the overlaySKScene property only becomes visible if you include an import SpriteKit statement.
overlaySKScene
import SpriteKit