2 years later...
I found a simple way to force an SKView to live resize on Mac; just make it think it's not live resizing and it won't halt the redraws:
class LiveResizeSKView: SKView {
override public var inLiveResize: Bool {
get {
return false
}
}
}
Topic:
Graphics & Games
SubTopic:
SpriteKit
Tags: