11. Switch Camera Face
To switch camera face from front to rear or vice-versa, ARGSession must be paused first, change camera face, and resume the ARGSession in that order.
Sample code of flipping camera face is written below.
argsession.pause();
camera.changeCameraFacing();
argsession.resume();
Last updated
Was this helpful?