Add xml documentation
This commit is contained in:
parent
4bae2a393e
commit
34e83ed312
|
@ -9,6 +9,9 @@ public class ConfigureNavBar : MonoBehaviour
|
||||||
|
|
||||||
private bool isVisible = false;
|
private bool isVisible = false;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Toggles the visibility of the address field in the nav bar.
|
||||||
|
/// </summary>
|
||||||
public void ToggleVisibilityMethod()
|
public void ToggleVisibilityMethod()
|
||||||
{
|
{
|
||||||
List<GameObject> canvases = endpointLoader.GetInstantiatedItems();
|
List<GameObject> canvases = endpointLoader.GetInstantiatedItems();
|
||||||
|
|
|
@ -9,6 +9,9 @@ public class ConfigureOrbital : MonoBehaviour
|
||||||
|
|
||||||
private bool orbitalEnabled = false;
|
private bool orbitalEnabled = false;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Toggles the orbital behavior (solver) of the canvases.
|
||||||
|
/// </summary>
|
||||||
public void ToggleOrbital()
|
public void ToggleOrbital()
|
||||||
{
|
{
|
||||||
orbitalEnabled = !orbitalEnabled;
|
orbitalEnabled = !orbitalEnabled;
|
||||||
|
@ -42,6 +45,9 @@ public class ConfigureOrbital : MonoBehaviour
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Rotates the canvases to face the user.
|
||||||
|
/// </summary>
|
||||||
public void RotateCanvasToFaceUser()
|
public void RotateCanvasToFaceUser()
|
||||||
{
|
{
|
||||||
List<GameObject> canvases = endpointLoader.GetInstantiatedItems();
|
List<GameObject> canvases = endpointLoader.GetInstantiatedItems();
|
||||||
|
@ -53,6 +59,9 @@ public class ConfigureOrbital : MonoBehaviour
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Centers the canvases in front of the user.
|
||||||
|
/// </summary>
|
||||||
public void CenterCanvasesToUser()
|
public void CenterCanvasesToUser()
|
||||||
{
|
{
|
||||||
List<GameObject> canvases = endpointLoader.GetInstantiatedItems();
|
List<GameObject> canvases = endpointLoader.GetInstantiatedItems();
|
||||||
|
|
|
@ -5,6 +5,9 @@ public class ConfigurePointer : MonoBehaviour
|
||||||
{
|
{
|
||||||
private bool handRayPointerEnabled = true;
|
private bool handRayPointerEnabled = true;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Toggles the hand ray pointer on and off.
|
||||||
|
/// </summary>
|
||||||
public void ToggleHandRayPointer()
|
public void ToggleHandRayPointer()
|
||||||
{
|
{
|
||||||
if (handRayPointerEnabled)
|
if (handRayPointerEnabled)
|
||||||
|
@ -19,12 +22,12 @@ public class ConfigurePointer : MonoBehaviour
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void EnableHandRayPointer()
|
private void EnableHandRayPointer()
|
||||||
{
|
{
|
||||||
PointerUtils.SetHandRayPointerBehavior(PointerBehavior.AlwaysOn);
|
PointerUtils.SetHandRayPointerBehavior(PointerBehavior.AlwaysOn);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void DisableHandRayPointer()
|
private void DisableHandRayPointer()
|
||||||
{
|
{
|
||||||
PointerUtils.SetHandRayPointerBehavior(PointerBehavior.AlwaysOff);
|
PointerUtils.SetHandRayPointerBehavior(PointerBehavior.AlwaysOff);
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,6 +7,12 @@ public class DialogHandler : MonoBehaviour
|
||||||
[SerializeField]
|
[SerializeField]
|
||||||
private GameObject dialogPrefab;
|
private GameObject dialogPrefab;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Opens a dialog with a title, question, and action.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="title"></param>
|
||||||
|
/// <param name="question"></param>
|
||||||
|
/// <param name="action"></param>
|
||||||
public void OpenDialog(string title, string question, Action action)
|
public void OpenDialog(string title, string question, Action action)
|
||||||
{
|
{
|
||||||
Dialog dialog = Dialog.Open(
|
Dialog dialog = Dialog.Open(
|
||||||
|
|
|
@ -79,6 +79,9 @@ public class EndpointLoader : MonoBehaviour
|
||||||
return cameraTransform.position + cameraTransform.TransformDirection(localOffset);
|
return cameraTransform.position + cameraTransform.TransformDirection(localOffset);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Toggles the visibility of the items spawned by this script.
|
||||||
|
/// </summary>
|
||||||
public void ToggleItemsVisibility()
|
public void ToggleItemsVisibility()
|
||||||
{
|
{
|
||||||
areItemsVisible = !areItemsVisible;
|
areItemsVisible = !areItemsVisible;
|
||||||
|
@ -88,6 +91,11 @@ public class EndpointLoader : MonoBehaviour
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns the width of the item in world space units.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="item"></param>
|
||||||
|
/// <returns></returns>
|
||||||
public float GetItemWidth(GameObject item)
|
public float GetItemWidth(GameObject item)
|
||||||
{
|
{
|
||||||
RectTransform rectTransform = item.GetComponent<RectTransform>();
|
RectTransform rectTransform = item.GetComponent<RectTransform>();
|
||||||
|
@ -99,6 +107,10 @@ public class EndpointLoader : MonoBehaviour
|
||||||
return 0.8f;
|
return 0.8f;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Spawns a new item with a WebView component and loads the specified URL.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="url"></param>
|
||||||
public void SpawnItem(string url)
|
public void SpawnItem(string url)
|
||||||
{
|
{
|
||||||
if (dynamicItem != null)
|
if (dynamicItem != null)
|
||||||
|
@ -130,6 +142,10 @@ public class EndpointLoader : MonoBehaviour
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns a list of all items instantiated by this script.
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
public List<GameObject> GetInstantiatedItems()
|
public List<GameObject> GetInstantiatedItems()
|
||||||
{
|
{
|
||||||
return instantiatedItems;
|
return instantiatedItems;
|
||||||
|
@ -287,12 +303,18 @@ public class EndpointLoader : MonoBehaviour
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Clears the list of available services.
|
||||||
|
/// </summary>
|
||||||
public void ClearServices()
|
public void ClearServices()
|
||||||
{
|
{
|
||||||
availableServices.Clear();
|
availableServices.Clear();
|
||||||
servicesListPopulator.RemoveAllItems();
|
servicesListPopulator.RemoveAllItems();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Reloads the list of available services.
|
||||||
|
/// </summary>
|
||||||
public void ReloadEndpoints()
|
public void ReloadEndpoints()
|
||||||
{
|
{
|
||||||
triedMulticast = false;
|
triedMulticast = false;
|
||||||
|
|
|
@ -5,6 +5,13 @@ public class MdnsService
|
||||||
public string Path { get; }
|
public string Path { get; }
|
||||||
public string Host { get; }
|
public string Host { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Represents a service discovered via mDNS.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="ipAddress"></param>
|
||||||
|
/// <param name="port"></param>
|
||||||
|
/// <param name="path"></param>
|
||||||
|
/// <param name="host"></param>
|
||||||
public MdnsService(string ipAddress, int port, string path, string host)
|
public MdnsService(string ipAddress, int port, string path, string host)
|
||||||
{
|
{
|
||||||
IpAddress = ipAddress;
|
IpAddress = ipAddress;
|
||||||
|
|
|
@ -6,6 +6,10 @@ public class ScrollablePagination : MonoBehaviour
|
||||||
[SerializeField]
|
[SerializeField]
|
||||||
private ScrollingObjectCollection scrollView;
|
private ScrollingObjectCollection scrollView;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Scrolls the collection by a specified amount.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="amount"></param>
|
||||||
public void ScrollByTier(int amount)
|
public void ScrollByTier(int amount)
|
||||||
{
|
{
|
||||||
if (scrollView == null)
|
if (scrollView == null)
|
||||||
|
|
|
@ -68,6 +68,10 @@ public class ServiceDiscovery : MonoBehaviour
|
||||||
return localIPs;
|
return localIPs;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Starts listening for mDNS service announcements.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="action"></param>
|
||||||
public void StartListening(Action<MdnsService> action)
|
public void StartListening(Action<MdnsService> action)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
|
|
|
@ -20,6 +20,11 @@ public class ServicesListPopulator : MonoBehaviour
|
||||||
private const string apiUrlPrefix = "API URL: ";
|
private const string apiUrlPrefix = "API URL: ";
|
||||||
private const string hostPrefix = "Host: ";
|
private const string hostPrefix = "Host: ";
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Adds an item to the table from a service.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="service"></param>
|
||||||
|
/// <param name="action"></param>
|
||||||
public void AddItemFromService(MdnsService service, Action action)
|
public void AddItemFromService(MdnsService service, Action action)
|
||||||
{
|
{
|
||||||
GameObject itemInstance = Instantiate(dynamicItem, gridObjectCollection.transform);
|
GameObject itemInstance = Instantiate(dynamicItem, gridObjectCollection.transform);
|
||||||
|
@ -47,6 +52,9 @@ public class ServicesListPopulator : MonoBehaviour
|
||||||
scrollView.UpdateContent();
|
scrollView.UpdateContent();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Removes all items from the table.
|
||||||
|
/// </summary>
|
||||||
public void RemoveAllItems()
|
public void RemoveAllItems()
|
||||||
{
|
{
|
||||||
foreach (Transform child in gridObjectCollection.transform)
|
foreach (Transform child in gridObjectCollection.transform)
|
||||||
|
@ -59,6 +67,10 @@ public class ServicesListPopulator : MonoBehaviour
|
||||||
scrollView.UpdateContent();
|
scrollView.UpdateContent();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Removes an item from the table by service.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="service"></param>
|
||||||
public void RemoveItemByService(MdnsService service)
|
public void RemoveItemByService(MdnsService service)
|
||||||
{
|
{
|
||||||
string apiUrl = $"{apiUrlPrefix}http://{service.IpAddress}:{service.Port}{service.Path}";
|
string apiUrl = $"{apiUrlPrefix}http://{service.IpAddress}:{service.Port}{service.Path}";
|
||||||
|
@ -79,6 +91,9 @@ public class ServicesListPopulator : MonoBehaviour
|
||||||
scrollView.UpdateContent();
|
scrollView.UpdateContent();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Toggles the visibility of the table.
|
||||||
|
/// </summary>
|
||||||
public void ToggleVisibility()
|
public void ToggleVisibility()
|
||||||
{
|
{
|
||||||
isVisible = !isVisible;
|
isVisible = !isVisible;
|
||||||
|
|
|
@ -49,6 +49,9 @@ public class VideoCaptureHandler : MonoBehaviour
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Starts recording a video.
|
||||||
|
/// </summary>
|
||||||
public void StartRecordingVideo()
|
public void StartRecordingVideo()
|
||||||
{
|
{
|
||||||
#if WINDOWS_UWP && !UNITY_EDITOR
|
#if WINDOWS_UWP && !UNITY_EDITOR
|
||||||
|
@ -63,12 +66,18 @@ public class VideoCaptureHandler : MonoBehaviour
|
||||||
videoCaptureButtonInteractable.IsToggled = true;
|
videoCaptureButtonInteractable.IsToggled = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Stops recording a video.
|
||||||
|
/// </summary>
|
||||||
public void StopRecordingVideo()
|
public void StopRecordingVideo()
|
||||||
{
|
{
|
||||||
videoCapture.StopRecordingAsync(OnStoppedRecordingVideo);
|
videoCapture.StopRecordingAsync(OnStoppedRecordingVideo);
|
||||||
videoCaptureButtonInteractable.IsToggled = false;
|
videoCaptureButtonInteractable.IsToggled = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Toggles the recording of a video.
|
||||||
|
/// </summary>
|
||||||
public void ToggleRecordingVideo()
|
public void ToggleRecordingVideo()
|
||||||
{
|
{
|
||||||
if (videoCapture == null)
|
if (videoCapture == null)
|
||||||
|
|
Loading…
Reference in New Issue