Remove comments

This commit is contained in:
Santiago Lo Coco 2024-11-06 22:48:31 +01:00
parent 95d62675e3
commit 015d7b246c
4 changed files with 2 additions and 13 deletions

View File

@ -24,15 +24,6 @@ public class ConfigureNavBar : MonoBehaviour
inputField.gameObject.SetActive(isVisible);
}
/*
Transform addressFieldTransform = canvas.transform.Find("AddressField");
if (addressFieldTransform != null)
{
Debug.Log("Setting address field visibility to " + isVisible);
addressFieldTransform.gameObject.SetActive(isVisible);
}
*/
BoxCollider boxCollider = canvas.GetComponent<BoxCollider>();
if (boxCollider != null)
{

View File

@ -18,7 +18,6 @@ public class DialogHandler : MonoBehaviour
);
if (dialog != null)
{
// myDialog.OnClosed += OnClosedDialogEvent;
dialog.OnClosed += (x) =>
{
if (x.Result == DialogButtonType.Yes)

View File

@ -68,7 +68,6 @@ public class EndpointLoader : MonoBehaviour
{
if (instantiatedItems.Count == 0)
{
// return dynamicItem.transform.position;
return new Vector3(-0.4f, 0.1f, 1);
}
@ -142,7 +141,7 @@ public class EndpointLoader : MonoBehaviour
{
Debug.LogError("Failed to load default endpoints");
dialogHandler.OpenDialog(
"Failed to load the default endpoints\r\n",
"Failed to load the default endpoints",
"Do you want to try one more time?\r\n"
+ "If you click \"No\", we will continue waiting for mDNS services to appear.",
() =>

View File

@ -286,7 +286,7 @@ public class ServiceDiscovery : MonoBehaviour
}
else if (recordType == 47) // NSEC Record
{
Debug.Log($"NSEC Record: {name}");
// Debug.Log($"NSEC Record: {name}");
}
else
{