scripts
This commit is contained in:
@@ -0,0 +1,90 @@
|
||||
using System;
|
||||
using System.Runtime.CompilerServices;
|
||||
using UnityEngine.Scripting;
|
||||
|
||||
namespace UnityEngine
|
||||
{
|
||||
// Token: 0x02000068 RID: 104
|
||||
public sealed class GUITexture : GUIElement
|
||||
{
|
||||
// Token: 0x170001B0 RID: 432
|
||||
// (get) Token: 0x060007CF RID: 1999 RVA: 0x0000A3CC File Offset: 0x000085CC
|
||||
// (set) Token: 0x060007D0 RID: 2000 RVA: 0x0000A3EC File Offset: 0x000085EC
|
||||
public Color color
|
||||
{
|
||||
get
|
||||
{
|
||||
Color color;
|
||||
this.INTERNAL_get_color(out color);
|
||||
return color;
|
||||
}
|
||||
set
|
||||
{
|
||||
this.INTERNAL_set_color(ref value);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x060007D1 RID: 2001
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
private extern void INTERNAL_get_color(out Color value);
|
||||
|
||||
// Token: 0x060007D2 RID: 2002
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
private extern void INTERNAL_set_color(ref Color value);
|
||||
|
||||
// Token: 0x170001B1 RID: 433
|
||||
// (get) Token: 0x060007D3 RID: 2003
|
||||
// (set) Token: 0x060007D4 RID: 2004
|
||||
public extern Texture texture
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
|
||||
// Token: 0x170001B2 RID: 434
|
||||
// (get) Token: 0x060007D5 RID: 2005 RVA: 0x0000A3F8 File Offset: 0x000085F8
|
||||
// (set) Token: 0x060007D6 RID: 2006 RVA: 0x0000A418 File Offset: 0x00008618
|
||||
public Rect pixelInset
|
||||
{
|
||||
get
|
||||
{
|
||||
Rect rect;
|
||||
this.INTERNAL_get_pixelInset(out rect);
|
||||
return rect;
|
||||
}
|
||||
set
|
||||
{
|
||||
this.INTERNAL_set_pixelInset(ref value);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x060007D7 RID: 2007
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
private extern void INTERNAL_get_pixelInset(out Rect value);
|
||||
|
||||
// Token: 0x060007D8 RID: 2008
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
private extern void INTERNAL_set_pixelInset(ref Rect value);
|
||||
|
||||
// Token: 0x170001B3 RID: 435
|
||||
// (get) Token: 0x060007D9 RID: 2009
|
||||
// (set) Token: 0x060007DA RID: 2010
|
||||
public extern RectOffset border
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user