bouvet/BouvetDevelopmentKit

CameraRecordingUtils: PictureCaptured Unity event is called before the image actually is captured

Opened this issue · 0 comments

m_PictureCaptured.Invoke() is called OnPhotoModeStarted, but the image is not finished capturing before onCapturedPhotoToDisk.

....
// line 102
m_PictureCaptured.Invoke();
 if (saveImage) SaveImage();
...