The goal is to recreate the lighting for this OBJ file: https://poly.google.com/view/cKryD9VnDEZ
Code for loading the OBJ file into SceneKit (you can download the file from the link above):
let modelPath = "model.obj" let url = NSURL(string: modelPath) let scene = SCNScene(named: modelPath)! sceneView.autoenablesDefaultLighting = true sceneView.allowsCameraControl = true sceneView.scene = scene sceneView.backgroundColor = UIColor.white
The parameters have been met so far:
1) The default ambient lighting is much tougher than Google Poly lighting. Removing ambient light made everything too flat.
2) Using four directional lights: one in front, one in the back, one below and one above the model. All lights at an angle to indicate the model. This was best, but still left some shadows and harsher areas that were not seen in Google Polymer.
3) Two more indicators were added to option No. 2, this time adding lights left and right. This was worse than option number 2, because additional lights combined with four existing lights whitened the model.
UPDATE AFTER THE FOLLOWING OFFERS:
Now the code implements ambient light and directional light.
Adding directional light to the camera node, compared to the root of the scene node, for some reason has not changed.
Light code below.
There are two problems:
1) In screenshot 1, the right side of the chest is too bright and does not show edges. The far left face of the chest is too dark. The person with the best lighting is in the center. How can you get coverage this way for all faces (or better match Google Poly lighting)?
2) In screenshot 2, directional light has no effect. How can you ensure that the back of the model is as light as the front, with the proposed architecture of one ambient light and one directional light?
SCREENSHOT 1: 
SCREENSHOT 2: 
CODE:
// Create ambient light let ambientLightNode = SCNNode() ambientLightNode.light = SCNLight() ambientLightNode.light!.type = .ambient ambientLightNode.light!.color = UIColor(white: 0.50, alpha: 1.0) // Add ambient light to scene scene.rootNode.addChildNode(ambientLightNode) // Create directional light let directionalLight = SCNNode() directionalLight.light = SCNLight() directionalLight.light!.type = .directional directionalLight.light!.color = UIColor(white: 0.40, alpha: 1.0) directionalLight.eulerAngles = SCNVector3(x: Float.pi, y: 0, z: 0) // Add directional light scene.rootNode.addChildNode(directionalLight)