Reformat files
This commit is contained in:
parent
e347047275
commit
28b99bda97
|
@ -1,10 +1,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.IO;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using UnityEngine.Windows.WebCam;
|
using UnityEngine.Windows.WebCam;
|
||||||
using System.IO;
|
|
||||||
#if WINDOWS_UWP && !UNITY_EDITOR
|
#if WINDOWS_UWP && !UNITY_EDITOR
|
||||||
using Windows.Storage;
|
using Windows.Storage;
|
||||||
#endif
|
#endif
|
||||||
|
@ -32,7 +32,7 @@ public class VideoCaptureHandler : MonoBehaviour
|
||||||
{
|
{
|
||||||
StorageFolder folder = ApplicationData.Current.TemporaryFolder;
|
StorageFolder folder = ApplicationData.Current.TemporaryFolder;
|
||||||
var props = await folder.Properties.RetrievePropertiesAsync(new string[] { freeSpace });
|
var props = await folder.Properties.RetrievePropertiesAsync(new string[] { freeSpace });
|
||||||
UInt64 availableSpace = (UInt64) props[freeSpace];
|
UInt64 availableSpace = (UInt64)props[freeSpace];
|
||||||
|
|
||||||
if (availableSpace < minAvailableSpace)
|
if (availableSpace < minAvailableSpace)
|
||||||
{
|
{
|
||||||
|
@ -99,9 +99,11 @@ public class VideoCaptureHandler : MonoBehaviour
|
||||||
cameraParameters.cameraResolutionHeight = cameraResolution.height;
|
cameraParameters.cameraResolutionHeight = cameraResolution.height;
|
||||||
cameraParameters.pixelFormat = CapturePixelFormat.BGRA32;
|
cameraParameters.pixelFormat = CapturePixelFormat.BGRA32;
|
||||||
|
|
||||||
this.videoCapture.StartVideoModeAsync(cameraParameters,
|
this.videoCapture.StartVideoModeAsync(
|
||||||
VideoCapture.AudioState.None,
|
cameraParameters,
|
||||||
OnStartedVideoCaptureMode);
|
VideoCapture.AudioState.None,
|
||||||
|
OnStartedVideoCaptureMode
|
||||||
|
);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue