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