using System; using UnityEngine.XR.ARSubsystems; namespace UnityEngine.XR.ARFoundation { /// /// Represents a participant (that is, another device in a collaborative session). /// /// /// Generated by the to represent another participant in the session. /// /// Related information: AR Participant Manager component /// // [DefaultExecutionOrder(ARUpdateOrder.k_Plane)] [DisallowMultipleComponent] [HelpURL(typeof(ARParticipant))] public sealed class ARParticipant : ARTrackable { /// /// Get this participant's session identifier. /// public Guid sessionId { get { return sessionRelativeData.sessionId; } } } }