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
+21
View File
@@ -0,0 +1,21 @@
using System;
namespace UnityEngine
{
// Token: 0x020000C5 RID: 197
public enum ProceduralLoadingBehavior
{
// Token: 0x040001B7 RID: 439
DoNothing,
// Token: 0x040001B8 RID: 440
Generate,
// Token: 0x040001B9 RID: 441
BakeAndKeep,
// Token: 0x040001BA RID: 442
BakeAndDiscard,
// Token: 0x040001BB RID: 443
Cache,
// Token: 0x040001BC RID: 444
DoNothingAndCache
}
}