| Commit message (Collapse) | Author | Age | Files | Lines |
|\ |
|
| | |
|
| | |
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Credits:
Co-authored-by: Skogi <skogi.b@gmail.com>
Co-authored-by: Spartan322 <Megacake1234@gmail.com>
Co-authored-by: swashberry <swashdev@pm.me>
Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se>
Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com>
Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com>
Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com>
Co-authored-by: radenthefolf <radenthefolf@gmail.com>
Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com>
Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com>
Co-authored-by: decryptedchaos <nixgod@gmail.com>
Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com>
Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com>
Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com>
Co-authored-by: Mister Puma <MisterPuma80@gmail.com>
Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com>
Co-authored-by: SingleError <isaaconeoneone@gmail.com>
Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
|
| |
|
|
|
|
| |
Change navigation edge connection margin debug from a flat rectangle that looks like a polygon to a simple line edge.
|
|
|
|
| |
Fixes NavigationRegion3D not reacting when the main debug enabled property got changed as it only looked at the navigation mesh specific debug.
|
| |
|
|
|
|
| |
This reverts commit d3852deaa450d77edb30df2bb1c77bd7bc45befc.
|
|
|
|
| |
Fixes NavigationRegion errors from signal changes.
|
| |
|
| |
|
| |
|
|
|
|
| |
Fixes missing NavigationRegion property updates in constructor.
|
|
|
|
| |
This PR fixes issue #83364 by always registering the region when it enters the tree, and instead using region_set_enabled to control whether its enabled. The same logical changes have been applied to NavigationRegion2D.
|
|
|
|
| |
Adds multi-threaded NavMesh baking to NavigationServer.
|
|
|
|
| |
Moves navigation mesh baking to NavigationServer.
|
|
|
|
| |
Adds NavigationServer API to enable regions and links.
|
|\
| |
| |
| | |
Make NavigationRegion3D baking NavMesh on the main thread not finish deferred
|
| |
| |
| |
| | |
Makes NavigationRegion3D baking NavMesh on the main thread not finish deferred.
|
|/ |
|
|
|
|
| |
Adds NavigationRegion function to change navigation map.
|
|\
| |
| |
| | |
Fix for threaded NavigationMesh baking under new thread guards
|
| |
| |
| |
| | |
Fixes threaded NavigationMesh baking under new SceneTree thread guards that blocked the process.
|
|/
|
|
| |
Refactors NavigationRegion internals.
|
|
|
|
| |
Makes navigation mesh edge connections optional.
|
|
|
|
| |
Prevents unnecessary navigation map synchronizations triggered by redundant calls to setters of e.g. region, link or map properties.
|
|
|
|
| |
Rework Navigation Avoidance.
|
|\ |
|
| | |
|
| | |
|
|/
|
|
| |
Fixes NavigationMesh debug visuals for non-triangulated meshes.
|
|
|
| |
`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".
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Changes to the name of the `navmesh` and `navpoly` properties on
`NavigationRegion` caused navigation data to be lost on load.
This PR creates uses `_set`/`_get` to handle compatibility with the
older names on load, preserving the data.
Also fixes a typo on `get_vertices_per_polygon` in `NavigationMesh`,
and renames the property to remove the `polygon_` prefix which doesn't
match the setter/getter.
Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
|
|
|
|
| |
Schema for navigation to name user facing API with "navigation" without abbreviation and e.g. NavigationServer internals with abbr "nav".
|
|
|
| |
This allows users of the server APIs to get back the nodes that created certain regions and links.
|
|
|
|
|
| |
This also removes `OS::can_use_threads` from the public API since it's always
true.
|
| |
|
| |
|
|
|
|
|
| |
- removes / replaces leftovers from old navigation debug code
- cleanes SceneTree and ProjectSettings from old navigation debug
|
|
|
|
| |
Fixes double rendering of NavigationRegion3D debug mesh due to both 3DGizmo and runtime debug rendering the mesh at the same time.
|
|\ |
|
| | |
|
|/ |
|
|
|
|
|
|
|
| |
- Adds more customization options to ProjectSettings.
- Displays navregion edge connections and navigation polygon edges in editor and at runtime.
- Majority of debug code moved from SceneTree to NavigationServer.
- Removes the irritating debug MeshInstance child node from NavigationRegion3D and replaces it with direct RenderingServer API.
|
|
|
|
| |
Adds helper functions to work with the navigation layer bitmask.
|
|
|
|
| |
Streamline Navigation layer function names.
|
|
|
|
| |
Add NavigationRegion costs for pathfinding.
|