VR4RoboticArm2/VR4RoboticArm/Library/PackageCache/com.unity.xr.hands/Runtime/XRHandJointsUpdatedEventArgs.cs
IonutMocanu 48cccc22ad Main2
2025-09-08 11:13:29 +03:00

21 lines
516 B
C#

using System;
namespace UnityEngine.XR.Hands
{
/// <summary>
/// Event data associated with the event when XR Hand joints are updated.
/// </summary>
public class XRHandJointsUpdatedEventArgs
{
/// <summary>
/// The data for the XR Hand.
/// </summary>
public XRHand hand;
/// <summary>
/// The subsystem that is the source of the hand tracking data.
/// </summary>
public XRHandSubsystem subsystem { get; internal set; }
}
}