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
+27
View File
@@ -0,0 +1,27 @@
using System;
using UnityEngine.Scripting;
namespace UnityEngine
{
// Token: 0x02000081 RID: 129
[UsedByNativeCode]
public struct LOD
{
// Token: 0x060008FA RID: 2298 RVA: 0x0000B160 File Offset: 0x00009360
public LOD(float screenRelativeTransitionHeight, Renderer[] renderers)
{
this.screenRelativeTransitionHeight = screenRelativeTransitionHeight;
this.fadeTransitionWidth = 0f;
this.renderers = renderers;
}
// Token: 0x040000CE RID: 206
public float screenRelativeTransitionHeight;
// Token: 0x040000CF RID: 207
public float fadeTransitionWidth;
// Token: 0x040000D0 RID: 208
public Renderer[] renderers;
}
}