Unity.Platform.IPhone.IPhoneMedia.TakeSnapshotWithOptions C# (CSharp) Method

TakeSnapshotWithOptions() public method

public TakeSnapshotWithOptions ( CameraOptions options ) : void
options CameraOptions
return void
		public override void TakeSnapshotWithOptions (CameraOptions options)
		{
			cameraOptions = options; // reset image scale factor
			SystemLogger.Log(SystemLogger.Module.PLATFORM, "Getting picture from camera with specific camera options...");
			using (var pool = new NSAutoreleasePool ()) {
				var thread = new Thread (ShowCameraView);
				thread.Start ();
			};
		}