From 95d62675e399ed6f8f340762371566ba355ef04f Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Wed, 6 Nov 2024 00:25:24 +0100 Subject: [PATCH] Reformat more files --- Assets/Scripts/DialogHandler.cs | 10 ++++++++-- Assets/Scripts/EndpointLoader.cs | 27 +++++++++++++++++++-------- 2 files changed, 27 insertions(+), 10 deletions(-) diff --git a/Assets/Scripts/DialogHandler.cs b/Assets/Scripts/DialogHandler.cs index 26ce038..78ba6f1 100644 --- a/Assets/Scripts/DialogHandler.cs +++ b/Assets/Scripts/DialogHandler.cs @@ -1,6 +1,6 @@ +using System; using Microsoft.MixedReality.Toolkit.UI; using UnityEngine; -using System; public class DialogHandler : MonoBehaviour { @@ -9,7 +9,13 @@ public class DialogHandler : MonoBehaviour public void OpenDialog(string title, string question, Action action) { - Dialog dialog = Dialog.Open(dialogPrefab, DialogButtonType.Yes | DialogButtonType.No, title, question, true); + Dialog dialog = Dialog.Open( + dialogPrefab, + DialogButtonType.Yes | DialogButtonType.No, + title, + question, + true + ); if (dialog != null) { // myDialog.OnClosed += OnClosedDialogEvent; diff --git a/Assets/Scripts/EndpointLoader.cs b/Assets/Scripts/EndpointLoader.cs index eba12d6..b2e3e1d 100644 --- a/Assets/Scripts/EndpointLoader.cs +++ b/Assets/Scripts/EndpointLoader.cs @@ -51,10 +51,16 @@ public class EndpointLoader : MonoBehaviour if (availableServices.Count == 0) { Debug.LogWarning("Timeout reached. Loading default endpoints..."); - dialogHandler.OpenDialog("Timeout reached", "No services found. Load default endpoints?", () => - { - StartCoroutine(TryLoadingFromDefaultEndpoints()); - }); + dialogHandler.OpenDialog( + "Timeout reached", + "No services were found within the time limit.\r\n" + + "Would you like to load the default endpoints now?\r\n" + + "If you click \"No\", we will continue waiting for mDNS services to appear.", + () => + { + StartCoroutine(TryLoadingFromDefaultEndpoints()); + } + ); } } @@ -135,10 +141,15 @@ public class EndpointLoader : MonoBehaviour if (!defaultEndpointLoaded) { Debug.LogError("Failed to load default endpoints"); - dialogHandler.OpenDialog("Failed to load default endpoints", "Do you want to try one more time?", () => - { - StartCoroutine(TryLoadingFromDefaultEndpoints()); - }); + dialogHandler.OpenDialog( + "Failed to load the default endpoints\r\n", + "Do you want to try one more time?\r\n" + + "If you click \"No\", we will continue waiting for mDNS services to appear.", + () => + { + StartCoroutine(TryLoadingFromDefaultEndpoints()); + } + ); } }