This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+97
View File
@@ -0,0 +1,97 @@
using System;
using System.Runtime.CompilerServices;
using UnityEngine.Scripting;
namespace UnityEngine
{
// Token: 0x0200022A RID: 554
public class Motion : Object
{
// Token: 0x170008D1 RID: 2257
// (get) Token: 0x06002643 RID: 9795
public extern float averageDuration
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
// Token: 0x170008D2 RID: 2258
// (get) Token: 0x06002644 RID: 9796
public extern float averageAngularSpeed
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
// Token: 0x170008D3 RID: 2259
// (get) Token: 0x06002645 RID: 9797 RVA: 0x0002BEFC File Offset: 0x0002A0FC
public Vector3 averageSpeed
{
get
{
Vector3 vector;
this.INTERNAL_get_averageSpeed(out vector);
return vector;
}
}
// Token: 0x06002646 RID: 9798
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
private extern void INTERNAL_get_averageSpeed(out Vector3 value);
// Token: 0x170008D4 RID: 2260
// (get) Token: 0x06002647 RID: 9799
public extern float apparentSpeed
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
// Token: 0x170008D5 RID: 2261
// (get) Token: 0x06002648 RID: 9800
public extern bool isLooping
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
// Token: 0x170008D6 RID: 2262
// (get) Token: 0x06002649 RID: 9801
public extern bool legacy
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
// Token: 0x170008D7 RID: 2263
// (get) Token: 0x0600264A RID: 9802
public extern bool isHumanMotion
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
// Token: 0x0600264B RID: 9803
[Obsolete("ValidateIfRetargetable is not supported anymore. Use isHumanMotion instead.", true)]
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
public extern bool ValidateIfRetargetable(bool val);
// Token: 0x170008D8 RID: 2264
// (get) Token: 0x0600264C RID: 9804
[Obsolete("isAnimatorMotion is not supported anymore. Use !legacy instead.", true)]
public extern bool isAnimatorMotion
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
}
}