m
This commit is contained in:
@@ -0,0 +1,94 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Diagnostics;
|
||||
using System.Runtime.CompilerServices;
|
||||
using Cpp2IlInjected;
|
||||
using UnityEngine.Bindings;
|
||||
using UnityEngine.Scripting;
|
||||
|
||||
namespace UnityEngine.XR
|
||||
{
|
||||
// Token: 0x02000002 RID: 2
|
||||
[Token(Token = "0x2000002")]
|
||||
[RequiredByNativeCode]
|
||||
[NativeConditional("ENABLE_VR")]
|
||||
[StaticAccessor("XRInputTrackingFacade::Get()", StaticAccessorType.Dot)]
|
||||
[NativeHeader("Modules/XR/Subsystems/Input/Public/XRInputTrackingFacade.h")]
|
||||
public static class InputTracking
|
||||
{
|
||||
// Token: 0x06000001 RID: 1 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000001")]
|
||||
[Address(RVA = "0x11E4BE0", Offset = "0x11E3BE0", VA = "0x1811E4BE0")]
|
||||
[RequiredByNativeCode]
|
||||
private static void InvokeTrackingEvent(InputTracking.TrackingStateEventType eventType, XRNode nodeType, long uniqueID, bool tracked)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000002 RID: 2 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000002")]
|
||||
[Address(RVA = "0x11E4E10", Offset = "0x11E3E10", VA = "0x1811E4E10")]
|
||||
[Obsolete]
|
||||
[NativeConditional("ENABLE_VR")]
|
||||
[Obsolete("This API is obsolete, and should no longer be used. Please use XRInputSubsystem.TryRecenter() instead.")]
|
||||
public static void Recenter()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000003 RID: 3 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000003")]
|
||||
[Address(RVA = "0x11E4B20", Offset = "0x11E3B20", VA = "0x1811E4B20")]
|
||||
public static void GetNodeStates(List<XRNodeState> nodeStates)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000004 RID: 4 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000004")]
|
||||
[Address(RVA = "0x11E4AE0", Offset = "0x11E3AE0", VA = "0x1811E4AE0")]
|
||||
[NativeConditional("ENABLE_VR")]
|
||||
private static void GetNodeStates_Internal([NotNull] List<XRNodeState> nodeStates)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x04000001 RID: 1
|
||||
[Token(Token = "0x4000001")]
|
||||
[CompilerGenerated]
|
||||
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
|
||||
private static Action<XRNodeState> trackingAcquired;
|
||||
|
||||
// Token: 0x04000002 RID: 2
|
||||
[Token(Token = "0x4000002")]
|
||||
[CompilerGenerated]
|
||||
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
|
||||
private static Action<XRNodeState> trackingLost;
|
||||
|
||||
// Token: 0x04000003 RID: 3
|
||||
[Token(Token = "0x4000003")]
|
||||
[CompilerGenerated]
|
||||
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
|
||||
private static Action<XRNodeState> nodeAdded;
|
||||
|
||||
// Token: 0x04000004 RID: 4
|
||||
[Token(Token = "0x4000004")]
|
||||
[CompilerGenerated]
|
||||
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
|
||||
private static Action<XRNodeState> nodeRemoved;
|
||||
|
||||
// Token: 0x02000003 RID: 3
|
||||
[Token(Token = "0x2000003")]
|
||||
private enum TrackingStateEventType
|
||||
{
|
||||
// Token: 0x04000006 RID: 6
|
||||
[Token(Token = "0x4000006")]
|
||||
NodeAdded,
|
||||
// Token: 0x04000007 RID: 7
|
||||
[Token(Token = "0x4000007")]
|
||||
NodeRemoved,
|
||||
// Token: 0x04000008 RID: 8
|
||||
[Token(Token = "0x4000008")]
|
||||
TrackingAcquired,
|
||||
// Token: 0x04000009 RID: 9
|
||||
[Token(Token = "0x4000009")]
|
||||
TrackingLost
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user