120 lines
3.0 KiB
C#
120 lines
3.0 KiB
C#
using System;
|
|
using System.Runtime.CompilerServices;
|
|
using UnityEngine.Scripting;
|
|
|
|
namespace UnityEngine
|
|
{
|
|
// Token: 0x0200019B RID: 411
|
|
public sealed class RelativeJoint2D : Joint2D
|
|
{
|
|
// Token: 0x170006C9 RID: 1737
|
|
// (get) Token: 0x06001E8F RID: 7823
|
|
// (set) Token: 0x06001E90 RID: 7824
|
|
public extern float maxForce
|
|
{
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
get;
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
set;
|
|
}
|
|
|
|
// Token: 0x170006CA RID: 1738
|
|
// (get) Token: 0x06001E91 RID: 7825
|
|
// (set) Token: 0x06001E92 RID: 7826
|
|
public extern float maxTorque
|
|
{
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
get;
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
set;
|
|
}
|
|
|
|
// Token: 0x170006CB RID: 1739
|
|
// (get) Token: 0x06001E93 RID: 7827
|
|
// (set) Token: 0x06001E94 RID: 7828
|
|
public extern float correctionScale
|
|
{
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
get;
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
set;
|
|
}
|
|
|
|
// Token: 0x170006CC RID: 1740
|
|
// (get) Token: 0x06001E95 RID: 7829
|
|
// (set) Token: 0x06001E96 RID: 7830
|
|
public extern bool autoConfigureOffset
|
|
{
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
get;
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
set;
|
|
}
|
|
|
|
// Token: 0x170006CD RID: 1741
|
|
// (get) Token: 0x06001E97 RID: 7831 RVA: 0x000258A4 File Offset: 0x00023AA4
|
|
// (set) Token: 0x06001E98 RID: 7832 RVA: 0x000258C4 File Offset: 0x00023AC4
|
|
public Vector2 linearOffset
|
|
{
|
|
get
|
|
{
|
|
Vector2 vector;
|
|
this.INTERNAL_get_linearOffset(out vector);
|
|
return vector;
|
|
}
|
|
set
|
|
{
|
|
this.INTERNAL_set_linearOffset(ref value);
|
|
}
|
|
}
|
|
|
|
// Token: 0x06001E99 RID: 7833
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
private extern void INTERNAL_get_linearOffset(out Vector2 value);
|
|
|
|
// Token: 0x06001E9A RID: 7834
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
private extern void INTERNAL_set_linearOffset(ref Vector2 value);
|
|
|
|
// Token: 0x170006CE RID: 1742
|
|
// (get) Token: 0x06001E9B RID: 7835
|
|
// (set) Token: 0x06001E9C RID: 7836
|
|
public extern float angularOffset
|
|
{
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
get;
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
set;
|
|
}
|
|
|
|
// Token: 0x170006CF RID: 1743
|
|
// (get) Token: 0x06001E9D RID: 7837 RVA: 0x000258D0 File Offset: 0x00023AD0
|
|
public Vector2 target
|
|
{
|
|
get
|
|
{
|
|
Vector2 vector;
|
|
this.INTERNAL_get_target(out vector);
|
|
return vector;
|
|
}
|
|
}
|
|
|
|
// Token: 0x06001E9E RID: 7838
|
|
[GeneratedByOldBindingsGenerator]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
private extern void INTERNAL_get_target(out Vector2 value);
|
|
}
|
|
}
|