summaryrefslogtreecommitdiffstats
path: root/modules/gridmap/grid_map.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@f128f383e892865379cb8b14e7bcc9858efe2973Spartan3222024-11-271-0/+3
|\
| * Add ShadowCastingSetting to MeshLibrary / GridMap itemssmix82024-11-271-0/+3
| | | | | | | | Adds ShadowCastingSetting to MeshLibrary / GridMap items.
* | Merge commit godotengine/godot@cb411fa960f0b7fdbd97dcdb4c90f9346360ee0eSpartan3222024-11-121-4/+4
|\|
| * Core: Integrate `Ref::instantiate` where possibleThaddeus Crews2024-11-101-4/+4
| |
* | 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>
* Use Core/Scene stringnames consistentlykobewi2024-05-131-2/+0
|
* Add shorthand for using singleton string nameskobewi2024-05-111-2/+2
|
* GridMap: Fix physics_material propertyRicardo Buring2024-04-101-3/+16
| | | | | 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-2/+2
|
* Update deferred calls to use Callableskobewi2024-01-091-3/+1
|
* Update meshes list UI immeditely after setting mesh library in gridmapjsjtxietian2023-09-201-0/+1
|
* Ensure the visibility is updated when entering the treeChia-Hsiang Cheng2023-08-291-2/+3
|
* Cleanup MeshLibrary changed signalskobewi2023-08-191-0/+2
|
* Unify and streamline connecting to Resource changeskobewi2023-07-171-7/+6
|
* Rework Navigation Avoidancesmix82023-05-101-2/+2
| | | | Rework Navigation Avoidance.
* Fix GridMap free navigation RID error spamsmix82023-03-211-2/+6
| | | | Fixes GridMap free navigation RID error spam.
* Rework const on NavigationServer methodsJosh Jones2023-01-071-5/+5
| | | `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.
* 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/+9
|
* Merge pull request #70366 from ↵Rémi Verschelde2022-12-211-2/+2
|\ | | | | | | | | | | quentinguidee/refactoring/fix-double-get-singleton Fix double get_singleton()
| * Fix double get_singleton()Quentin Guidée2022-12-201-2/+2
| | | | | | | | Signed-off-by: Quentin Guidée <quentin.guidee@gmail.com>
* | Change GridMap navigation_layers to be per mesh_library itemsmix82022-12-201-36/+3
|/ | | | 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-3/+18
| | | | Adds property 'collision_priority' for all physics bodies of the entire GridMap.
* Fix Navigation API abbreviations inconsistencysmix82022-12-171-34/+34
| | | | Schema for navigation to name user facing API with "navigation" without abbreviation and e.g. NavigationServer internals with abbr "nav".
* 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.
* Fix MSVC warnings, rename shadowed variables, fix uninitialized values, ↵bruvzg2022-10-071-4/+4
| | | | change warnings=all to use /W4.
* Fix MSVC warnings C4324, C4389, C4456, and C4459Rémi Verschelde2022-09-281-1/+1
| | | | Part of #66537.
* Merge pull request #64193 from smix8/navigation_gridmap_navmap_change_4.xRémi Verschelde2022-09-081-2/+34
|\ | | | | | | Add GridMap function to change navigation map for baked navigation regions
| * Add GridMap function to change navigation map for baked navigation regionssmix82022-09-081-2/+34
| | | | | | | | | | 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.
* | Remove / Replace old Navigation Debug Visualizationsmix82022-09-071-2/+2
|/ | | | | - removes / replaces leftovers from old navigation debug code - cleanes SceneTree and ProjectSettings from old navigation debug
* Rename TileMap/GridMap.`world_to_map` and opposite to `local_to_map`Micky2022-09-051-6/+6
| | | | | | | | | | | 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-1/+178
|\ | | | | | | smix8/navigation_debug_gridmap_edgeconnections_4.x
| * Add Navigation Debug for GridMap edge connectionssmix82022-08-131-1/+178
| | | | | | | | 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-6/+6
| |
* | Expose Basis `set_orthogonal_index` method as a GridMap functionrafallus2022-08-201-3/+75
|/
* Add navigation layer bitmask helper functionssmix82022-06-191-1/+22
| | | | Adds helper functions to work with the navigation layer bitmask.
* Streamline Navigation layer function names.smix82022-06-151-4/+4
| | | | Streamline Navigation layer function names.
* Add suffixes to all nodes and resourcesFireForge2022-06-111-1/+1
|
* Fix GridMap Navigation transforms and debugsmix82022-06-081-1/+40
| | | | Fix GridMap navigation transforms and debug.
* Fix GridMap applying wrong NavigationRegion transformsmix82022-06-081-1/+1
| | | | Fix GridMap applying wrong NavigationRegion transform.
* Fix GridMap not adding custom mesh offsets to NavigationMesh generationsmix82022-05-241-1/+1
| | | | Fix GridMap not adding custom mesh offsets to NavigationMesh generation
* Use range iterators for RBSet in most casesAaron Record2022-05-191-6/+6
|
* Replace most uses of Map by HashMapreduz2022-05-161-10/+11
| | | | | | | | | | | | * 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-24/+0
|
* Merge pull request #58187 from jakobbouchard/notification-switch-chunk-cRémi Verschelde2022-02-161-2/+3
|\ | | | | Convert _notification methods to switch - Chunk C
| * Convert _notification methods to switch - Chunk CJakob Bouchard2022-02-161-2/+3
| |
* | Add GridMap.get_used_cells_by_itemHaoyu Qiu2022-02-161-0/+13
|/
* Fix GridMap memory leakHaoyu Qiu2022-02-081-0/+1
|