This commit is contained in:
2026-06-25 10:18:13 +07:00
parent 419558b0d3
commit 6ed87d22eb
38 changed files with 5634 additions and 3384 deletions

View File

@@ -0,0 +1,21 @@
#if UNITY_EDITOR
using UnityEditor;
using UnityEngine;
using UnityEngine.AI;
namespace Editors
{
public static class ForceCleanupNavMeshTool
{
[MenuItem("Tools/Force Cleanup NavMesh")]
public static void ForceCleanupNavMesh()
{
if (Application.isPlaying)
return;
NavMesh.RemoveAllNavMeshData();
Debug.Log("Force Cleanup NavMesh: Successfully removed all baked NavMesh data.");
}
}
}
#endif

View File

@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 0dbfda1e4acd6dd4c9791a3534ec5728