I've got a live app using SceneKit that is working perfectly on iOS 11.1.2 and below, but which is experiencing a bug 100% of the time on the iOS 11.2 beta.
Specifically, the "transparent.contents" property of SceneKit's SCNMaterial seems to have stopped working in 11.2. Here is a picture to illustrate:
https://i.imgur.com/fj6Oe6g.png
In this picture, I have two nested spheres: one for the planet's surface, and another for the cloud layer. The cloud sphere uses an SCNMaterial with a PNG added to the "transparent.contents", which allows the white clouds to appear opaque while the negative space shows through. It's working perfectly on all public versions of iOS (and has been since it came out in July 2016), but it's been experiencing this problem on every build of 11.2. (Ignore the slight size difference of the planets, they come from the screen sizes of the test devices.) The numerical "transparency" property seems to be working fine, and all other aspects of SCNMaterial are working normally, it's just the "transparent" property that isn't.
My code (simplified for readability) is below...
SCNSphere *cloudShell = [SCNSphere sphereWithRadius:planetRadius+0.125]; SCNNode *cloudShellNode = [SCNNode nodeWithGeometry:cloudShell]; [cloudShellNode setName:@"cloudsNode"]; [atmosphereShellNode addChildNode:cloudShellNode]; SCNMaterial *clouds = [SCNMaterial material]; clouds.shininess = 0; clouds.diffuse.contents = [UIColor whiteColor]; clouds.transparency = cloudLevel*0.9; clouds.transparent.contents = [UIImage imageNamed:@"Clouds"]; // <--- THE PROBLEM cloudShell.materials = @[clouds];
For reference, here is the cloud map I'm using as the mask. (Note: it's entirely white and clear, so if the screen appears blank that's why.)
https://i.imgur.com/3f7A1zR.png
Does anyone know what might be causing this? It seems like a bug to me, but maybe Apple changed something about SceneKit in iOS 11.2, and I just need to alter my process? Any help would be hugely appreciated!