Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | 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. | |||
2022-05-12 | Fix signal completion in GDScript editor | Yuri Rubinsky | |
2022-05-12 | Fix blank command prompts spawning | Julian Mills | |
prevent certain mono actions from displaying empty command prompts. | |||
2022-05-12 | Use new HashMap implementation in the TextServer, and Font. | bruvzg | |
2022-05-12 | Add a new HashMap implementation | reduz | |
Adds a new, cleaned up, HashMap implementation. * Uses Robin Hood Hashing (https://en.wikipedia.org/wiki/Hash_table#Robin_Hood_hashing). * Keeps elements in a double linked list for simpler, ordered, iteration. * Allows keeping iterators for later use in removal (Unlike Map<>, it does not do much for performance vs keeping the key, but helps replace old code). * Uses a more modern C++ iterator API, deprecates the old one. * Supports custom allocator (in case there is a wish to use a paged one). This class aims to unify all the associative template usage and replace it by this one: * Map<> (whereas key order does not matter, which is 99% of cases) * HashMap<> * OrderedHashMap<> * OAHashMap<> | |||
2022-05-12 | Fix incorrect precedence of pow operator in GDScript | Yuri Rubinsky | |
2022-05-11 | Merge pull request #60945 from smix8/navmesh_bake_size_warning_4.x | Rémi Verschelde | |
Add Warning to NavigationMesh bake when source geometry is suspiciously big | |||
2022-05-11 | Add Warning to NavigationMesh bake when source geometry is suspiciously big | smix8 | |
Adds Warning when users try to bake a NavigationMesh with suspiciously big source geometry and small cellsizes as this baking process will likely fail or result in a NavigationMesh that will create serious pathfinding performance issues. | |||
2022-05-11 | Merge pull request #60949 from derammo/derammo_openxr_wrong_conditional | Rémi Verschelde | |
2022-05-11 | Merge pull request #60617 from BastiaanOlij/split_bokeh_effect | Rémi Verschelde | |
2022-05-11 | corrected conditional compile of OpenXR with/without opengl3 driver | derammo | |
2022-05-11 | Implement exponential operator (**) to GDScript/Expressions | Yuri Roubinsky | |
2022-05-11 | Merge pull request #59863 from cdemirer/fix-match-multiple-bind-single-pattern | Rémi Verschelde | |
Fix issues with multiple bind patterns in match statement | |||
2022-05-11 | Merge pull request #60229 from Dorodri/improve-gdscript-range-description | Rémi Verschelde | |
2022-05-11 | Merge pull request #60732 from CalebJohn/matching_signature_regression_test | Rémi Verschelde | |
2022-05-11 | Split out bokeh_dof and copy effects | Bastiaan Olij | |
2022-05-10 | [macOS / iOS] Fix text-to-speech build with older macOS / iOS SDK. | bruvzg | |
Add __has_include check for AVFAudio include. Add some explicit casts to avoid conflicts. Change all `include`s to `import`s for consistency. | |||
2022-05-10 | Merge pull request #60917 from akien-mga/ci-emscripten-3.1.10 | Rémi Verschelde | |
2022-05-10 | Fix warnings found by Emscripten 3.1.10 | Rémi Verschelde | |
Fix `-Wunused-but-set-variable`, `-Wunqualified-std-cast-call`, and `-Wliteral-range` warnings. | |||
2022-05-10 | [TextServer] Fix incorrect oversampled font scaling. | bruvzg | |
2022-05-06 | Rename `CSGPrimitive3D.invert_faces` to `flip_faces` | hoontee | |
2022-05-06 | Fix VisualScript export variables | kobewi | |
2022-05-06 | Merge pull request #59720 from Vitika9/itemlist-signals | Rémi Verschelde | |
2022-05-06 | Changed signals of ItemList | Vitika9 | |