summaryrefslogtreecommitdiffstats
path: root/scene/3d/navigation_region_3d.h
Commit message (Collapse)AuthorAgeFilesLines
* Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
|
* Rebrand preambles to RedotDubhghlas McLaughlin2024-10-111-0/+2
| | | | | | | | | | | | | | | | | | | | | | 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>
* Revert "Update Node::get_configuration_warnings signature"Rémi Verschelde2024-02-171-1/+1
| | | | This reverts commit d3852deaa450d77edb30df2bb1c77bd7bc45befc.
* Fix NavigationRegion errors from signal changessmix82024-02-101-0/+1
| | | | Fixes NavigationRegion errors from signal changes.
* Update Node::get_configuration_warnings signatureRedMser2024-02-081-1/+1
|
* Expose `is_baking` method in navigation servers and region nodes.Pawel Lampe2024-02-051-0/+1
|
* Fix missing NavigationRegion property updates in constructorsmix82023-12-041-0/+2
| | | | Fixes missing NavigationRegion property updates in constructor.
* Add multi-threaded NavMesh baking to NavigationServersmix82023-08-071-2/+0
| | | | Adds multi-threaded NavMesh baking to NavigationServer.
* Add NavigationRegion function to change navigation mapsmix82023-06-151-0/+9
| | | | Adds NavigationRegion function to change navigation map.
* Refactor NavigationRegion internalssmix82023-06-151-1/+1
| | | | Refactors NavigationRegion internals.
* Make navigation mesh edge connections optionalsmix82023-05-111-0/+5
| | | | Makes navigation mesh edge connections optional.
* Prevent unnecessary navigation map synchronizationssmix82023-05-111-0/+2
| | | | Prevents unnecessary navigation map synchronizations triggered by redundant calls to setters of e.g. region, link or map properties.
* 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".
* Fix typo and ensure backwards compatibility for changed property namesJosh Jones2022-12-201-0/+5
| | | | | | | | | | | | | 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>
* 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".
* Improve consistancy of NavigationRegion settersJosh Jones2022-09-211-2/+2
|
* Change return type of `get_configuration_warnings` to `PackedStringArray`Marc Gilleron2022-09-191-1/+1
|
* Merge pull request #62601 from smix8/navigation_3d_debug_4.xRémi Verschelde2022-07-291-1/+12
|\
| * Add more detailed Navigation Debug Visualizationsmix82022-07-291-1/+12
| | | | | | | | | | | | | | - 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.
* | Code quality: Fix header guards consistencyRémi Verschelde2022-07-251-3/+3
|/ | | | | Adds `header_guards.sh` bash script, used in CI to validate future changes. Can be run locally to fix invalid header guards.
* Add navigation layer bitmask helper functionssmix82022-06-191-0/+3
| | | | Adds helper functions to work with the navigation layer bitmask.
* Streamline Navigation layer function names.smix82022-06-151-2/+2
| | | | Streamline Navigation layer function names.
* Add NavigationRegion costs for pathfindingsmix82022-06-061-0/+9
| | | | Add NavigationRegion costs for pathfinding.
* Add ability to `bake_navigation_mesh` off thread.Pawel Lampe2022-05-041-2/+2
| | | | | | | | | This feature makes it possible to workaround problems such as: - long baking time due to heavy synchronization when parsing geometry from mesh instances - crash when freeing `NavigationMeshInstance` while baking - errors when actively baking node tree is being detached from the scene tree
* Add get_region_rid() NavigationRegion2D and NavigationRegion3Dsmix82022-04-301-0/+2
| | | | Add get_region_rid() to NavigationRegion2D and NavigationRegion3D
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* Fix some unnecessary includesAaron Franke2021-08-131-1/+0
|
* Use Array for node configuration warningsNathan Franke2021-04-111-1/+1
| | | | Previously, the warnings were passed as a string and delimitation of which were hard coded at each implementation.
* Implement Navigation layersGilles Roudière2021-03-101-0/+3
|
* Remove Navigation2D/3D nodes, and move the navigation map to the world resourceGilles Roudière2021-03-101-3/+0
|
* Removed _change_notifyreduz2021-02-101-1/+2
| | | | | | -For inspector refresh, the inspector now detects if a property change by polling a few times per second and then does update the control if so. This process is very cheap. -For property list refresh, a new signal (property_list_changed) was added to Object. _change_notify() is replaced by notify_property_list_changed() -Changed all objects using the old method to the signal, or just deleted the calls to _change_notify(<property>) since they are unnecesary now.
* Modernize ThreadPedro J. Estébanez2021-01-291-1/+1
| | | | | | | | | - Based on C++11's `thread` and `thread_local` - No more need to allocate-deallocate or check for null - No pointer anymore, just a member variable - Platform-specific implementations no longer needed (except for the few cases of non-portable functions) - Simpler for `NO_THREADS` - Thread ids are now the same across platforms (main is 1; others follow)
* Update copyright statements to 2021Rémi Verschelde2021-01-011-2/+2
| | | | | | | | | | | | | | 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 🎆
* Add override keywords.Marcel Admiraal2020-07-101-2/+2
|
* Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocksRémi Verschelde2020-05-141-1/+0
| | | | | | | | | | | | | | Which means that reduz' beloved style which we all became used to will now be changed automatically to remove the first empty line. This makes us lean closer to 1TBS (the one true brace style) instead of hybridating it with some Allman-inspired spacing. There's still the case of braces around single-statement blocks that needs to be addressed (but clang-format can't help with that, but clang-tidy may if we agree about it). Part of #33027.
* Port member initialization from constructor to declaration (C++11)Rémi Verschelde2020-05-141-4/+4
| | | | | | | | | | Using `clang-tidy`'s `modernize-use-default-member-init` check and manual review of the changes, and some extra manual changes that `clang-tidy` failed to do. Also went manually through all of `core` to find occurrences that `clang-tidy` couldn't handle, especially all initializations done in a constructor without using initializer lists.
* Renamed 2D and 3D nodes to make their types explicitJuan Linietsky2020-03-271-0/+75
Fixes #30736.