summaryrefslogtreecommitdiff
path: root/YesCommander
diff options
context:
space:
mode:
Diffstat (limited to 'YesCommander')
-rw-r--r--YesCommander/Assets/Scripts/Navigation/Pathfinding.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/YesCommander/Assets/Scripts/Navigation/Pathfinding.cs b/YesCommander/Assets/Scripts/Navigation/Pathfinding.cs
index 68a43a1..c51fd18 100644
--- a/YesCommander/Assets/Scripts/Navigation/Pathfinding.cs
+++ b/YesCommander/Assets/Scripts/Navigation/Pathfinding.cs
@@ -1,16 +1,19 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
+using UnityEngine.AI;
namespace YC.Navigation
{
+ //https://docs.unity3d.com/Packages/com.unity.ai.navigation@2.0/manual/index.html
+
//寻路
public class Pathfinding : MonoBehaviour
{
+
-
}
}