From f51f2479ba050c43be07419362d98be6ffcf31c3 Mon Sep 17 00:00:00 2001 From: ikpil Date: Mon, 8 Jan 2024 14:08:07 +0900 Subject: [PATCH] update comments --- src/DotRecast.Detour/DtNavMesh.cs | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/DotRecast.Detour/DtNavMesh.cs b/src/DotRecast.Detour/DtNavMesh.cs index 740f0a4..a10cf07 100644 --- a/src/DotRecast.Detour/DtNavMesh.cs +++ b/src/DotRecast.Detour/DtNavMesh.cs @@ -693,6 +693,7 @@ namespace DotRecast.Detour } } + /// Removes external links at specified side.V void UnconnectLinks(DtMeshTile tile, DtMeshTile target) { if (tile == null || target == null) @@ -735,6 +736,7 @@ namespace DotRecast.Detour } } + /// Builds external polygon links for a tile. void ConnectExtLinks(DtMeshTile tile, DtMeshTile target, int side) { if (tile == null) @@ -820,6 +822,7 @@ namespace DotRecast.Detour } } + /// Builds external polygon links for a tile. void ConnectExtOffMeshLinks(DtMeshTile tile, DtMeshTile target, int side) { if (tile == null) @@ -1058,11 +1061,7 @@ namespace DotRecast.Detour return false; } - /** - * Builds internal polygons links for a tile. - * - * @param tile - */ + /// Builds internal polygons links for a tile. void BaseOffMeshLinks(DtMeshTile tile) { if (tile == null)