Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | 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 | 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 | |||
2021-08-22 | Fix 3d animations doesn't play | requizm | |
Add comment Fix ff | |||
2021-08-22 | Fix GraphEdit connection colors | Jummit | |
2021-08-22 | Fixed non-uniform scaling of normals | Duarte David | |
2021-08-22 | Merge pull request #50434 from QbieShay/particle-minmax | K. S. Ernest (iFire) Lee | |
Particle params are expressed as min-max rather than value+range AND separate axes scaling | |||
2021-08-22 | Merge pull request #51886 from Geometror/fix-layout-editor-file-dialog | Michael Alexsander | |
Fix ItemList layout (+EditorFileDialog) | |||
2021-08-22 | moved particle parameters to minmax and split scale axis | QbieShay | |
This commit adds quite a chunk of modifications to particles - particle (value + randomness) now use min and max instead - passing a curveXYZtexture is now possible and will scale particles per-axis - CPUParticle3D have an optional parameter to split the scale curve per-axis | |||
2021-08-22 | Merge pull request #51982 from reduz/fix-doctool-merging-when-signatures-change | Juan Linietsky | |
Fix doctool merges when method signatures don't match | |||
2021-08-22 | Merge pull request #51700 from Geometror/fix-color-picker | K. S. Ernest (iFire) Lee | |
Reimplement ColorPicker presets | |||
2021-08-22 | Merge pull request #51945 from yjh0502/fix-bazier-error | K. S. Ernest (iFire) Lee | |
Curve2D/Curve3D: exact linear interpolation | |||
2021-08-22 | Merge pull request #51975 from Jummit/consistent-graphedit-connections | K. S. Ernest (iFire) Lee | |
Make GraphEdit connections consistent on zoom | |||
2021-08-22 | Fix doctool merges when method signatures don't match | reduz | |
If methods signature did not match, documentation is not merged. This is a considerable source of annoyance for contributors and it happened as a result of #4533, otherwise the documentation for constructors would not be properly merged. This PR modifies the logic introduced to only do the signature test on constructors and operators (which are the only types of members that can repeat). | |||
2021-08-22 | Merge pull request #51970 from reduz/implement-gdvirtuals-everywhere | Juan Linietsky | |
Replace BIND_VMETHOD by new GDVIRTUAL syntax | |||
2021-08-22 | Fix multiview defines in tonemap shader | Bastiaan Olij | |
2021-08-22 | Replace BIND_VMETHOD by new GDVIRTUAL syntax | reduz | |
* New syntax is type safe. * New syntax allows for type safe virtuals in native extensions. * New syntax permits extremely fast calling. Note: Everything was replaced where possible except for `_gui_input` `_input` and `_unhandled_input`. These will require API rework on a separate PR as they work different than the rest of the functions. Added a new method flag METHOD_FLAG_OBJECT_CORE, used internally. Allows to not dump the core virtuals like `_notification` to the json API, since each language will implement those as it is best fits. | |||
2021-08-22 | Merge pull request #51979 from ↵ | Juan Linietsky | |
godotengine/revert-41850-cumulative-time_issue_6999 Revert "Add Node processing and physics processing cumulative (as opposed to delta) time" | |||
2021-08-22 | Revert "Add Node processing and physics processing cumulative (as opposed to ↵ | Juan Linietsky | |
delta) time" | |||
2021-08-22 | Make GraphEdit connections consistent on zoom | Jummit | |
2021-08-22 | Merge pull request #51965 from theoway/fix_node_arranger_origin_bug | K. S. Ernest (iFire) Lee | |
Fixes position offset of node groups set by arrange_nodes() in GraphEdit | |||
2021-08-22 | Merge pull request #51952 from Jummit/refactor-graphedit-connections | K. S. Ernest (iFire) Lee | |
Refactor GraphEdit connections | |||
2021-08-22 | Merge pull request #41850 from MohammadKhashashneh/cumulative-time_issue_6999 | Hugo Locurcio | |
Add Node processing and physics processing cumulative (as opposed to delta) time | |||
2021-08-22 | Merge pull request #37260 from Calinou/define-minimum-window-size | Hugo Locurcio | |
Define a default minimum window size to workaround rendering issues | |||
2021-08-22 | Merge pull request #47673 from Calinou/improve-editor-window-title | Hugo Locurcio | |
Improve the editor window title for better usability | |||
2021-08-22 | Merge pull request #36872 from Calinou/default-stretch-aspect-expand | Hugo Locurcio | |
Use the `keep` stretch aspect by default | |||
2021-08-22 | Define a default minimum window size to workaround rendering issues | Hugo Locurcio | |
The minimum window size can still be set to `Vector2(0, 0)` in a script if needed. This closes #37242. | |||
2021-08-22 | Fixes position offset of node groups set by arrange_nodes() in GraphEdit | Umang Kalra | |
2021-08-21 | Merge pull request #51919 from raulsntos/csharp-renames | Aaron Franke | |
Rename C# string extensions to follow GDScript | |||
2021-08-21 | Merge pull request #51958 from requizm/fix/37772 | Hugo Locurcio | |
Fix camera override not working | |||
2021-08-21 | Refactor GraphEdit connections | Jummit | |
Remove duplicate bezier code and use Curve instead. Add an overridable method for retrieving the points of a connection line, which makes it posible to create custom connections lines. | |||
2021-08-21 | Fix camera override not working | requizm | |
2021-08-21 | Merge pull request #51953 from mbrlabs/android-vibration | Fredia Huya-Kouadio | |
Check if vibration duration is > 0 on Android | |||
2021-08-21 | Check if vibration duration is > 0 on Android | Marcus Brummer | |
2021-08-21 | Remove redundant assignments. | Anilforextra | |
Use used_in_transfer instead of used_in_compute twice. |