summaryrefslogtreecommitdiffstats
path: root/scene/3d/navigation_agent_3d.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@cb411fa960f0b7fdbd97dcdb4c90f9346360ee0eSpartan3222024-11-121-2/+2
|\
| * Core: Integrate `Ref::instantiate` where possibleThaddeus Crews2024-11-101-2/+2
| |
* | Merge commit godotengine/godot@c6c464cf9ae56e8b68620af65125dd980d0e8122Spartan3222024-11-021-0/+8
|\|
| * Add "Game" editor for better runtime debuggingMichael Alexsander2024-10-301-0/+8
| |
* | 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>
* Fix physics tick counterRicardo Buring2024-07-071-3/+0
| | | | | | The counter is now incremented at the start of a physics tick rather than at the end. Co-authored-by: lawnjelly <lawnjelly@gmail.com>
* Use Core/Scene stringnames consistentlykobewi2024-05-131-1/+1
|
* Add navigation path simplificationsmix82024-04-111-0/+26
| | | | Adds navigation path simplification for NavigationServer and NavigationAgent.
* Revert "Update Node::get_configuration_warnings signature"Rémi Verschelde2024-02-171-2/+2
| | | | This reverts commit d3852deaa450d77edb30df2bb1c77bd7bc45befc.
* Update Node::get_configuration_warnings signatureRedMser2024-02-081-2/+2
|
* Add getters to navigation serversNicholas Foo2023-12-191-2/+2
| | | | | | Add virtual functions and bind to navigation servers Implement getters Add documentation
* Merge pull request #82561 from ↵Yuri Sizov2023-12-141-85/+137
|\ | | | | | | | | | | ershn/fix_navigation_agents_is_target_reached_behavior Make `target_desired_distance` affect the navigation of `NavigationAgent2D/3D`
| * Make target_desired_distance affect the navigation of NavigationAgent2D/3DErshn2023-11-291-85/+137
| | | | | | | | When the target is reachable, stop the navigation only when the target is reached.
* | Merge pull request #83814 from smix8/navagent_propertiesRémi Verschelde2023-12-041-6/+8
|\ \ | |/ |/| | | Fix missing NavigationAgent property updates in constructor
| * Fix missing NavigationAgent property updates in constructorsmix82023-10-231-6/+8
| | | | | | | | Fixes missing NavigationAgent property updates in constructor.
* | Solve race condition between AThousandShips and Akiensmix82023-10-211-5/+3
|/ | | | Solves race condition between AThousandShips and Akien.
* Fix NavigationAgent3D stored y-axis velocity and make it optionalsmix82023-10-211-1/+26
| | | | Fixes NavigationAgent3D stored y-axis velocity and makes it optional.
* [Scene,Main] Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicableA Thousand Ships2023-09-121-2/+2
|
* Merge pull request #78939 from Scony/navi-crash-fixRémi Verschelde2023-07-031-1/+1
|\ | | | | | | Fix crash in `NavigationAgent3D`
| * Fix crash in 'NavigationAgent3D', fixes #78910Pawel Lampe2023-07-021-1/+1
| |
* | Merge pull request #78857 from smix8/navagent_pos_fix_4.xRémi Verschelde2023-07-031-1/+3
|\ \ | | | | | | | | | Fix NavigationAgent position not always updating
| * | Fix NavigationAgent position not always updatingsmix82023-06-301-1/+3
| |/ | | | | | | Fixes NavigationAgent position not always updating.
* / Fix NavigationAgent continues avoidance velocitysmix82023-06-291-0/+5
|/ | | | Fixes NavigationAgent continues avoidance velocity.
* Add agent pause mode to NavigationServersmix82023-06-181-12/+4
| | | | Adds agent pause mode to NavigationServer.
* Rework Navigation Avoidancesmix82023-05-101-60/+222
| | | | Rework Navigation Avoidance.
* Expose NavigationAgent path postprocessing and pathfinding algorithm optionssmix82023-03-251-0/+28
| | | | Exposes the path postprocessing and pathfinding algorithm options of the NavigationAgent internal NavigationPathQueryParameters object.
* Fix NavigationAgent3D debug path duplicated pointssmix82023-03-161-19/+21
| | | | Fixes duplicated points in NavigationAgent3D debug path.
* Tweak NavigationAgent3D defaultssmix82023-02-161-9/+9
| | | | Tweaks default values for NavigationAgent3D to work better out of the box within a new 3D project.
* Add NavigationLink helper functions for global positionssmix82023-02-141-0/+16
| | | | | | Adds helper functions to set the links start and end position with global positions or get them as global positions. Adds global start and end position for the navigation link to the 'link_reached' signal of NavigationAgent. That signal gets emitted when a navigation link waypoint is reached. Requires that 'owner' meta data is enabled on the NavigationAgent.
* Strip name prefix of navigation agent debug properties in the inspectorHaoyu Qiu2023-02-111-1/+1
|
* Merge pull request #72947 from DarkKilauea/nav-fix-avoidance-callbackRémi Verschelde2023-02-091-6/+5
|\ | | | | | | Fix missing avoidance updates when using same velocity
| * Fix missing avoidance updates when using same velocityJosh Jones2023-02-081-6/+5
| | | | | | | | | | | | When using avoidance, if you set the same velocity for the agent, you won't get an update from the avoidance system. This changes both the `set_target_position` and `set_velocity` setters to always accept user provided values, even if they are the same. This ensures that repathing and avoidance logic is always run when the user expects.
* | Fix NavigationAgent debug functions bindings in release buildssmix82023-02-081-3/+9
|/ | | | Fixes that certain NavigationAgent debug functions bindings were not available in release builds.
* Improve consistency of NavigationAgent settersJosh Jones2023-02-021-24/+114
|
* More codespell fixes, do more changes from previous ignore listRémi Verschelde2023-02-011-1/+1
|
* Add NavigationAgent Path Debug Visualizationsmix82023-01-311-0/+180
| | | | Adds path debug visuals for NavigationAgent2D, NavigationAgent3D and NavigationServer.
* Use Callable for Navigation Agent callbacksJosh Jones2023-01-271-3/+5
|
* Rename Navigation uses of 'location' to 'position'smix82023-01-261-16/+16
| | | | Contrary to the entire rest of the engine NavigationAgent's and NavigationLinks decided to deal with locations instead of positions.
* 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 safety-checks before some servers `free()`Adam Scott2022-12-291-0/+1
|
* Merge pull request #69688 from smix8/navagent_stop_origin_automove_4.xRémi Verschelde2022-12-211-1/+6
|\ | | | | Stop NavigationAgents without a target from moving to world origin
| * Stop NavigationAgents without a target from moving to world originsmix82022-12-061-1/+6
| | | | | | | | Stops NavigationAgents moving to the world origin without anyone telling them to do so.
* | Add support for emitting a signal when entering a NavLinkJosh Jones2022-12-171-4/+60
| |
* | Fix Navigation API abbreviations inconsistencysmix82022-12-171-12/+12
| | | | | | | | Schema for navigation to name user facing API with "navigation" without abbreviation and e.g. NavigationServer internals with abbr "nav".
* | Fix Navigation agent callback wild pointer crashsmix82022-12-121-3/+3
|/ | | | Fixes crash in sanitizer builds when callback agent or object are already freed.
* Merge pull request #65452 from timothyqiu/agent-targetRémi Verschelde2022-10-311-0/+2
|\ | | | | | | Make NavigationAgent `target_location` a property
| * Make NavigationAgent `target_location` a propertyHaoyu Qiu2022-10-271-0/+2
| |
* | Emit target_reached signal after state is updatedSam Briels2022-10-271-1/+1
|/
* Update NavigationAgent to use query_pathJosh Jones2022-09-281-9/+33
| | | | This paves the way for having agents respond to link traversal.