| 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>
|
|
|
|
| |
Both the tile map layers and the debug navigation canvas items did fight for the same z order causing a lot of flickering in certain situations.
|
|
|
|
| |
Fixes NavigationRegion2D debug not clearing canvas item on navigation mesh change.
|
|
|
|
| |
Improves NavigationRegion2D debug performance by replacing the canvas polygon and line commands with a static mesh.
|
|
|
|
| |
Removes experimental constrain_avoidance feature from NavigationRegion2D.
|
|
|
|
| |
Adds debug visual for NavigationRegion2D bake rect.
|
|
|
|
| |
This reverts commit d3852deaa450d77edb30df2bb1c77bd7bc45befc.
|
|
|
|
| |
Fixes NavigationRegion errors from signal changes.
|
| |
|
| |
|
| |
|
|\
| |
| |
| | |
Fix NavigationRegion2D transform update
|
| |
| |
| |
| | |
Fixes NavigationRegion2D transform update.
|
|/
|
|
| |
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 2D navigation mesh baking.
|
|
|
|
| |
Adds NavigationServer API to enable regions and links.
|
| |
|
|
|
|
| |
Adds NavigationRegion function to change navigation map.
|
|
|
|
| |
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 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.
|
| |
|
|
|
| |
`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".
|
|
|
|
| |
Moves NavigationPolygon resource class from NavigationRegion2D file to a dedicated file in resource folder.
|
|
|
| |
This allows users of the server APIs to get back the nodes that created certain regions and links.
|
|
|
|
| |
Adds additional information to the error msg when the convex partition fails due to invalid outline arrays.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
Affects a lot of classes. Very thoroughly checked signal connections and deferred calls to this method, add_do_method/add_undo_method calls, and so on.
Also renames the internal `_update_callback()` to `_redraw_callback()` for consistency.
Just a few comments have also been changed to say "redraw".
In CPUParticles2D, there was a private variable with the same name. It has been renamed to `do_redraw`.
|
|\ |
|
| | |
|
|/ |
|
|
|
|
|
|
|
| |
- 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.
|
|
|
|
| |
Expose get_mesh() for NavigationPolygon Resources.
|
|
|
|
| |
Updates NavigationRegion2D when the NavigationPolygon emits its 'changed' signal due to e.g. polygons altered by script.
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Map is unnecessary and inefficient in almost every case.
* Replaced by the new HashMap.
* Renamed Map to RBMap and Set to RBSet for cases that still make sense
(order matters) but use is discouraged.
There were very few cases where replacing by HashMap was undesired because
keeping the key order was intended.
I tried to keep those (as RBMap) as much as possible, but might have missed
some. Review appreciated!
|
|
|
|
| |
Add get_region_rid() to NavigationRegion2D and NavigationRegion3D
|