diff options
| author | Poommetee Ketson | 2017-10-21 21:28:08 +0700 |
|---|---|---|
| committer | Poommetee Ketson | 2017-10-21 21:28:08 +0700 |
| commit | 9b634180aa9eefe079ecbf0ae1a1227d9555ba02 (patch) | |
| tree | 08b15cd1d783f5734ddb24fb30b01e9084eb3dd3 /editor/plugins | |
| parent | b302084395a6d7f3cc8e4102751ced29779f2ea2 (diff) | |
| download | godot-9b634180aa9eefe079ecbf0ae1a1227d9555ba02.tar.gz godot-9b634180aa9eefe079ecbf0ae1a1227d9555ba02.tar.zst godot-9b634180aa9eefe079ecbf0ae1a1227d9555ba02.zip | |
Refactor Fixed to Physics
Diffstat (limited to 'editor/plugins')
| -rw-r--r-- | editor/plugins/navigation_mesh_generator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/navigation_mesh_generator.cpp b/editor/plugins/navigation_mesh_generator.cpp index 86dc5c366..5d50e9c85 100644 --- a/editor/plugins/navigation_mesh_generator.cpp +++ b/editor/plugins/navigation_mesh_generator.cpp @@ -215,7 +215,7 @@ void NavigationMeshGenerator::_build_recast_navigation_mesh(Ref<NavigationMesh> ep->step(TTR("Eroding walkable area..."), 6); ERR_FAIL_COND(!rcErodeWalkableArea(&ctx, cfg.walkableRadius, *chf)); - ep->step(TTR("Partioning..."), 7); + ep->step(TTR("Partitioning..."), 7); if (p_nav_mesh->get_sample_partition_type() == NavigationMesh::SAMPLE_PARTITION_WATERSHED) { ERR_FAIL_COND(!rcBuildDistanceField(&ctx, *chf)); ERR_FAIL_COND(!rcBuildRegions(&ctx, *chf, 0, cfg.minRegionArea, cfg.mergeRegionArea)); |
