Post

Replies

Boosts

Views

Activity

Reply to SpriteKit refresh during live resize
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         }     } }
Aug ’20