Add pathfinding support for NPCs climbing tables (#17415)

This commit is contained in:
Vordenburg
2023-07-28 02:37:29 -04:00
committed by GitHub
parent 494b9e5b93
commit 49f3f07e30
11 changed files with 114 additions and 15 deletions

View File

@@ -20,8 +20,13 @@ public enum PathFlags : byte
/// </summary>
Smashing = 1 << 2,
/// <summary>
/// Can we climb it like a table or railing.
/// </summary>
Climbing = 1 << 3,
/// <summary>
/// Can we open stuff that requires interaction (e.g. click-open doors).
/// </summary>
Interact = 1 << 3,
Interact = 1 << 4,
}