summaryrefslogtreecommitdiffstats
path: root/modules/gridmap/grid_map.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>
* GridMap: Fix physics_material propertyRicardo Buring2024-04-101-0/+1
| | | | | Use computed bounce and friction, just like StaticBody3D already does. Also don't rebuild all internals just to set two floats on each body.
* Move 3D-only resources to their own folderAaron Franke2024-02-261-1/+1
|
* Remove GridMap navigation_layers leftoversmix82023-11-281-1/+0
| | | | Removes GridMap navigation_layers leftover.
* Unify and streamline connecting to Resource changeskobewi2023-07-171-0/+2
|
* 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".
* Change GridMap navigation_layers to be per mesh_library itemsmix82022-12-201-6/+1
| | | | Changes GridMap navigation_layers from a single bitmask for the entire GridMap to a bitmask for each item used in the mesh_library with a baked navmesh.
* Add GridMap collision_prioritysmix82022-12-191-1/+5
| | | | Adds property 'collision_priority' for all physics bodies of the entire GridMap.
* 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".
* Add GridMap function to change navigation map for baked navigation regionssmix82022-09-081-0/+4
| | | | | Adds function to change the navigation map for baked navigation regions. Before all cells with a baked navigation mesh were locked to the default navigation map of the world resource.
* Rename TileMap/GridMap.`world_to_map` and opposite to `local_to_map`Micky2022-09-051-2/+2
| | | | | | | | | | | For both TileMap and GridMap: - `world_to_map` -> `local_to_map` - `map_to_world` -> `map_to_local` Also changes any mention of "world" in this context to "local" to avoid future confusion. Finally, updates the docs of both methods for consistency. In particular, adding a note on how to convert the returned values from local to global coordinates and vice versa.
* Merge pull request #64173 from ↵Rémi Verschelde2022-09-011-0/+9
|\ | | | | | | smix8/navigation_debug_gridmap_edgeconnections_4.x
| * Add Navigation Debug for GridMap edge connectionssmix82022-08-131-0/+9
| | | | | | | | Adds navigation visual debug for GridMap edge connections that use baked navigationmesh with bake_navigation=true.
* | Replace Array return types with TypedArray 2kobewi2022-08-231-2/+2
| |
* | Expose Basis `set_orthogonal_index` method as a GridMap functionrafallus2022-08-201-0/+3
|/
* Add navigation layer bitmask helper functionssmix82022-06-191-1/+4
| | | | Adds helper functions to work with the navigation layer bitmask.
* Streamline Navigation layer function names.smix82022-06-151-1/+1
| | | | Streamline Navigation layer function names.
* Fix GridMap Navigation transforms and debugsmix82022-06-081-0/+1
| | | | Fix GridMap navigation transforms and debug.
* Add a new HashSet templatereduz2022-05-201-1/+1
| | | | | * Intended to replace RBSet in most cases. * Optimized for iteration speed
* Replace most uses of Map by HashMapreduz2022-05-161-6/+15
| | | | | | | | | | | | * 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!
* Remove `RES` and `REF` typedefs in favor of spelled out `Ref<>`Hugo Locurcio2022-05-031-1/+1
| | | | | | These typedefs don't save much typing compared to the full `Ref<Resource>` and `Ref<RefCounted>`, yet they sometimes introduce confusion among new contributors.
* Remove unimplemented set_clip() methodkobewi2022-03-021-8/+0
|
* Add GridMap.get_used_cells_by_itemHaoyu Qiu2022-02-161-0/+1
|
* Consider gridmap collisions in navigation bakerafallus2022-01-161-1/+3
|
* Merge pull request #56006 from KoBeWi/6yearslaterJFonS2022-01-061-0/+6
|\ | | | | Add physics material to GridMap
| * Add physics material to GridMapkobewi2021-12-171-0/+6
| |
* | Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
|/ | | | Happy new year to the wonderful Godot community!
* Uniformize layer names, script methods and documentationPouleyKetchoupp2021-08-121-4/+4
| | | | | | | - Back to 1-based layer names to make it clearer in editor UI - Layer bit accessors are renamed to layer value and 1-based too - Uniform errors and documentation in render and physics - Fix a few remaining collision_layer used in place of collision_mask
* Rename Transform to Transform3D in coreAaron Franke2021-06-031-3/+3
|
* Implement Navigation layersGilles Roudière2021-03-101-0/+4
|
* Remove Navigation2D/3D nodes, and move the navigation map to the world resourceGilles Roudière2021-03-101-2/+4
|
* Initialize class/struct variables with default values in modules/Rafał Mikrut2021-02-081-29/+25
|
* 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 🎆
* Update GridMap to use Vector3i instead of three intsAaron Franke2020-07-021-5/+14
|
* Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocksRémi Verschelde2020-05-141-9/+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.
* Renaming of servers for coherency.Juan Linietsky2020-03-271-2/+2
| | | | | | | | | | VisualServer -> RenderingServer PhysicsServer -> PhysicsServer3D Physics2DServer -> PhysicsServer2D NavigationServer -> NavigationServer3D Navigation2DServer -> NavigationServer2D Also renamed corresponding files.
* Renamed 2D and 3D nodes to make their types explicitJuan Linietsky2020-03-271-5/+5
| | | | Fixes #30736.
* - Integrated NavigationServer and Navigation2DServer.Andrea Catania2020-02-101-1/+1
| | | | | | | - Added Navigation Agents and Obstacles. - Integrated Collision Avoidance. This work has been kindly sponsored by IMVU.
* Update copyright statements to 2020Rémi Verschelde2020-01-011-2/+2
| | | | | | | | | | | Happy new year to the wonderful Godot community! We're starting a new decade with a well-established, non-profit, free and open source game engine, and tons of further improvements in the pipeline from hundreds of contributors. Godot will keep getting better, and we're looking forward to all the games that the community will keep developing and releasing with it.
* Remove deprecated theme property from GridMapTomasz Chabora2019-11-271-5/+0
|
* Update copyright statements to 2019Rémi Verschelde2019-01-011-2/+2
| | | | Happy new year to the wonderful Godot community!
* Rename instances of the word "theme" to "mesh_library" in GridMap and ↵Michael Alexsander Silva Dias2018-08-221-1/+6
| | | | MeshLibrary editors
* Fix inconsistencies and typos in argument namesPaolo Perkovic2018-02-011-1/+1
|
* Add missing copyright headers and fix formattingRémi Verschelde2018-01-051-0/+1
| | | | | | Using `misc/scripts/fix_headers.py` on all Godot files. Some missing header guards were added, and the header inclusion order was fixed in the Bullet module.
* Merge pull request #15120 from AndreaCatania/gridmRémi Verschelde2018-01-031-0/+16
|\ | | | | Added layer and mask in the gridmap node
| * Added layer and mask in the gridmap nodeAndreaCatania2017-12-281-0/+16
| |
* | Update copyright statements to 2018Rémi Verschelde2018-01-011-2/+2
|/ | | | Happy new year to the wonderful Godot community!
* Added baked light support for gridmaps.Juan Linietsky2017-12-181-1/+12
|
* Made built-in identifiers properly constant in shaders. Fixes #14449, closes ↵Juan Linietsky2017-12-151-0/+5
| | | | #14629