Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-05-24 | Merge pull request #61377 from smix8/navigation_gridmap_custom_mesh_offsets_4.x | Rémi Verschelde | |
2022-05-24 | Fix GridMap not adding custom mesh offsets to NavigationMesh generation | smix8 | |
Fix GridMap not adding custom mesh offsets to NavigationMesh generation | |||
2022-05-24 | GDScript: Don't show redundant await warning on unknown types | George Marques | |
Also avoid it when the type is known to be a signal. | |||
2022-05-24 | Merge pull request #47665 from trollodel/tree_more_buttons_signals | Rémi Verschelde | |
2022-05-24 | Merge pull request #61345 from vnen/gdscript-lambda-issues | Rémi Verschelde | |
GDScript: A few fixes for lambda issues | |||
2022-05-23 | GDScript: Fix lambda captures in default argument values | George Marques | |
2022-05-23 | GDScript: Fix `if` after lambda being seen as ternary | George Marques | |
2022-05-23 | Fix typos with codespell | Rémi Verschelde | |
Using codespell 2.2-dev from current git. | |||
2022-05-23 | GDScript: Do not allow standalone lambdas | George Marques | |
They cannot be accessed in this case, so an error is shown to avoid misleading the uses, especially in case of named lambdas. | |||
2022-05-22 | Merge pull request #61017 from derammo/derammo_58121 | Rémi Verschelde | |
display of large help text in visual script | |||
2022-05-21 | display of large help text in visual script | derammo | |
implemented vertical scroller for help text in popup disabled broken positioning code | |||
2022-05-21 | Add the button pressed to some signals in Tree | trollodel | |
2022-05-20 | Add a new HashSet template | reduz | |
* Intended to replace RBSet in most cases. * Optimized for iteration speed | |||
2022-05-20 | Merge pull request #57660 from V-Sekai/gltf-extension-fixes | Rémi Verschelde | |
2022-05-20 | Improve gltf extension GLTFDocument api. | K. S. Ernest (iFire) Lee | |
2022-05-20 | Merge pull request #61213 from timothyqiu/csg-crash | Rémi Verschelde | |
Fix editor crash when opening scene with CSGMesh | |||
2022-05-20 | Fix editor crash when opening scene with CSGMesh | Haoyu Qiu | |
2022-05-19 | Use suffixes for units in nodes and resources | Aaron Franke | |
2022-05-19 | Merge pull request #61128 from smix8/navigation_agent_process_mode_4.x | Rémi Verschelde | |
2022-05-19 | Merge pull request #61142 from bruvzg/rtl_threaded | Rémi Verschelde | |
2022-05-19 | Use range iterators for RBSet in most cases | Aaron Record | |
2022-05-19 | [RTL] Add support for shaping in background thread. | bruvzg | |
2022-05-19 | Add dedicated macros for property name extraction | Haoyu Qiu | |
* Replace case-by-case extraction with PNAME & GNAME * Fix group handling when group hint begins with property name * Exclude properties that are PROPERTY_USAGE_NO_EDITOR * Extract missing ADD_ARRAY*, ADD_SUBGROUP* macros | |||
2022-05-18 | Fix noise offset not affecting domain warp | Hendrik Brucker | |
- also added domain warp to get_noise_1d | |||
2022-05-18 | Merge pull request #61025 from Chaosus/gds_fix_extend_crash | Rémi Verschelde | |
2022-05-18 | Merge pull request #61151 from akien-mga/rvo2-document-changes | Rémi Verschelde | |
2022-05-18 | Merge pull request #55201 from Scony/fix-unreachable-code-false-positive | Rémi Verschelde | |
2022-05-18 | Fix crash when extending inner class in GDScript | Yuri Rubinsky | |
2022-05-18 | rvo2: Sync with upstream commit bfc0486 | Rémi Verschelde | |
https://github.com/snape/RVO2-3D/commit/bfc048670a4e85066e86a1f923d8ea92e3add3b2 | |||
2022-05-18 | fix OpenXRAPI::is_extension_supported returning opposite result | Saenoe | |
2022-05-17 | Make Navigation Agents and Obstacles respect parent process mode | smix8 | |
Temporarily removes agent from navigation map when parent node cannot process due to SceneTree pause and process_mode property. Normal process_mode does not work as other agents would still avoid the paused agents because they were still active on the navigation map and the rvo world. Also fixes potential crash when region_get_map or agent_get_map is called while no map is set. | |||
2022-05-17 | Update HarfBuzz, ICU and FreeType. | bruvzg | |
HarfBuzz: Update to version 4.2.1 FreeType: Update to version 2.12.1 ICU: Update to version 71.1 | |||
2022-05-17 | Merge pull request #55134 from KoBeWi/script_pillow_or_something | Rémi Verschelde | |
Always soft-reload scripts | |||
2022-05-16 | Fix domain warp fractal type defaulting to the wrong value (and refactor ↵ | Hendrik Brucker | |
enum conversion) | |||
2022-05-16 | Merge pull request #58624 from dzil123/fix_update_gridmap_cursor | Rémi Verschelde | |
2022-05-16 | Merge pull request #61061 from smix8/navigation_mesh_sample_distance_range_4.x | Rémi Verschelde | |
2022-05-16 | Clamp NavigationMesh sample_distance above zero | smix8 | |
While default ReCast library has support for 0.0 'sample_distance' the Godot implementation does not an crashes. Previously Godot would set all sample_distance values below 0.9 to 0 which causes the crashes. This limits the sample_distance range selection to 0.1 - 16.0 and also clamps sample_distance that are below 0.1 before ReCast receives them. | |||
2022-05-16 | Merge pull request #61003 from vnen/gdscript-await-stack-fix | Rémi Verschelde | |
2022-05-16 | Merge pull request #60507 from bruvzg/textmesh | Rémi Verschelde | |
Implement TextMesh. | |||
2022-05-16 | Merge pull request #60463 from Geometror/improve-vs-1 | Rémi Verschelde | |
2022-05-16 | Merge pull request #61010 from derammo/visual_script_selector_paths | Rémi Verschelde | |
2022-05-16 | Merge pull request #60958 from smix8/navigation_server_rid_utility_4.x | Rémi Verschelde | |
2022-05-16 | Replace most uses of Map by HashMap | reduz | |
* 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! | |||
2022-05-13 | fixed path calculations in visual script selector | derammo | |
incorrect usage of lstrip was mangling file names | |||
2022-05-13 | GDScript: Fix stack manipulation for `await` | George Marques | |
The stack now contains three special addresses that should no be copied to the state, since it contains references that creates cycles. They can be recreated when the function is resumed. This commit also removes the clearing of stack from the GDScriptFunctionState destructor, since it should be cleared when the function exits. The state stack should only be cleared manually if the instance is freed before the state resumes (which is already being done). Otherwise this would destruct the stack twice, causing crashes. | |||
2022-05-13 | Merge pull request #60989 from Jojox/fix_gdscript_parser_enum | Rémi Verschelde | |
2022-05-13 | Implement TextMesh resource. | bruvzg | |
Apply simulated slant and embolden to the TextServer `gont_get_glyph_contours` results. | |||
2022-05-12 | Fix first value update | JoJoX | |
2022-05-12 | Merge pull request #60956 from macjuul/hide-mono-cmd-prompt | Rémi Verschelde | |
Prevent blank command prompts from spawning when building a mono project | |||
2022-05-12 | Add NavigationServer2D/3D API functions to find missing RID info | smix8 | |
Utility functions for NavigationServer2D/3D to find missing RID information when working with Server API directly. e.g. from map to regions and agents, from agent or region to map, from region to map and agents and so on .... Requirement to work with NavigationServer API exklusive without SceneTree nodes and when juggling agents and regions between multiple navigation maps. |