Files
2026-06-04 11:42:34 +02:00

139 lines
3.6 KiB
C#

using System;
using System.Runtime.CompilerServices;
using UnityEngine.Scripting;
namespace UnityEngine
{
// Token: 0x02000082 RID: 130
public sealed class LODGroup : Component
{
// Token: 0x1700022B RID: 555
// (get) Token: 0x060008FC RID: 2300 RVA: 0x0000B184 File Offset: 0x00009384
// (set) Token: 0x060008FD RID: 2301 RVA: 0x0000B1A4 File Offset: 0x000093A4
public Vector3 localReferencePoint
{
get
{
Vector3 vector;
this.INTERNAL_get_localReferencePoint(out vector);
return vector;
}
set
{
this.INTERNAL_set_localReferencePoint(ref value);
}
}
// Token: 0x060008FE RID: 2302
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
private extern void INTERNAL_get_localReferencePoint(out Vector3 value);
// Token: 0x060008FF RID: 2303
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
private extern void INTERNAL_set_localReferencePoint(ref Vector3 value);
// Token: 0x1700022C RID: 556
// (get) Token: 0x06000900 RID: 2304
// (set) Token: 0x06000901 RID: 2305
public extern float size
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
// Token: 0x1700022D RID: 557
// (get) Token: 0x06000902 RID: 2306
public extern int lodCount
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
// Token: 0x1700022E RID: 558
// (get) Token: 0x06000903 RID: 2307
// (set) Token: 0x06000904 RID: 2308
public extern LODFadeMode fadeMode
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
// Token: 0x1700022F RID: 559
// (get) Token: 0x06000905 RID: 2309
// (set) Token: 0x06000906 RID: 2310
public extern bool animateCrossFading
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
// Token: 0x17000230 RID: 560
// (get) Token: 0x06000907 RID: 2311
// (set) Token: 0x06000908 RID: 2312
public extern bool enabled
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
// Token: 0x06000909 RID: 2313
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
public extern void RecalculateBounds();
// Token: 0x0600090A RID: 2314
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
public extern LOD[] GetLODs();
// Token: 0x0600090B RID: 2315 RVA: 0x0000B1B0 File Offset: 0x000093B0
[Obsolete("Use SetLODs instead.")]
public void SetLODS(LOD[] lods)
{
this.SetLODs(lods);
}
// Token: 0x0600090C RID: 2316
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
public extern void SetLODs(LOD[] lods);
// Token: 0x0600090D RID: 2317
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
public extern void ForceLOD(int index);
// Token: 0x17000231 RID: 561
// (get) Token: 0x0600090E RID: 2318
// (set) Token: 0x0600090F RID: 2319
public static extern float crossFadeAnimationDuration
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
set;
}
}
}