summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-12-06Merge pull request #69446 from Chaosus/fix_quick_openRémi Verschelde
Fix new quick open dialog to be showed at the center of the screen
2022-12-06Merge pull request #69234 from Sauermann/fix-enter-focusRémi Verschelde
Fix focus after pressing Enter in EditorSpinSlider
2022-12-06Merge pull request #69648 from BastiaanOlij/fix_openxr_depthbuffer_submissionRémi Verschelde
Fix typo in OpenXR depth buffer submission
2022-12-06Merge pull request #69643 from Chaosus/vcs_rendering_fixRémi Verschelde
Fix incorrect rendering of vcs dialogs
2022-12-06Fix typo that resulted in left eye depth buffer being submitted for the ↵Bastiaan Olij
right eye
2022-12-06Path2D: Fix build issue after conflicts between #68860 and #69115Rémi Verschelde
2022-12-06Merge pull request #69642 from dalexeev/text-edit-fix-highlight-overlapsRémi Verschelde
Fix highlight overlaps in TextEdit
2022-12-06Merge pull request #67906 from groud/simpler_gdextension_configRémi Verschelde
Remove unnecessary checks when exporting gdextension binaries and allow using a prefix to auto-detect files
2022-12-06Merge pull request #69606 from red1939/bug/vscode_crashRémi Verschelde
Keep GDScriptAnalyzer alive for whole parse()
2022-12-06Merge pull request #69631 from timothyqiu/tile-proxy-rmbRémi Verschelde
Fix error when right clicking proxy list in TileProxiesManagerDialog
2022-12-06Merge pull request #69628 from Piralein/strong-treatmentRémi Verschelde
fix conversion of csharp attributes in code blocks
2022-12-06Merge pull request #69634 from clayjohn/GLES3-specRémi Verschelde
Clean up specialization constants in OpenGL scene renderer
2022-12-06Merge pull request #69633 from clayjohn/GLES3-texturesRémi Verschelde
Use internal texture name when setting texture uniform location in OpenGL renderer
2022-12-06Merge pull request #69639 from Chaosus/gds_fix_completionRémi Verschelde
Fix completion for the raw `get_node` call
2022-12-06Merge pull request #69620 from vonagam/fix-param-shadowRémi Verschelde
Fix incomplete shadowing of member properties by parameters
2022-12-06Merge pull request #50294 from Calinou/distance-fade-use-circular-fadeRémi Verschelde
Use circular fade instead of linear fade for distance fade
2022-12-06Merge pull request #55757 from Calinou/light-3d-tweak-shadow-biasRémi Verschelde
Tweak shadow bias defaults for DirectionalLight3D and OmniLight3D
2022-12-06Fix incorrect rendering of vcs dialogsYuri Rubinsky
2022-12-06Merge pull request #69608 from RumblingTurtle/blend-tree-new-node-fixRémi Verschelde
AnimationNodeBlendTreeEditor: Fix popup locations when creating nodes with dragging
2022-12-06Merge pull request #69618 from Sauermann/fix-parse-twiceRémi Verschelde
Fix that mouse-button-up event is parsed twice for drag-and-drop
2022-12-06Merge pull request #68838 from Mickeon/doc-peeves-3-strings-&-3-sticksRémi Verschelde
Overhaul String Documentation
2022-12-06Merge pull request #69581 from dsnopek/openxr-opengl-flip-screenRémi Verschelde
[opengl] Don't flip render target when blitting it to screen if it wasn't rendered upside down
2022-12-06Merge pull request #68860 from xiongyaohua/path3d_fishbonesRémi Verschelde
Draw fish bones for Path3D and Path2D in the Editor
2022-12-06Fix highlight overlaps in TextEditDanil Alexeev
2022-12-06Keep GDScriptAnalyzer alive for whole parse()Bartosz Bielecki
Analyzed data is allocated by Parser but kept as a reference in the cache which in turn is held by the Analyzer. If Analyzer goes away Parser is left with a tree of dangling references. Code is analogous to all other usages of Analyzer + Parser pair.
2022-12-06Fix completion for the raw `get_node` callYuri Rubinsky
2022-12-05Clean up specialization constants in OpenGL scene rendererclayjohn
Also add support for disabling omni and spot lights when not used
2022-12-05Use internal texture name when setting texture uniform location in OpenGL ↵clayjohn
renderer
2022-12-06Fix error when right clicking proxy list in TileProxiesManagerDialogHaoyu Qiu
2022-12-06Fix incomplete shadowing of member properties by parametersDmitrii Maganov
2022-12-05fix conversion of csharp attributes in code blocksHana
2022-12-05Use circular fade instead of linear fade for distance fadeHugo Locurcio
This makes distance fade look the same regardless of the camera angle, for all distance fade modes (Pixel Alpha, Pixel Dither, Object Dither). Distance fade now behaves like fog in this regard.
2022-12-05Tweak shadow bias defaults for DirectionalLight3D and OmniLight3DHugo Locurcio
- Increase DirectionalLight3D normal bias to 2.0 to reduce shadow acne at grazing angles. - Decrease OmniLight3D bias to 0.1 to reduce shadow peter-panning.
2022-12-05Overhaul String DocumentationMicky
2022-12-05Fix that mouse-button-up event is parsed twice for drag-and-dropMarkus Sauermann
Currently Input::get_singleton()->parse_input_event(mb); is called twice for mouse-button-up events when dropping in a different window on linuxbsd.
2022-12-05 AnimationNodeBlendTreeEditor: Fix popup locations when creating nodes with ↵Eduard Zalyaev
dragging Fixes #69413.
2022-12-05Merge pull request #68324 from AThousandShips/group_import_uidRémi Verschelde
Fix group reimport bug
2022-12-05Merge pull request #65101 from MrPhnix/range_value_bugRémi Verschelde
Bug: The range doesn't take into account the min value when setting the value.
2022-12-05Merge pull request #65228 from Mickeon/fix-packed-scene-unique-name-rootRémi Verschelde
Fix "Save Branch as Scene" storing root Node's `unique_name_in_owner`
2022-12-05Merge pull request #69594 from Mickeon/doc-peeves-read-a-dictionaryRémi Verschelde
Overhaul Dictionary Documentation
2022-12-05Merge pull request #68983 from Mickeon/doc-peeves-colorfulRémi Verschelde
Tweak Color Documentation
2022-12-05Merge pull request #67553 from Sauermann/fix-new-node-dialog-descriptionRémi Verschelde
Fix Updating New Node Dialog Description of Custom Nodes
2022-12-05Merge pull request #69563 from nyanpasu64/patch-1Rémi Verschelde
Fix burning CPU with udev disabled on Flatpak
2022-12-05Merge pull request #67123 from ↵Rémi Verschelde
Rindbee/improve-caret-draw-conditions-for-LineEdit Improve caret drawing conditions for `LineEdit`
2022-12-05Merge pull request #68231 from Mickeon/doc-you-cannot-get-rid-of-meRémi Verschelde
Add missing RID operator descriptions
2022-12-05Merge pull request #69602 from Rindbee/fix-string-modRémi Verschelde
Fix suppressed error message on error when using % format string
2022-12-05Merge pull request #69115 from xiongyaohua/curve2d_baking_refactorRémi Verschelde
Curve2d baking and sampling refactor
2022-12-05Merge pull request #69600 from Chaosus/fix_global_shader_crashRémi Verschelde
Fix setting a global shader variable in the project settings
2022-12-05Merge pull request #69343 from YuriSizov/core-missing-property-revert-gettersRémi Verschelde
Add missing public `property_*_revert` getters
2022-12-05Merge pull request #69444 from YuriSizov/classref-makerst-does-heavyliftingRémi Verschelde
Improve layout of generated class references RST pages