该函数用于获取NavMesh中节点的索引值。
const index = navMesh.getNodeIndex(node);
该函数返回一个整数值,表示NavMesh中指定节点的索引位置。 NavMesh是一个三角形网格,节点通常位于三角形的顶点处。
const index = navMesh.getNodeIndex(node); console.log('该节点的索引值是:' + index);