Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix copyright headers referring to Godot | Spartan322 | 2024-10-27 | 27 | -54/+54 |
| | |||||
* | Rebrand preambles to Redot | Spartan322 | 2024-10-13 | 27 | -0/+54 |
| | | | | | | | | | | | | | | | | | | | | | | | | (cherry picked from commit e8542b06acca3c1bdeee4b528411771f0819f084) 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> | ||||
* | NavigationServer3D.map_get_closest_point_to_segment - add an additional ↵ | Artem | 2024-06-29 | 1 | -0/+20 |
| | | | | | | | shortest distance check For a case when shortest distance is between some point located on a face's edge and some point located on a line segment. | ||||
* | Remove unused navigation polygon properties | smix8 | 2024-06-22 | 3 | -30/+0 |
| | | | | Removes unused navigation polygon properties, a leftover from the old Godot 3 days that used polygon center to polygon center distance for (rather inaccurate) pathfinding cost calculation. | ||||
* | Fix thread-use causing navigation polygon data corruption | smix8 | 2024-06-21 | 2 | -11/+5 |
| | | | | Fixes navigation polygon data corruption caused by thread-use that changed vertices or polygons while the navigation polygon was processed, e.g. by server region sync, navmesh baking or user thread updates. | ||||
* | Merge pull request #93407 from smix8/lock_this_geometry_up | Rémi Verschelde | 2024-06-21 | 2 | -13/+22 |
|\ | | | | | | | Fix thread-use causing navigation source geometry data corruption | ||||
| * | Fix thread-use causing navigation source geometry data corruption | smix8 | 2024-06-21 | 2 | -13/+22 |
| | | | | | | | | Fixes navigation source geometry data corruption caused by thread-use that changed vertices or indices while the source geometry data was used in a parsing process or read from by the navmesh baking. | ||||
* | | Fix thread use causing navigation mesh data corruption | smix8 | 2024-06-21 | 4 | -31/+44 |
|/ | | | | Fixes navigation mesh data corruption caused by thread use that changed vertices or polygons while the navigation mesh was processed, e.g. by server sync or baking. | ||||
* | Fixed closest edge and face check in ↵ | Artem | 2024-06-17 | 1 | -17/+13 |
| | | | | NavigationServer3D.map_get_closest_point_to_segment | ||||
* | Fix NavigationServer3D.get_closest_point_to_segment() with use_collision | Per Melin | 2024-06-07 | 1 | -1/+1 |
| | |||||
* | Fix crash when baking TileMap navigation | Gilles Roudière | 2024-05-27 | 1 | -1/+1 |
| | |||||
* | Remove duplicated vertices after 3D NavigationMesh bake | smix8 | 2024-05-21 | 1 | -4/+22 |
| | | | | Removes duplicated vertices that may exist on shared polygon corners after a ReCast navigation mesh bake. | ||||
* | [Scene] Add SceneStringNames::pressed | A Thousand Ships | 2024-05-14 | 1 | -2/+2 |
| | |||||
* | [Core] Add `LocalVector::has` for convenience | A Thousand Ships | 2024-05-06 | 2 | -3/+3 |
| | |||||
* | Fix TileMapLayer navmesh baking | Gilles Roudière | 2024-05-02 | 2 | -104/+73 |
| | |||||
* | Organize existing code for editor plugins | Aaron Franke | 2024-04-27 | 1 | -1/+1 |
| | |||||
* | Change 2D navigation mesh baking to use floating point coordinates | smix8 | 2024-04-23 | 1 | -48/+46 |
| | | | | Replaces internal uses of Clipper2 integer structs to their floating point equivalents. | ||||
* | Add navigation source geometry parser callbacks | smix8 | 2024-04-19 | 8 | -1/+205 |
| | | | | Adds navigation source geometry parser callbacks so that externals can hook their own geometry into the navigation mesh baking process. | ||||
* | Move NavigationMeshSourceGeometryData(2D/3D) to the 2D/3D subfolders | Aaron Franke | 2024-04-15 | 4 | -5/+4 |
| | |||||
* | Use fmod for navigation mesh border size warning | smix8 | 2024-04-13 | 1 | -1/+1 |
| | | | | Uses fmod for checking that navigation mesh border size matches the cell size as a multiple of cell size is also valid. | ||||
* | Merge pull request #90508 from smix8/thread_bake | Rémi Verschelde | 2024-04-12 | 3 | -3/+3 |
|\ | | | | | | | Use threads for baking navigation mesh inside editor | ||||
| * | Use threads for baking navigation mesh inside editor | smix8 | 2024-04-11 | 3 | -3/+3 |
| | | | | | | | | Enables threaded navigation mesh baking inside the editor. | ||||
* | | Add navigation path simplification | smix8 | 2024-04-11 | 4 | -0/+142 |
|/ | | | | Adds navigation path simplification for NavigationServer and NavigationAgent. | ||||
* | Make 2D navigation mesh baking parse all TileMapLayers | smix8 | 2024-04-04 | 1 | -54/+90 |
| | | | | Makes 2D navigation mesh baking parse all TileMapLayers. | ||||
* | Add navigation baking crash prevention mechanism | Pawel Lampe | 2024-03-23 | 1 | -5/+8 |
| | |||||
* | Add NavigationObstacle options to affect and carve navigation mesh | smix8 | 2024-03-15 | 4 | -0/+198 |
| | | | | Adds NavigationObstacle options to affect and carve navigation mesh. | ||||
* | Disable all 3D nodes, physics, and resources when compiling without 3D | Aaron Franke | 2024-03-11 | 1 | -2/+3 |
| | |||||
* | clipper2: Update to 1.3.0 | Jakub Marcowski | 2024-03-01 | 1 | -2/+2 |
| | |||||
* | Remove self includes in some files | blackbird806 | 2024-02-27 | 1 | -1/+0 |
| | |||||
* | Split monolithic physics class files | smix8 | 2024-02-27 | 2 | -2/+2 |
| | | | | Splits monolithic physics class files. | ||||
* | Move 3D-only resources to their own folder | Aaron Franke | 2024-02-26 | 1 | -10/+10 |
| | |||||
* | Move 2D-only resources to their own folder | Aaron Franke | 2024-02-26 | 1 | -5/+5 |
| | |||||
* | Move 3D-only navigation code to its own subfolder | Aaron Franke | 2024-02-26 | 8 | -156/+158 |
| | |||||
* | Move 2D-only navigation code to its own subfolder | Aaron Franke | 2024-02-26 | 6 | -6/+7 |
| | |||||
* | [Navigation] Add some missing compile checks | A Thousand Ships | 2024-02-22 | 4 | -0/+16 |
| | |||||
* | Improve NavigationServer NavMap sync error msgs | smix8 | 2024-02-22 | 1 | -5/+19 |
| | | | | Improves NavigationServer NavMap sync error msgs. | ||||
* | Add function to get navigation map iteration id from NavigationServer | smix8 | 2024-02-22 | 10 | -26/+36 |
| | | | | Adds function to get navigation map iteration id from NavigationServer. | ||||
* | Merge pull request #87959 from Scony/fix-navi-sync-errors | Rémi Verschelde | 2024-02-12 | 4 | -4/+50 |
|\ | | | | | | | Add means for fixing navmap synchronization errors | ||||
| * | Add means for fixing navmap synchronization errors | Pawel Lampe | 2024-02-11 | 4 | -4/+50 |
| | | |||||
* | | Merge pull request #79577 from smix8/navmap_rwlock_4.x | Rémi Verschelde | 2024-02-12 | 2 | -5/+30 |
|\ \ | |/ |/| | | | Make navigation map spatial queries thread-safe | ||||
| * | Make navigation map spatial queries thread-safe | smix8 | 2024-02-06 | 2 | -5/+30 |
| | | | | | | | | Makes navigation map spatial queries thread-safe by adding a readers–writer lock. | ||||
* | | Replace error checks against `size` with `is_empty` | A Thousand Ships | 2024-02-09 | 1 | -1/+1 |
| | | |||||
* | | Merge pull request #87378 from smix8/navmesh_bordersize | Rémi Verschelde | 2024-02-08 | 1 | -3/+9 |
|\ \ | | | | | | | | | | Add NavigationMesh `border_size` property for tile baking | ||||
| * | | Add NavigationMesh border_size property for tile baking | smix8 | 2024-01-19 | 1 | -3/+9 |
| | | | | | | | | | | | | Adds NavigationMesh border_size property for tile baking. | ||||
* | | | Merge pull request #87961 from smix8/navmesh2d_bordersize | Rémi Verschelde | 2024-02-07 | 1 | -0/+38 |
|\ \ \ | | | | | | | | | | | | | Add NavigationPolygon `border_size` property for tile baking | ||||
| * | | | Add NavigationPolygon border_size property for tile baking | smix8 | 2024-02-05 | 1 | -0/+38 |
| | |/ | |/| | | | | | | | Adds NavigationPolygon border_size property for tile baking. Also adds baking Rect2 bounds. | ||||
* | | | Merge pull request #87715 from Scony/add-is-baking | Rémi Verschelde | 2024-02-07 | 8 | -12/+34 |
|\ \ \ | |/ / |/| | | | | | Expose `is_baking` method in navigation servers and region nodes. | ||||
| * | | Expose `is_baking` method in navigation servers and region nodes. | Pawel Lampe | 2024-02-05 | 8 | -12/+34 |
| |/ | |||||
* / | Remove unnecessary `this->` expressions | A Thousand Ships | 2024-01-29 | 1 | -1/+1 |
|/ | |||||
* | Fix various spelling errors | Robert Yevdokimov | 2024-01-04 | 1 | -2/+2 |
| |