Is it possible to render a SpriteKit Scene into a SceneKit Plane?

Hi, I just wanted to add a 3D perspective to my SpriteKit Scene, so I wondered if I render the SpriteKit Scene as a material of SCNGeometry is possible. If not, is there another way to give a 3D perspective to a SpriteKit Scene. Thanks very much 🙏

Accepted Reply

The documentation for SCNMaterialProperty contents notes that you can use an SKScene as the contents of a SCNMaterialProperty.

However, you may also find SKTransformNode to be suitable for your needs.

Replies

The documentation for SCNMaterialProperty contents notes that you can use an SKScene as the contents of a SCNMaterialProperty.

However, you may also find SKTransformNode to be suitable for your needs.