Setting a Camera's Point Of View in SceneKit

2.9k Views Asked by At

How can I set the SceneKit SCNCamera properties for 2d views such as:

- top view
- bottom view
- front view
- back view
- left side view
- right side view
1

There are 1 best solutions below

1
On

To change camera (cut), use the pointOfView property of the SCNSceneRenderer class.

To set an orthographic projection for the camera (no perspective), check the usesOrthographicProjection and orthographicScale properties of the SCNCamera class.