Browse Source

method comment

Cedric Guillemet 6 years ago
parent
commit
cb0bf89bdd
2 changed files with 2 additions and 2 deletions
  1. 1 1
      src/Navigation/INavigationEngine.ts
  2. 1 1
      src/Navigation/Plugins/recastJSPlugin.ts

+ 1 - 1
src/Navigation/INavigationEngine.ts

@@ -14,7 +14,7 @@ export interface INavigationEnginePlugin {
 
     /**
      * Creates a navigation mesh
-     * @param mesh of all the geometry used to compute the navigation mesh
+     * @param meshes array of all the geometry used to compute the navigatio mesh
      * @param parameters bunch of parameters used to filter geometry
      */
     createMavMesh(meshes: Array<Mesh>, parameters: INavMeshParameters): void;

+ 1 - 1
src/Navigation/Plugins/recastJSPlugin.ts

@@ -49,7 +49,7 @@ export class RecastJSPlugin implements INavigationEnginePlugin {
 
     /**
      * Creates a navigation mesh
-     * @param mesh of all the geometry used to compute the navigatio mesh
+     * @param meshes array of all the geometry used to compute the navigatio mesh
      * @param parameters bunch of parameters used to filter geometry
      */
     createMavMesh(meshes: Array<Mesh>, parameters: INavMeshParameters): void {