SW 중심대학 OSS GIT 서버 박건태, 이승준, 고기완, 이준호 새로운 배포
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

23 lines
638 B

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