update comment in DtCrowdNeighbour

This commit is contained in:
ikpil 2024-07-07 14:04:37 +09:00
parent 1894a56889
commit 76e5ade4d1
1 changed files with 3 additions and 6 deletions

View File

@ -5,12 +5,9 @@
/// @see dtCrowdAgent::neis, dtCrowd
public readonly struct DtCrowdNeighbour
{
public readonly DtCrowdAgent agent;
public readonly DtCrowdAgent agent; // < The index of the neighbor in the crowd.
public readonly float dist; // < The distance between the current agent and the neighbor.
/// < The index of the neighbor in the crowd.
public readonly float dist;
/// < The distance between the current agent and the neighbor.
public DtCrowdNeighbour(DtCrowdAgent agent, float dist)
{
this.agent = agent;