Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-08-24 | Fix RayShape collision detection | PouleyKetchoupp | |
One-way collision is disabled for both rigid bodies and character bodies. Kinematic margin is now applied to ray shapes to help getting consistent results in slopes and flat surfaces. Convex shapes don't return inverted normals when a segment test starts inside (raycasting will be made consistent in a separate patch). Ray shapes also discard contacts when fully contained inside a shape and when the contact direction is inverted, so the behavior is consistent with all shape types. Now they always separate only when intersecting the top of a shape (for downward rays). | |||
2021-08-24 | Restore RayShape as a regular shape type | PouleyKetchoupp | |
Partial revert from previously removing ray shapes completely, added back as a shape type but without the specific character controller code. | |||
2021-08-24 | Merge pull request #51904 from nekomatata/move-and-slide-fixes-3d | Camille Mohr-Daurat | |
Port recent move_and_slide fixes to 3D | |||
2021-08-24 | Port recent move_and_slide fixes to 3D | PouleyKetchoupp | |
Improves stop on slopes, sliding on walls and gravity handling by porting existing changes from CharacterBody2D to CharacterBody3D. Co-authored-by: fabriceci <fabricecipolla@gmail.com> | |||
2021-08-24 | Merge pull request #52001 from floppyhammer/fix-window-decor-size-on-windows | Max Hilbrunner | |
Fix window decoration size on Windows | |||
2021-08-24 | Merge pull request #52041 from Rubonnek/expose-simplify-path | Max Hilbrunner | |
Expose `String.simplify_path` | |||
2021-08-24 | Merge pull request #52067 from timothyqiu/rtl-cursor | Michael Alexsander | |
Make `RichTextLabel` honour default cursor shape property | |||
2021-08-24 | Merge pull request #52044 from Rubonnek/update-string-abs-rel-docs | Max Hilbrunner | |
Update documentation for is_absolute_path and is_rel_path | |||
2021-08-24 | Merge pull request #51999 from lyuma/set_surface_material | Juan Linietsky | |
Implement methods in EditorSceneImporterMesh, and add documentation. | |||
2021-08-24 | Make RichTextLabel honour default cursor shape property | Haoyu Qiu | |
2021-08-24 | Merge pull request #52000 from lyuma/set_editable_instance | Juan Linietsky | |
Make Node editable_instance methods available to GDScript | |||
2021-08-24 | Expose String.simplify_path | Wilson E. Alvarez | |
2021-08-23 | Make Node editable_instance methods available to GDScript | Lyuma | |
2021-08-24 | Merge pull request #47295 from omegachysis/script-bind-mutex | Ignacio Roldán Etcheverry | |
Fix race condition on `script_binding` in C# | |||
2021-08-23 | Merge pull request #52045 from reduz/expose-rid-creation-utilities | Juan Linietsky | |
Expose RID creation utilities. | |||
2021-08-23 | Expose RID creation utilities. | reduz | |
* Exposed as utility functions. * Not very useful for script, but vital for creating servers using native extensions. | |||
2021-08-23 | Update documentation for is_absolute_path and is_rel_path | Wilson E. Alvarez | |
2021-08-23 | Merge pull request #51751 from jeffrey-cochran/windforce | Camille Mohr-Daurat | |
Created an area-specific wind force that interacts with soft bodies | |||
2021-08-23 | Merge pull request #52036 from reduz/native-extension-argument-pointers | Juan Linietsky | |
Implement NativeExtension pointer arguments | |||
2021-08-23 | Implement NativeExtension pointer arguments | reduz | |
* Allows calling into native extensions directly with a pointer * Makes it easier to implement some APIs more efficiently * Appears with a "*" in the documentation for the argument. * Implementing the pointer handling is entirely up to the implementation, although the extension API provides some hint. * AudioStream has been implemented as an example, allowing to create NativeExtension based AudioStreams. | |||
2021-08-23 | Enabled area-specific wind forces | Jeffrey Cochran | |
2021-08-23 | Merge pull request #51791 from mhilbrunner/better-error-names | Max Hilbrunner | |
Improve error descriptions | |||
2021-08-23 | Merge pull request #37253 from KoBeWi/animass | Max Hilbrunner | |
Allow to load multiple animations at once | |||
2021-08-23 | Merge pull request #52021 from Calinou/rename-polygon-editor-settings | Hugo Locurcio | |
Rename polygon editor settings for better display in the Editor Settings | |||
2021-08-23 | Merge pull request #52019 from Calinou/doc-enetconnection-compression-mode | Hugo Locurcio | |
Document ENetConnection compression must match between client and server | |||
2021-08-23 | Merge pull request #51259 from nekomatata/fix-tilemap-one-way-collision | Hugo Locurcio | |
Fix one-way collision in Tilemap | |||
2021-08-23 | Merge pull request #51998 from SirQuartz/Schrödinger's-search-box | Hugo Locurcio | |
Fix quick open script results | |||
2021-08-23 | Merge pull request #52022 from KoBeWi/syntax_fixlighter | Hugo Locurcio | |
Restore syntax highlighting | |||
2021-08-23 | Restore syntax highlighting | kobewi | |
2021-08-23 | Rename polygon editor settings for better display in the Editor Settings | Hugo Locurcio | |
2021-08-23 | Improve error descriptions | Max Hilbrunner | |
2021-08-23 | Allow to load multiple animations at once | Tomasz Chabora | |
2021-08-23 | Document ENetConnection compression must match between client and server | Hugo Locurcio | |
2021-08-23 | Merge pull request #51971 from aaronfranke/https | Max Hilbrunner | |
Replace HTTP URLs with HTTPS for sites with HTTPS versions | |||
2021-08-23 | Merge pull request #51947 from AnilBK/redundant-assignments | Michael Alexsander | |
[cppcheck] Remove some redundant assignments. | |||
2021-08-23 | Merge pull request #51750 from jmb462/inputmap_action_suggestions | Max Hilbrunner | |
Adding InputMap action error suggestions for Input singleton (Fix #51634) | |||
2021-08-23 | Merge pull request #51803 from LoipesMas/master | lawnjelly | |
Add note about batching to Line2D's anti-aliasing | |||
2021-08-23 | Merge pull request #51983 from reduz/remove-bind-vmethod | Juan Linietsky | |
Entirely removes BIND_VMETHOD in favor of GDVIRTUAL | |||
2021-08-23 | Add note about batching to Line2D's anti-aliasing | LoipesMas | |
2021-08-23 | Entirely removes BIND_VMETHOD in favor of GDVIRTUAL | reduz | |
* `_gui_input`, `_input`, `_unhandled_input` and `_unhandled_key_input` are now regular C++ virutal functions. * Everything else converted to GDVIRTUAL * BIND_VMETHOD is gone, always use the new syntax from now on. Creating `_gui_input` method and using the binder to register events will no longer work, simply override the virtual function now. | |||
2021-08-23 | Fix window decoration size on Windows | floppyhammer | |
2021-08-22 | Implement set_surface_material and set_surface_name methods in ↵ | Lyuma | |
EditorSceneImporterMesh, and add documentation. | |||
2021-08-23 | Merge pull request #51980 from BastiaanOlij/fix_multiview_tonemap | Bastiaan Olij | |
Fix multiview defines in tonemap shader | |||
2021-08-22 | Replace HTTP links with HTTPS for sites with HTTPS versions | Aaron Franke | |
2021-08-22 | Merge pull request #51991 from requizm/fix/51990 | K. S. Ernest (iFire) Lee | |
Fix 3d animations doesn't play | |||
2021-08-22 | Merge pull request #49756 from ↵ | Michael Alexsander | |
Calinou/android-export-move-clear-previous-install-setting Move the Android "clear previous install" setting to Editor Settings | |||
2021-08-22 | Fix quick open script top result | Nicholas Huelin | |
This pull request fixes an issue where the top search result of the quick open script wouldn't be the most relevant when the first letter is typed. | |||
2021-08-22 | Merge pull request #38210 from benjarmstrong/wasapi-audio-output-latency | K. S. Ernest (iFire) Lee | |
Add support for variable output latency in WASAPI audio driver | |||
2021-08-22 | Merge pull request #51989 from drcd1/non-uniform-scale-fix | K. S. Ernest (iFire) Lee | |
Fixes non-uniform scaling of normals | |||
2021-08-22 | Merge pull request #51992 from Jummit/fix-connections-colors | K. S. Ernest (iFire) Lee | |
Fix GraphEdit connection colors |