Reformat files

This commit is contained in:
Santiago Lo Coco 2024-11-10 22:33:30 +01:00
parent e78b7a2fae
commit b075761ed1
2 changed files with 6 additions and 7 deletions

View File

@ -68,11 +68,7 @@ public class ServicesListPopulator : MonoBehaviour
foreach (Transform child in gridObjectCollection.transform)
{
TextMeshPro[] textMeshes = child.GetComponentsInChildren<TextMeshPro>();
if (
textMeshes.Length >= 2
&& textMeshes[0].text == apiUrl
&& textMeshes[1].text == hostname
)
if (textMeshes.Length >= 2 && textMeshes[0].text == apiUrl && textMeshes[1].text == hostname)
{
Debug.Log($"Removing service from table: {service}");
Destroy(child.gameObject);

View File

@ -3,9 +3,9 @@ using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Threading.Tasks;
using Microsoft.MixedReality.Toolkit.UI;
using UnityEngine;
using UnityEngine.Windows.WebCam;
using Microsoft.MixedReality.Toolkit.UI;
#if WINDOWS_UWP && !UNITY_EDITOR
using Windows.Storage;
#endif
@ -131,7 +131,10 @@ public class VideoCaptureHandler : MonoBehaviour
{
if (result.success)
{
string filename = string.Format("WebView_{0}.mp4", DateTime.UtcNow.ToString("yyyy-MM-ddTHHmmssZ"));
string filename = string.Format(
"WebView_{0}.mp4",
DateTime.UtcNow.ToString("yyyy-MM-ddTHHmmssZ")
);
string filepath = Path.Combine(Application.persistentDataPath, filename);
Debug.Log("Saving video to: " + filepath);