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
+63
View File
@@ -0,0 +1,63 @@
using System;
using System.Runtime.CompilerServices;
using UnityEngine.Scripting;
namespace UnityEngine
{
// Token: 0x02000185 RID: 389
public sealed class BoxCollider2D : Collider2D
{
// Token: 0x17000679 RID: 1657
// (get) Token: 0x06001DE4 RID: 7652 RVA: 0x00025078 File Offset: 0x00023278
// (set) Token: 0x06001DE5 RID: 7653 RVA: 0x00025098 File Offset: 0x00023298
public Vector2 size
{
get
{
Vector2 vector;
this.INTERNAL_get_size(out vector);
return vector;
}
set
{
this.INTERNAL_set_size(ref value);
}
}
// Token: 0x06001DE6 RID: 7654
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
private extern void INTERNAL_get_size(out Vector2 value);
// Token: 0x06001DE7 RID: 7655
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
private extern void INTERNAL_set_size(ref Vector2 value);
// Token: 0x1700067A RID: 1658
// (get) Token: 0x06001DE8 RID: 7656
// (set) Token: 0x06001DE9 RID: 7657
public extern float edgeRadius
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
// Token: 0x1700067B RID: 1659
// (get) Token: 0x06001DEA RID: 7658
// (set) Token: 0x06001DEB RID: 7659
public extern bool autoTiling
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
}
}