We have a code base that was written and released in 2013, but in iOS 9 the app no longer transitions between
SKScenes when the presentScene:transition: message is sent to our SKView.Here's what we tried:
- Disabling
via theMetalInfo.plist - Using
instead of the predefined animations[SKTransition transitionWithCIFilter:duration:] - Tweaking
zPosition - Switching to regular
animations (this made ourUIView
s disappear)SKNode
None of the above attempts fixed the issue. Note that everything transitions properly in iOS 8
Any suggestions on how to locate/fix/workaround the bug?