summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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-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-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.
2022-03-05Added ability to retrieve array of changed settings changed when it is saved.Eric M
2022-03-05Merge pull request #58773 from timothyqiu/file-dialog-filter-i18nRémi Verschelde
Make name of editor file dialog filters translatable
2022-03-05Make name of editor file dialog filters translatableHaoyu Qiu
2022-03-04Merge pull request #58770 from YeldhamDev/some_crumbles_leftRémi Verschelde
Replace some bits of code left to work with the new `TabContainer`
2022-03-04Merge pull request #58727 from fire-forge/EditorSpinSlider_label_colorRémi Verschelde
Make EditorSpinSlider label color a theme property
2022-03-04Merge pull request #58753 from YeldhamDev/tab_name_regressionRémi Verschelde
Fix renaming `TabContainer` children not updating tab names when outside the tree
2022-03-04Merge pull request #57630 from lawnjelly/bvh4_templated_checksRémi Verschelde
[4.x] BVH - Sync BVH with 3.x
2022-03-04Replace some bits of code left to work with the new `TabContainer`Michael Alexsander
2022-03-04Make EditorSpinSlider label color a theme propertyFireForge
2022-03-04Fix renaming `TabContainer` children not updating tab names when outside the ↵Michael Alexsander
tree
2022-03-04Merge pull request #58758 from timothyqiu/audio-effect-iconRémi Verschelde
Update audio effect icon when theme changes
2022-03-04Merge pull request #58759 from raulsntos/icon_color-editor-themeRémi Verschelde
Add `icon_normal_color` to Button in editor theme
2022-03-04Merge pull request #58734 from Calinou/tweak-render-timestamp-namesRémi Verschelde
Tweak render timestamp names for explicitness and consistency
2022-03-04Add icon_normal_color to Button in editor themeRaul Santos
2022-03-05Update audio effect icon when theme changesHaoyu Qiu
2022-03-04Add test cases for accessing parent elements from child classstrank
2022-03-04Merge pull request #58755 from ↵Rémi Verschelde
akien-mga/gcc-silence-Wstringop-overflow-false-positive
2022-03-04Merge pull request #58754 from akien-mga/gles3-maybe-uninitializedRémi Verschelde
2022-03-04Merge pull request #58717 from CrezyDud/masterRémi Verschelde