Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


StartPhotoModeAsync(CameraParameters, OnPhotoModeStartedCallback)

Asynchronously starts photo mode.
Read time 1 minuteLast updated 12 days ago

Definition

public void StartPhotoModeAsync(CameraParameters setupParams, PhotoCapture.OnPhotoModeStartedCallback onPhotoModeStartedCallback)

Parameters

setupParams

The various settings that should be applied to the web camera.

onPhotoModeStartedCallback

This callback will be invoked once photo mode has been activated.

Remarks

Activates the web camera with the various settings specified in CameraParameters. Only one PhotoCapture instance can start the photo mode at any given time. After starting the photo mode, you make take photos via PhotoCapture.TakePhotoAsync. While in photo mode, more power will be consumed so make sure that you call PhotoCapture.StopPhotoModeAsync when you are done taking photos.