Files
BH3/Assets/Scripts/Assembly-CSharp/MoleMole/DetourElement.cs
2025-08-13 09:26:42 +08:00

22 lines
297 B
C#

using UnityEngine;
namespace MoleMole
{
public class DetourElement
{
public uint id;
public Vector3 targetPosition;
public float disReachCornerThreshold;
public Vector3[] corners;
public bool isCompletePath;
public uint targetCornerIndex;
public float lastGetPathTime;
}
}