This commit is contained in:
wrenge 2024-11-11 11:34:47 +03:00
parent 0f28fa26ec
commit 724be6f3b2
1 changed files with 1 additions and 1 deletions

View File

@ -2523,7 +2523,7 @@ namespace DotRecast.Detour
// int va = a * 3;
// int vb = b * 3;
float dx = verts[b].X - verts[a].X;
float dz = verts[b].Z - verts[a].X;
float dz = verts[b].Z - verts[a].Z;
hit.hitNormal = RcVec3f.Normalize(new RcVec3f(dz, 0, -dx));
return DtStatus.DT_SUCCESS;
}