summaryrefslogtreecommitdiffstats
path: root/servers/navigation_server_3d.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Add navigation region point and segment queriessmix82024-09-101-0/+3
| | | | Adds point and segment queries for regions, e.g. closet point, point normal, or segment intersection.
* Extract navigation-related defaults to separate headerPawel Lampe2024-08-271-7/+8
|
* Add navigation obstacles to performance monitor statssmix82024-06-251-0/+1
| | | | Adds navigation obstacle count to navigation performance monitor.
* Add navigation source geometry parser callbackssmix82024-04-191-0/+3
| | | | 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-151-0/+2
|
* Add navigation path simplificationsmix82024-04-111-0/+2
| | | | Adds navigation path simplification for NavigationServer and NavigationAgent.
* Fix NavigationServer.set_debug_enabled() doing nothingsmix82024-04-041-0/+4
| | | | Fixes NavigationServer.set_debug_enabled() doing nothing because it was not updated for newer dirty flags.
* Add navigation baking crash prevention mechanismPawel Lampe2024-03-231-0/+1
|
* Disable all 3D nodes, physics, and resources when compiling without 3DAaron Franke2024-03-111-0/+2
|
* Add function to get navigation map iteration id from NavigationServersmix82024-02-221-0/+1
| | | | Adds function to get navigation map iteration id from NavigationServer.
* Add means for fixing navmap synchronization errorsPawel Lampe2024-02-111-0/+3
|
* Expose `is_baking` method in navigation servers and region nodes.Pawel Lampe2024-02-051-0/+1
|
* Update deferred calls to use Callableskobewi2024-01-091-11/+11
|
* Fix unlimited project option ranges that could cause crashes.G-Shadow2023-12-221-2/+2
|
* Add getters to navigation serversNicholas Foo2023-12-191-0/+20
| | | | | | Add virtual functions and bind to navigation servers Implement getters Add documentation
* Add NavigationServer random point queriessmix82023-12-081-0/+3
| | | | Adds query functions to get random points on navigation mesh to the NavigationServer.
* Make 3D editor gizmos and debug shapes ignore fogHugo Locurcio2023-09-271-0/+14
| | | | This makes them easier to see in their intended colors in scenes with fog.
* Add multi-threaded NavMesh baking to NavigationServersmix82023-08-071-0/+4
| | | | Adds multi-threaded NavMesh baking to NavigationServer.
* Add NavigationServer API to enable regions and linkssmix82023-07-261-0/+4
| | | | Adds NavigationServer API to enable regions and links.
* Merge pull request #78365 from smix8/ps_navmap_default_up_4.xYuri Sizov2023-07-251-0/+1
|\ | | | | | | Add ProjectSettings navigation map default up
| * Add ProjectSettings navigation map default upsmix82023-06-171-0/+1
| | | | | | | | Adds ProjectSettings navigation map default up.
* | Change 2D navigation ProjectSettings from integers to floatssmix82023-07-141-3/+3
| | | | | | | | Changes 2D navigation ProjectSettings from integers to floats.
* | Mark NavigationServer3D.region_bake_navigation_mesh() as deprecatedsmix82023-07-071-0/+2
| | | | | | | | Marks NavigationServer3D.region_bake_navigation_mesh() as deprecated.
* | Add missing default Callables for new NavigationServer geometry parse and ↵smix82023-06-251-2/+2
| | | | | | | | | | | | bake functions Adds missing default Callables for new NavigationServer geometry parse and bake functions.
* | Add agent pause mode to NavigationServersmix82023-06-181-0/+4
|/ | | | Adds agent pause mode to NavigationServer.
* Merge pull request #77412 from smix8/fix_threaded_navmesh_baking_4.xRémi Verschelde2023-06-151-0/+3
|\ | | | | | | Fix for threaded NavigationMesh baking under new thread guards
| * Fix for threaded NavigationMesh baking under new thread guardssmix82023-06-141-0/+3
| | | | | | | | Fixes threaded NavigationMesh baking under new SceneTree thread guards that blocked the process.
* | Fix `cell_height` for navigation meshessmix82023-06-131-0/+3
|/ | | | Fixes `cell_height` for navigation meshes.
* Update navigation obstacle APIsmix82023-06-121-0/+6
| | | | Updates navigation obstacle API.
* Make navigation mesh edge connections optionalsmix82023-05-111-0/+6
| | | | Makes navigation mesh edge connections optional.
* Rework Navigation Avoidancesmix82023-05-101-11/+265
| | | | Rework Navigation Avoidance.
* Fix NavigationMesh debug visuals for non-triangulated meshessmix82023-04-161-0/+1
| | | | Fixes NavigationMesh debug visuals for non-triangulated meshes.
* Merge pull request #75579 from smix8/make_navigation_projectsettings_basic_4.xRémi Verschelde2023-04-051-6/+6
|\ | | | | | | Make navigation ProjectSettings always visible
| * Make navigation ProjectSettings always visiblesmix82023-04-021-6/+6
| | | | | | | | Makes navigation ProjectSettings always visible.
* | Fix NavigationServer internals still using float instead of real_tsmix82023-03-071-2/+2
|/ | | | Fixes that some NavigationServer internals still used float instead of real_t in some parts.
* Fix navigation debug not toggleable in scriptssmix82023-02-161-16/+21
| | | | Fixes that navigation debug was not toggleable in script while even the docs mentioned it.
* Unbind NavigationServer3D.process()smix82023-02-141-1/+0
| | | | Unbinds NavigationServer3D.process().
* Allow compiling out the navigation moduleJosh Jones2023-02-091-14/+16
|
* Add NavigationAgent Path Debug Visualizationsmix82023-01-311-0/+98
| | | | Adds path debug visuals for NavigationAgent2D, NavigationAgent3D and NavigationServer.
* Create default World navigation maps on demand onlysmix82023-01-301-2/+8
| | | | Changes that the default navigation maps of World resources are only created on first use.
* Use Callable for Navigation Agent callbacksJosh Jones2023-01-271-1/+1
|
* Rename Navigation uses of 'location' to 'position'smix82023-01-261-4/+4
| | | | Contrary to the entire rest of the engine NavigationAgent's and NavigationLinks decided to deal with locations instead of positions.
* Add NavigationServer Performance Monitorsmix82023-01-081-0/+12
| | | | Adds Performance Monitor for NavigationServer3D.
* Rework const on NavigationServer methodsJosh Jones2023-01-071-5/+1
| | | `const` is used on all methods, even when they cause modification of the server. This reworks the methods of the server to only use `const` on method that don't change the state of the server.
* One Copyright Update to rule them allRémi Verschelde2023-01-051-29/+29
| | | | | | | | | | | | | | | | | | | | As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see".
* Add support for emitting a signal when entering a NavLinkJosh Jones2022-12-171-0/+3
|
* Fix Navigation API abbreviations inconsistencysmix82022-12-171-3/+3
| | | | Schema for navigation to name user facing API with "navigation" without abbreviation and e.g. NavigationServer internals with abbr "nav".
* Merge pull request #69629 from smix8/agent_wild_callback_pointer_4.xRémi Verschelde2022-12-121-1/+1
|\ | | | | | | Fix Navigation agent callback wild pointer crash
| * Fix Navigation agent callback wild pointer crashsmix82022-12-121-1/+1
| | | | | | | | Fixes crash in sanitizer builds when callback agent or object are already freed.
* | Enable assigning an owner to navigation regions and linksJosh Jones2022-12-101-0/+4
|/ | | This allows users of the server APIs to get back the nodes that created certain regions and links.