summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-03-07Merge pull request #58853 from V-Sekai/default-arg-valuesRémi Verschelde
2022-03-07Merge pull request #58761 from techiepriyansh/fix-multiple-instancesRémi Verschelde
2022-03-07Merge pull request #57812 from piiertho/bugfix/add-none-enum-global-constantsRémi Verschelde
2022-03-07Merge pull request #58854 from Chaosus/vs_varying_fixYuri Roubinsky
2022-03-07Restore building web platform by enclosing resolve_function_signature.K. S. Ernest (iFire) Lee
2022-03-07bugfix: bind core enums' none valuesPierre-Thomas Meisels
2022-03-07Merge pull request #58847 from KoBeWi/editor_settings_messRémi Verschelde
2022-03-07Merge pull request #58208 from ↵Rémi Verschelde
MythTitans/fix-sphere-and-cylinder-shapes-normals-seam
2022-03-07Fix _update_varyings call in visual shaderYuri Roubinsky
2022-03-07Merge pull request #58750 from Chaosus/vs_varyingsRémi Verschelde
Add varying support to visual shaders
2022-03-07Merge pull request #58719 from Chaosus/vs_builtinsRémi Verschelde
Adds few more input/output built-ins to visual shader
2022-03-07Merge pull request #58832 from reduz/uniform-set-cacheRémi Verschelde
Add a UniformSet cache
2022-03-06Merge pull request #58842 from IgorKordiukiewicz/save-as-scene-visual-feedbackRémi Verschelde
Added visual feedback when drag and dropping from scene tree to filesystem
2022-03-06Merge pull request #58839 from KoBeWi/access_creatorRémi Verschelde
Improve some DirAccess usage
2022-03-06Merge pull request #58827 from XPhyro/cs-deconstructRémi Verschelde
Implement `Deconstruct` methods for C# vectors
2022-03-06Merge pull request #58835 from vnen/gdscript-check-override-signatureRémi Verschelde
GDScript: Check if method signature matches the parent
2022-03-06Remove duplicate editor settings definitionskobewi
2022-03-06Added visual feedback when drag and dropping from scene tree to file systemIgor Kordiukiewicz
2022-03-06Merge pull request #58834 from lawnjelly/bvh_fix_area_area4Rémi Verschelde
[4.x] BVH - Fix area-area collision regression
2022-03-06GDScript: Check if method signature matches the parentGeorge Marques
To guarantee polymorphism, a method signature must be compatible with the parent. This checks if: 1. Return type is the same. 2. The subclass method takes at least the same amount of parameters. 3. The matching parameters have the same type. 4. If the subclass takes more parameters, all of the extra ones have a default value. 5. If the superclass has default values, so must have the subclass. There's a few test cases to ensure this holds up.
2022-03-06[4.x] BVH - Fix area-area collision regressionlawnjelly
Minimal approach to fixing regression whereby static areas where not detect dynamic areas.
2022-03-06Improve some DirAccess usagekobewi
2022-03-06fix same project opening mutliple times from project managerPriyansh Rathi
2022-03-06Add a UniformSet cachereduz
* Changed syntax usage for RD::Uniform to create faster with a single RID * Converted render pass setup to use this in clustered renderer to test. This is the first step into creating a proper uniform set cache system to simplify large parts of the codebase.
2022-03-06Merge pull request #58757 from strank/parent-signalsRémi Verschelde
Add test cases for accessing parent elements from child class
2022-03-06Merge pull request #58800 from rcorre/blender-navRémi Verschelde
Disable blender-style transforms in freelook.
2022-03-06Merge pull request #58783 from KoBeWi/change_in_peaceRémi Verschelde
Fix color pickers closing in editor settings
2022-03-06Merge pull request #58821 from ↵Rémi Verschelde
IgorKordiukiewicz/extend-script-popup-without-script Fixed issue where Extend Script option would show up even without script attached to the node
2022-03-06Merge pull request #58805 from KoBeWi/meh_customRémi Verschelde
Remove custom_* prefixes compatibility
2022-03-06Implement `Deconstruct` methods for C# vectorsBerke Kocaoğlu
See https://docs.microsoft.com/en-us/dotnet/csharp/fundamentals/functional/deconstruct#user-defined-types
2022-03-06Merge pull request #58813 from KoBeWi/reset_minsizeRémi Verschelde
Remove set_as_minsize()
2022-03-06Fixed issue where Extend Script option would show up even without script ↵Igor Kordiukiewicz
attached to the node
2022-03-06Remove set_as_minsize()kobewi
2022-03-06Merge pull request #58788 from reduz/rename-streamtextureRémi Verschelde
Rename StreamTexture* to CompressedTexture*
2022-03-06Merge pull request #58803 from KoBeWi/a_bit_of_everythingRémi Verschelde
Various code and documentation improvements
2022-03-06Merge pull request #58806 from bruvzg/ts_multispace_word_brkRémi Verschelde
[TextServer] Improve word breaking when there are multiple spaces between words.
2022-03-06Merge pull request #58799 from jmb462/fix-tab-disabledRémi Verschelde
Fix disabled tab can be enabled via rearranging inside TabContainer
2022-03-06Merge pull request #58801 from KoBeWi/tabarrangeRémi Verschelde
Change tabs_rearrange_group to property
2022-03-05Various code and documentation improvementskobewi
2022-03-05Remove custom_* prefixes compatibilitykobewi
2022-03-05[TextServer] Improve word breaking when there are multiple spaces between words.bruvzg
2022-03-05Change tabs_rearrange_group to propertykobewi
2022-03-05Disable blender-style tranforms in freelook.Ryan Roden-Corrent
It's common to bind instant_scale to s, which conflicts with WASD bindings in freelook mode. Fixes #58502.
2022-03-05Fix disabled tab can be enabled via rearranging inside TabContainerjmb462
2022-03-05Rename StreamTexture* to CompressedTexture*reduz
* Its not and will not be used for streaming. * Streaming will be implemented in 4.1 and it will work different. * It makes more sense to be called CompressedTexture since it imports and compresses texture files.
2022-03-05Merge pull request #58785 from timothyqiu/ani-dup-namRémi Verschelde
Fix animation resource name after duplication in editor
2022-03-05Fix animation resource name after duplicationHaoyu Qiu
2022-03-05Fix color pickers closing in editor settingskobewi
2022-03-05Merge pull request #53839 from EricEzaM/editor-settings-changed-settingsRémi Verschelde
Added ability to get list of editor settings changed when saving editor settings. Optimised settings changed notification.
2022-03-05Made use of EditorSettings 'settings changed' to optimise settings changed ↵Eric M
notifications.