summaryrefslogtreecommitdiffstats
path: root/scene/2d/navigation_link_2d.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@87318a2fb7fffeb72adca934e31915be077c3d1fSpartan3222024-11-061-2/+2
|\
| * Compile certain `CanvasItem._edit_*()` functions with `DEBUG_ENABLED`Michael Alexsander2024-11-021-2/+2
| |
* | 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 super call in various `get_configuration_warnings` methodsA Thousand Ships2024-09-051-1/+1
|
* Add NavigationLink function to change navigation mapsmix82024-08-151-40/+93
| | | | Adds NavigationLink function to change navigation map.
* 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
|
* Fix missing NavigationLink property updates in constructorsmix82023-10-231-0/+12
| | | | Fixes missing NavigationLink property updates in constructor.
* Add NavigationServer API to enable regions and linkssmix82023-07-261-9/+1
| | | | Adds NavigationServer API to enable regions and links.
* Prevent unnecessary navigation map synchronizationssmix82023-05-111-13/+21
| | | | Prevents unnecessary navigation map synchronizations triggered by redundant calls to setters of e.g. region, link or map properties.
* Add NavigationLink helper functions for global positionssmix82023-02-141-0/+38
| | | | | | 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.
* Merge pull request #72115 from AThousandShips/clip_children_fixRémi Verschelde2023-01-301-0/+1
|\ | | | | | | Hide `clip_children` for some non-drawn CanvasItems
| * Hide clip_children for non-drawn CanvasItemsNinni Pipping2023-01-301-0/+1
| |
* | Rename Navigation uses of 'location' to 'position'smix82023-01-261-26/+52
|/ | | | 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
|
* Enable assigning an owner to navigation regions and linksJosh Jones2022-12-101-0/+2
| | | This allows users of the server APIs to get back the nodes that created certain regions and links.
* Change return type of `get_configuration_warnings` to `PackedStringArray`Marc Gilleron2022-09-191-2/+2
|
* handled edge case where navigation_link_2d is outside of the tree when ↵Trashtalk2022-09-071-0/+4
| | | | calling _edit_get_rect()
* Fix build after merge of #63479Rémi Verschelde2022-09-021-3/+3
|
* Added node for Navigation linksJosh Jones2022-08-261-0/+284