From 28b99bda972be59511a6ebc8fbf02c8af06fd1a3 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Sun, 10 Nov 2024 18:34:13 +0100 Subject: [PATCH] Reformat files --- Assets/Scripts/VideoCaptureHandler.cs | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Assets/Scripts/VideoCaptureHandler.cs b/Assets/Scripts/VideoCaptureHandler.cs index 9042ade..bc01744 100644 --- a/Assets/Scripts/VideoCaptureHandler.cs +++ b/Assets/Scripts/VideoCaptureHandler.cs @@ -1,10 +1,10 @@ using System; using System.Collections; using System.Collections.Generic; +using System.IO; using System.Threading.Tasks; using UnityEngine; using UnityEngine.Windows.WebCam; -using System.IO; #if WINDOWS_UWP && !UNITY_EDITOR using Windows.Storage; #endif @@ -32,7 +32,7 @@ public class VideoCaptureHandler : MonoBehaviour { StorageFolder folder = ApplicationData.Current.TemporaryFolder; var props = await folder.Properties.RetrievePropertiesAsync(new string[] { freeSpace }); - UInt64 availableSpace = (UInt64) props[freeSpace]; + UInt64 availableSpace = (UInt64)props[freeSpace]; if (availableSpace < minAvailableSpace) { @@ -99,9 +99,11 @@ public class VideoCaptureHandler : MonoBehaviour cameraParameters.cameraResolutionHeight = cameraResolution.height; cameraParameters.pixelFormat = CapturePixelFormat.BGRA32; - this.videoCapture.StartVideoModeAsync(cameraParameters, - VideoCapture.AudioState.None, - OnStartedVideoCaptureMode); + this.videoCapture.StartVideoModeAsync( + cameraParameters, + VideoCapture.AudioState.None, + OnStartedVideoCaptureMode + ); } else {