I'm trying to remove the default SceneKit camera perspective distortion. I'm building off the default "game" template built into Xcode. The problem I'm having is that there is serious perspective distortion. While this is fine for some applications and games, I want to get rid of it entirely. To show what I mean, here's a screenshot I took from my phone. I placed a plane, and rotated the camera using the white square to pan around.
Here is what I'm using to create the camera:
cameraNode = [SCNNode node];
cameraNode.camera = [SCNCamera camera];
cameraNode.rotation = SCNVector4Make(0, 1, 0, M_PI);
// cameraNode.camera.xFov = 45.0;
cameraNode.position = SCNVector3Make(0, 0, 0);
[scene.rootNode addChildNode:cameraNode];
As you can see I had tried adjusting the FOV, moving the plane farther back, and making it larger, but that made the box look a lot larger, which made panning around the room take a long time. What's the best method for eliminating or minimizing to the greatest extent the perspective distortion?