From 4bae2a393e0d0a15621fe579c3e0b64c6860c28b Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Mon, 11 Nov 2024 22:33:58 +0100 Subject: [PATCH] Reformat files --- Assets/Scripts/ConfigureOrbital.cs | 8 ++++++-- Assets/Scripts/DialogHandler.cs | 2 +- Assets/Scripts/EndpointLoader.cs | 2 +- Assets/Scripts/ServicesListPopulator.cs | 4 ++-- Assets/Scripts/VideoCaptureHandler.cs | 2 +- Assets/Scripts/WebViewBrowser.cs | 2 +- 6 files changed, 12 insertions(+), 8 deletions(-) diff --git a/Assets/Scripts/ConfigureOrbital.cs b/Assets/Scripts/ConfigureOrbital.cs index 6bdf0da..d80686a 100644 --- a/Assets/Scripts/ConfigureOrbital.cs +++ b/Assets/Scripts/ConfigureOrbital.cs @@ -1,5 +1,5 @@ -using Microsoft.MixedReality.Toolkit.Utilities.Solvers; using System.Collections.Generic; +using Microsoft.MixedReality.Toolkit.Utilities.Solvers; using UnityEngine; public class ConfigureOrbital : MonoBehaviour @@ -67,7 +67,11 @@ public class ConfigureOrbital : MonoBehaviour cameraTransform.position + cameraTransform.TransformDirection(localOffset); canvas.transform.rotation = Quaternion.LookRotation(cameraTransform.forward, cameraTransform.up); - localOffset = new Vector3(localOffset.x + endpointLoader.GetItemWidth(canvas), localOffset.y, localOffset.z); + localOffset = new Vector3( + localOffset.x + endpointLoader.GetItemWidth(canvas), + localOffset.y, + localOffset.z + ); } } } diff --git a/Assets/Scripts/DialogHandler.cs b/Assets/Scripts/DialogHandler.cs index ab55349..1c981e9 100644 --- a/Assets/Scripts/DialogHandler.cs +++ b/Assets/Scripts/DialogHandler.cs @@ -1,5 +1,5 @@ -using Microsoft.MixedReality.Toolkit.UI; using System; +using Microsoft.MixedReality.Toolkit.UI; using UnityEngine; public class DialogHandler : MonoBehaviour diff --git a/Assets/Scripts/EndpointLoader.cs b/Assets/Scripts/EndpointLoader.cs index d074fc2..93f5576 100644 --- a/Assets/Scripts/EndpointLoader.cs +++ b/Assets/Scripts/EndpointLoader.cs @@ -1,7 +1,7 @@ -using Microsoft.MixedReality.WebView; using System; using System.Collections; using System.Collections.Generic; +using Microsoft.MixedReality.WebView; using UnityEngine; using UnityEngine.Networking; diff --git a/Assets/Scripts/ServicesListPopulator.cs b/Assets/Scripts/ServicesListPopulator.cs index 356420a..a59b690 100644 --- a/Assets/Scripts/ServicesListPopulator.cs +++ b/Assets/Scripts/ServicesListPopulator.cs @@ -1,6 +1,6 @@ -using Microsoft.MixedReality.Toolkit.UI; +using System; +using Microsoft.MixedReality.Toolkit.UI; using Microsoft.MixedReality.Toolkit.Utilities; -using System; using TMPro; using UnityEngine; diff --git a/Assets/Scripts/VideoCaptureHandler.cs b/Assets/Scripts/VideoCaptureHandler.cs index 2e5102d..6b27036 100644 --- a/Assets/Scripts/VideoCaptureHandler.cs +++ b/Assets/Scripts/VideoCaptureHandler.cs @@ -1,6 +1,6 @@ -using Microsoft.MixedReality.Toolkit.UI; using System; using System.IO; +using Microsoft.MixedReality.Toolkit.UI; using UnityEngine; using UnityEngine.Windows.WebCam; #if WINDOWS_UWP && !UNITY_EDITOR diff --git a/Assets/Scripts/WebViewBrowser.cs b/Assets/Scripts/WebViewBrowser.cs index 18c2bf4..9ebbe21 100644 --- a/Assets/Scripts/WebViewBrowser.cs +++ b/Assets/Scripts/WebViewBrowser.cs @@ -1,5 +1,5 @@ -using Microsoft.MixedReality.WebView; using System; +using Microsoft.MixedReality.WebView; using TMPro; using UnityEngine;