namespace UnityEngine.XR.ARKit
{
///
/// Defines the priority of .
///
public enum ARCollaborationDataPriority
{
///
/// No priority is set.
///
None,
///
/// The data is important to the collaborative session and should be sent reliably, e.g., using TCP.
///
Critical,
///
/// The data is not important to collaborative session quality and may be sent unreliably, e.g., using UDP.
///
Optional
}
}