| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Adds point and segment queries for regions, e.g. closet point, point normal, or segment intersection.
|
|
|
|
| |
Adds navigation source geometry parser callbacks so that externals can hook their own geometry into the navigation mesh baking process.
|
| |
|
|
|
|
| |
Adds navigation path simplification for NavigationServer and NavigationAgent.
|
|
|
|
| |
Adds function to get navigation map iteration id from NavigationServer.
|
| |
|
|
|
|
|
|
| |
Add virtual functions and bind to navigation servers
Implement getters
Add documentation
|
|
|
|
| |
Adds query functions to get random points on navigation mesh to the NavigationServer.
|
|
|
|
| |
Adds 2D navigation mesh baking.
|
|
|
|
| |
Adds NavigationServer API to enable regions and links.
|
|
|
|
| |
Adds agent pause mode to NavigationServer.
|
|
|
|
| |
And ignore some false positives introduced by recent versions of codespell.
|
|
|
|
| |
Updates navigation obstacle API.
|
|
|
|
| |
Makes navigation mesh edge connections optional.
|
|
|
|
| |
Rework Navigation Avoidance.
|
|
|
|
| |
Fixes that some NavigationServer internals still used float instead of real_t in some parts.
|
|
|
|
| |
Fixes that navigation debug was not toggleable in script while even the docs mentioned it.
|
|
|
|
| |
Fixes that NavigationRegion2D and TileMap debug visuals ignored more or less half the ProjectSetting. E.g. random color could not be disabled, edges did not display.
|
| |
|
|
|
|
| |
Adds path debug visuals for NavigationAgent2D, NavigationAgent3D and NavigationServer.
|
| |
|
|
|
|
| |
Contrary to the entire rest of the engine NavigationAgent's and NavigationLinks decided to deal with locations instead of positions.
|
|
|
| |
`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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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".
|
|
|
|
| |
Schema for navigation to name user facing API with "navigation" without abbreviation and e.g. NavigationServer internals with abbr "nav".
|
|
|
|
| |
Moves NavigationPolygon resource class from NavigationRegion2D file to a dedicated file in resource folder.
|
|\
| |
| |
| | |
Fix Navigation agent callback wild pointer crash
|
| |
| |
| |
| | |
Fixes crash in sanitizer builds when callback agent or object are already freed.
|
|/
|
| |
This allows users of the server APIs to get back the nodes that created certain regions and links.
|
|
|
|
| |
Adds NavigationPathQueryParameters objects that can be used with NavigationServer.query_path() to query a customized navigation path.
|
| |
|
|\ |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
NavigationAgent2D/3D.`neighbor_dist` -> `neighbor_distance` (also affects setters and getters)
NavigationServer2D/3D.`agent_set_neighbor_dist()` -> `agent_set_neighbor_distance()`
Also changes their parameters' names.
Doesn't affect "Agent.neighborDist_" in Agent.h
|
|/ |
|
|
|
|
| |
Adds debug functions to NavigationServer2D to mirror NavigationServer3D functions for 2D users.
|
|\ |
|
| |
| |
| |
| | |
Adds map_force_update() function to NavigationServer. This function immediately flushes the Navigationserver command queue and recalculates all navigationmeshes and region connections for a specific map.
|
| |
| |
| |
| | |
Adds a helper function to check if a world space position is currently owned by a navigation region.
|
|/
|
|
| |
Added new function that returns all created navigation map RIDs from the NavigationServer. The function returns both 2D and 3D created navigation maps as technically there is no distinction between them.
|
|
|
|
| |
Streamline Navigation layer function names.
|
|
|
|
| |
Add NavigationRegion costs for pathfinding.
|
|
|
|
|
|
| |
Utility functions for NavigationServer2D/3D to find missing RID information when working with Server API directly. e.g. from map to regions and agents, from agent or region to map, from region to map and agents and so on ....
Requirement to work with NavigationServer API exklusive without SceneTree nodes and when juggling agents and regions between multiple navigation maps.
|
|\ |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Each file in Godot has had multiple contributors who co-authored it over the
years, and the information of who was the original person to create that file
is not very relevant, especially when used so inconsistently.
`git blame` is a much better way to know who initially authored or later
modified a given chunk of code, and most IDEs now have good integration to
show this information.
|
|/
|
|
|
| |
This was removed by mistake in #47024, NavigationServer uses internal
mutability for thread safety, and removing `const` breaks the contract.
|
|
|
|
| |
Happy new year to the wonderful Godot community!
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Happy new year to the wonderful Godot community!
2020 has been a tough year for most of us personally, but a good year for
Godot development nonetheless with a huge amount of work done towards Godot
4.0 and great improvements backported to the long-lived 3.2 branch.
We've had close to 400 contributors to engine code this year, authoring near
7,000 commit! (And that's only for the `master` branch and for the engine code,
there's a lot more when counting docs, demos and other first-party repos.)
Here's to a great year 2021 for all Godot users 🎆
|
|
|
|
|
|
| |
-Removed FuncRef, since Callable makes it obsolete
-Removed int_types.h as its obsolete in c++11+
-Changed color names code
|