Fight Arena and enemys new Demon

This commit is contained in:
szczuras4
2025-04-29 05:28:16 +02:00
parent df9528157e
commit f2f4e8b070
102 changed files with 19523 additions and 18077 deletions

View File

@@ -0,0 +1,11 @@
using UnityEngine;
using UnityEngine.AI;
public class NavMeshClearer : MonoBehaviour
{
public void ClearNavMesh()
{
NavMesh.RemoveAllNavMeshData();
Debug.Log("NavMesh zosta³ wyczyszczony!");
}
}