In SceneKit SDK to allow controlling a camera movement you need to set a parameter called .allowsCameraControl
to true.
var scnView = SCNView(frame: .zero)
scnView.allowsCameraControl = true
What parameter for controlling a camera (dolly in, dolly out) is used in RealityKit?
var arView = ARView(frame: .zero)
// ???
Any help appreciated.