scripts
This commit is contained in:
@@ -0,0 +1,116 @@
|
||||
using System;
|
||||
using System.Runtime.CompilerServices;
|
||||
using UnityEngine.Scripting;
|
||||
|
||||
namespace UnityEngine
|
||||
{
|
||||
// Token: 0x0200019D RID: 413
|
||||
public sealed class TargetJoint2D : Joint2D
|
||||
{
|
||||
// Token: 0x170006DA RID: 1754
|
||||
// (get) Token: 0x06001EB7 RID: 7863 RVA: 0x00025974 File Offset: 0x00023B74
|
||||
// (set) Token: 0x06001EB8 RID: 7864 RVA: 0x00025994 File Offset: 0x00023B94
|
||||
public Vector2 anchor
|
||||
{
|
||||
get
|
||||
{
|
||||
Vector2 vector;
|
||||
this.INTERNAL_get_anchor(out vector);
|
||||
return vector;
|
||||
}
|
||||
set
|
||||
{
|
||||
this.INTERNAL_set_anchor(ref value);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06001EB9 RID: 7865
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
private extern void INTERNAL_get_anchor(out Vector2 value);
|
||||
|
||||
// Token: 0x06001EBA RID: 7866
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
private extern void INTERNAL_set_anchor(ref Vector2 value);
|
||||
|
||||
// Token: 0x170006DB RID: 1755
|
||||
// (get) Token: 0x06001EBB RID: 7867 RVA: 0x000259A0 File Offset: 0x00023BA0
|
||||
// (set) Token: 0x06001EBC RID: 7868 RVA: 0x000259C0 File Offset: 0x00023BC0
|
||||
public Vector2 target
|
||||
{
|
||||
get
|
||||
{
|
||||
Vector2 vector;
|
||||
this.INTERNAL_get_target(out vector);
|
||||
return vector;
|
||||
}
|
||||
set
|
||||
{
|
||||
this.INTERNAL_set_target(ref value);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06001EBD RID: 7869
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
private extern void INTERNAL_get_target(out Vector2 value);
|
||||
|
||||
// Token: 0x06001EBE RID: 7870
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
private extern void INTERNAL_set_target(ref Vector2 value);
|
||||
|
||||
// Token: 0x170006DC RID: 1756
|
||||
// (get) Token: 0x06001EBF RID: 7871
|
||||
// (set) Token: 0x06001EC0 RID: 7872
|
||||
public extern bool autoConfigureTarget
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
|
||||
// Token: 0x170006DD RID: 1757
|
||||
// (get) Token: 0x06001EC1 RID: 7873
|
||||
// (set) Token: 0x06001EC2 RID: 7874
|
||||
public extern float maxForce
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
|
||||
// Token: 0x170006DE RID: 1758
|
||||
// (get) Token: 0x06001EC3 RID: 7875
|
||||
// (set) Token: 0x06001EC4 RID: 7876
|
||||
public extern float dampingRatio
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
|
||||
// Token: 0x170006DF RID: 1759
|
||||
// (get) Token: 0x06001EC5 RID: 7877
|
||||
// (set) Token: 0x06001EC6 RID: 7878
|
||||
public extern float frequency
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user