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
+182
View File
@@ -0,0 +1,182 @@
using System;
using System.Runtime.CompilerServices;
using UnityEngine.Scripting;
namespace UnityEngine
{
// Token: 0x02000242 RID: 578
[RequireComponent(typeof(Transform), typeof(MeshRenderer))]
[NativeClass("TextRenderingPrivate::TextMesh")]
public sealed class TextMesh : Component
{
// Token: 0x17000941 RID: 2369
// (get) Token: 0x06002786 RID: 10118
// (set) Token: 0x06002787 RID: 10119
public extern string text
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
// Token: 0x17000942 RID: 2370
// (get) Token: 0x06002788 RID: 10120
// (set) Token: 0x06002789 RID: 10121
public extern Font font
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
// Token: 0x17000943 RID: 2371
// (get) Token: 0x0600278A RID: 10122
// (set) Token: 0x0600278B RID: 10123
public extern int fontSize
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
// Token: 0x17000944 RID: 2372
// (get) Token: 0x0600278C RID: 10124
// (set) Token: 0x0600278D RID: 10125
public extern FontStyle fontStyle
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
// Token: 0x17000945 RID: 2373
// (get) Token: 0x0600278E RID: 10126
// (set) Token: 0x0600278F RID: 10127
public extern float offsetZ
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
// Token: 0x17000946 RID: 2374
// (get) Token: 0x06002790 RID: 10128
// (set) Token: 0x06002791 RID: 10129
public extern TextAlignment alignment
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
// Token: 0x17000947 RID: 2375
// (get) Token: 0x06002792 RID: 10130
// (set) Token: 0x06002793 RID: 10131
public extern TextAnchor anchor
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
// Token: 0x17000948 RID: 2376
// (get) Token: 0x06002794 RID: 10132
// (set) Token: 0x06002795 RID: 10133
public extern float characterSize
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
// Token: 0x17000949 RID: 2377
// (get) Token: 0x06002796 RID: 10134
// (set) Token: 0x06002797 RID: 10135
public extern float lineSpacing
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
// Token: 0x1700094A RID: 2378
// (get) Token: 0x06002798 RID: 10136
// (set) Token: 0x06002799 RID: 10137
public extern float tabSize
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
// Token: 0x1700094B RID: 2379
// (get) Token: 0x0600279A RID: 10138
// (set) Token: 0x0600279B RID: 10139
public extern bool richText
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
// Token: 0x1700094C RID: 2380
// (get) Token: 0x0600279C RID: 10140 RVA: 0x0002D55C File Offset: 0x0002B75C
// (set) Token: 0x0600279D RID: 10141 RVA: 0x0002D57C File Offset: 0x0002B77C
public Color color
{
get
{
Color color;
this.INTERNAL_get_color(out color);
return color;
}
set
{
this.INTERNAL_set_color(ref value);
}
}
// Token: 0x0600279E RID: 10142
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
private extern void INTERNAL_get_color(out Color value);
// Token: 0x0600279F RID: 10143
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
private extern void INTERNAL_set_color(ref Color value);
}
}