Reformat files
This commit is contained in:
parent
e78b7a2fae
commit
b075761ed1
|
@ -68,11 +68,7 @@ public class ServicesListPopulator : MonoBehaviour
|
||||||
foreach (Transform child in gridObjectCollection.transform)
|
foreach (Transform child in gridObjectCollection.transform)
|
||||||
{
|
{
|
||||||
TextMeshPro[] textMeshes = child.GetComponentsInChildren<TextMeshPro>();
|
TextMeshPro[] textMeshes = child.GetComponentsInChildren<TextMeshPro>();
|
||||||
if (
|
if (textMeshes.Length >= 2 && textMeshes[0].text == apiUrl && textMeshes[1].text == hostname)
|
||||||
textMeshes.Length >= 2
|
|
||||||
&& textMeshes[0].text == apiUrl
|
|
||||||
&& textMeshes[1].text == hostname
|
|
||||||
)
|
|
||||||
{
|
{
|
||||||
Debug.Log($"Removing service from table: {service}");
|
Debug.Log($"Removing service from table: {service}");
|
||||||
Destroy(child.gameObject);
|
Destroy(child.gameObject);
|
||||||
|
|
|
@ -3,9 +3,9 @@ using System.Collections;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.MixedReality.Toolkit.UI;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using UnityEngine.Windows.WebCam;
|
using UnityEngine.Windows.WebCam;
|
||||||
using Microsoft.MixedReality.Toolkit.UI;
|
|
||||||
#if WINDOWS_UWP && !UNITY_EDITOR
|
#if WINDOWS_UWP && !UNITY_EDITOR
|
||||||
using Windows.Storage;
|
using Windows.Storage;
|
||||||
#endif
|
#endif
|
||||||
|
@ -131,7 +131,10 @@ public class VideoCaptureHandler : MonoBehaviour
|
||||||
{
|
{
|
||||||
if (result.success)
|
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);
|
string filepath = Path.Combine(Application.persistentDataPath, filename);
|
||||||
Debug.Log("Saving video to: " + filepath);
|
Debug.Log("Saving video to: " + filepath);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue