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.AI
{
// Token: 0x020001C4 RID: 452
public enum NavMeshBuildSourceShape
{
// Token: 0x040004CD RID: 1229
Mesh,
// Token: 0x040004CE RID: 1230
Terrain,
// Token: 0x040004CF RID: 1231
Box,
// Token: 0x040004D0 RID: 1232
Sphere,
// Token: 0x040004D1 RID: 1233
Capsule,
// Token: 0x040004D2 RID: 1234
ModifierBox
}
}