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
+23
View File
@@ -0,0 +1,23 @@
using System;
namespace UnityEngine
{
// Token: 0x02000154 RID: 340
[Flags]
[Obsolete("JointDriveMode is no longer supported")]
public enum JointDriveMode
{
// Token: 0x040003AF RID: 943
[Obsolete("JointDriveMode.None is no longer supported")]
None = 0,
// Token: 0x040003B0 RID: 944
[Obsolete("JointDriveMode.Position is no longer supported")]
Position = 1,
// Token: 0x040003B1 RID: 945
[Obsolete("JointDriveMode.Velocity is no longer supported")]
Velocity = 2,
// Token: 0x040003B2 RID: 946
[Obsolete("JointDriveMode.PositionAndvelocity is no longer supported")]
PositionAndVelocity = 3
}
}