Files
adriadri6972 d3d9c5f833 upload project
2025-07-31 15:21:08 +02:00

25 lines
882 B
C#

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