summaryrefslogtreecommitdiffstats
path: root/modules/navigation
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix crash when baking TileMap navigationGilles Roudière2024-05-271-1/+1
|
* Remove duplicated vertices after 3D NavigationMesh bakesmix82024-05-211-4/+22
| | | | Removes duplicated vertices that may exist on shared polygon corners after a ReCast navigation mesh bake.
* [Scene] Add SceneStringNames::pressedA Thousand Ships2024-05-141-2/+2
|
* [Core] Add `LocalVector::has` for convenienceA Thousand Ships2024-05-062-3/+3
|
* Fix TileMapLayer navmesh bakingGilles Roudière2024-05-022-104/+73
|
* Organize existing code for editor pluginsAaron Franke2024-04-271-1/+1
|
* Change 2D navigation mesh baking to use floating point coordinatessmix82024-04-231-48/+46
| | | | Replaces internal uses of Clipper2 integer structs to their floating point equivalents.
* Add navigation source geometry parser callbackssmix82024-04-198-1/+205
| | | | Adds navigation source geometry parser callbacks so that externals can hook their own geometry into the navigation mesh baking process.
* Move NavigationMeshSourceGeometryData(2D/3D) to the 2D/3D subfoldersAaron Franke2024-04-154-5/+4
|
* Use fmod for navigation mesh border size warningsmix82024-04-131-1/+1
| | | | Uses fmod for checking that navigation mesh border size matches the cell size as a multiple of cell size is also valid.
* Merge pull request #90508 from smix8/thread_bakeRémi Verschelde2024-04-123-3/+3
|\ | | | | | | Use threads for baking navigation mesh inside editor
| * Use threads for baking navigation mesh inside editorsmix82024-04-113-3/+3
| | | | | | | | Enables threaded navigation mesh baking inside the editor.
* | Add navigation path simplificationsmix82024-04-114-0/+142
|/ | | | Adds navigation path simplification for NavigationServer and NavigationAgent.
* Make 2D navigation mesh baking parse all TileMapLayerssmix82024-04-041-54/+90
| | | | Makes 2D navigation mesh baking parse all TileMapLayers.
* Add navigation baking crash prevention mechanismPawel Lampe2024-03-231-5/+8
|
* Add NavigationObstacle options to affect and carve navigation meshsmix82024-03-154-0/+198
| | | | Adds NavigationObstacle options to affect and carve navigation mesh.
* Disable all 3D nodes, physics, and resources when compiling without 3DAaron Franke2024-03-111-2/+3
|
* clipper2: Update to 1.3.0Jakub Marcowski2024-03-011-2/+2
|
* Remove self includes in some filesblackbird8062024-02-271-1/+0
|
* Split monolithic physics class filessmix82024-02-272-2/+2
| | | | Splits monolithic physics class files.
* Move 3D-only resources to their own folderAaron Franke2024-02-261-10/+10
|
* Move 2D-only resources to their own folderAaron Franke2024-02-261-5/+5
|
* Move 3D-only navigation code to its own subfolderAaron Franke2024-02-268-156/+158
|
* Move 2D-only navigation code to its own subfolderAaron Franke2024-02-266-6/+7
|
* [Navigation] Add some missing compile checksA Thousand Ships2024-02-224-0/+16
|
* Improve NavigationServer NavMap sync error msgssmix82024-02-221-5/+19
| | | | Improves NavigationServer NavMap sync error msgs.
* Add function to get navigation map iteration id from NavigationServersmix82024-02-2210-26/+36
| | | | Adds function to get navigation map iteration id from NavigationServer.
* Merge pull request #87959 from Scony/fix-navi-sync-errorsRémi Verschelde2024-02-124-4/+50
|\ | | | | | | Add means for fixing navmap synchronization errors
| * Add means for fixing navmap synchronization errorsPawel Lampe2024-02-114-4/+50
| |
* | Merge pull request #79577 from smix8/navmap_rwlock_4.xRémi Verschelde2024-02-122-5/+30
|\ \ | |/ |/| | | Make navigation map spatial queries thread-safe
| * Make navigation map spatial queries thread-safesmix82024-02-062-5/+30
| | | | | | | | Makes navigation map spatial queries thread-safe by adding a readers–writer lock.
* | Replace error checks against `size` with `is_empty`A Thousand Ships2024-02-091-1/+1
| |
* | Merge pull request #87378 from smix8/navmesh_bordersizeRémi Verschelde2024-02-081-3/+9
|\ \ | | | | | | | | | Add NavigationMesh `border_size` property for tile baking
| * | Add NavigationMesh border_size property for tile bakingsmix82024-01-191-3/+9
| | | | | | | | | | | | Adds NavigationMesh border_size property for tile baking.
* | | Merge pull request #87961 from smix8/navmesh2d_bordersizeRémi Verschelde2024-02-071-0/+38
|\ \ \ | | | | | | | | | | | | Add NavigationPolygon `border_size` property for tile baking
| * | | Add NavigationPolygon border_size property for tile bakingsmix82024-02-051-0/+38
| | |/ | |/| | | | | | | Adds NavigationPolygon border_size property for tile baking. Also adds baking Rect2 bounds.
* | | Merge pull request #87715 from Scony/add-is-bakingRémi Verschelde2024-02-078-12/+34
|\ \ \ | |/ / |/| | | | | Expose `is_baking` method in navigation servers and region nodes.
| * | Expose `is_baking` method in navigation servers and region nodes.Pawel Lampe2024-02-058-12/+34
| |/
* / Remove unnecessary `this->` expressionsA Thousand Ships2024-01-291-1/+1
|/
* Fix various spelling errorsRobert Yevdokimov2024-01-041-2/+2
|
* Add getters to navigation serversNicholas Foo2023-12-194-4/+244
| | | | | | Add virtual functions and bind to navigation servers Implement getters Add documentation
* Merge pull request #85253 from ↵Yuri Sizov2023-12-191-1/+1
|\ | | | | | | | | | | sandygk/fix-reachable-polygon-closest-to-end-point [Navigation] Do not use travel cost for minimum when re-selecting end point
| * Do not use travel cost for minimum when re-selecting end pointSandy Gutierrez2023-11-281-1/+1
| |
* | Move tile transforms handling cache to TileDataGilles Roudière2023-12-131-2/+12
| |
* | Navigation: Fix GCC 12.3 `-Wtype-limits` warningsRémi Verschelde2023-12-122-3/+3
| |
* | Add NavigationServer random point queriessmix82023-12-089-16/+228
| | | | | | | | Adds query functions to get random points on navigation mesh to the NavigationServer.
* | Merge pull request #84816 from Scony/add-obstacle-navserver-testsRémi Verschelde2023-12-041-1/+12
|\ \ | |/ |/| | | Fix memory leak in 'NavigationServer3D' involving static obstacles
| * Fix memory leak in 'NavigationServer3D' involving static obstaclesPawel Lampe2023-11-171-1/+12
| |
* | Fix NavigationObstacle heightsmix82023-11-131-0/+2
|/ | | | Fixes NavigationObstacle height.
* Fix NavigationObstacle elevationsmix82023-11-131-0/+2
| | | | FixesNavigationObstacle elevation.