Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-03-07 | Merge pull request #58847 from KoBeWi/editor_settings_mess | Rémi Verschelde | |
2022-03-07 | Merge pull request #58208 from ↵ | Rémi Verschelde | |
MythTitans/fix-sphere-and-cylinder-shapes-normals-seam | |||
2022-03-07 | Merge pull request #58750 from Chaosus/vs_varyings | Rémi Verschelde | |
Add varying support to visual shaders | |||
2022-03-07 | Merge pull request #58719 from Chaosus/vs_builtins | Rémi Verschelde | |
Adds few more input/output built-ins to visual shader | |||
2022-03-07 | Merge pull request #58832 from reduz/uniform-set-cache | Rémi Verschelde | |
Add a UniformSet cache | |||
2022-03-06 | Merge pull request #58842 from IgorKordiukiewicz/save-as-scene-visual-feedback | Rémi Verschelde | |
Added visual feedback when drag and dropping from scene tree to filesystem | |||
2022-03-06 | Merge pull request #58839 from KoBeWi/access_creator | Rémi Verschelde | |
Improve some DirAccess usage | |||
2022-03-06 | Merge pull request #58827 from XPhyro/cs-deconstruct | Rémi Verschelde | |
Implement `Deconstruct` methods for C# vectors | |||
2022-03-06 | Merge pull request #58835 from vnen/gdscript-check-override-signature | Rémi Verschelde | |
GDScript: Check if method signature matches the parent | |||
2022-03-06 | Remove duplicate editor settings definitions | kobewi | |
2022-03-06 | Added visual feedback when drag and dropping from scene tree to file system | Igor Kordiukiewicz | |
2022-03-06 | Merge pull request #58834 from lawnjelly/bvh_fix_area_area4 | Rémi Verschelde | |
[4.x] BVH - Fix area-area collision regression | |||
2022-03-06 | GDScript: Check if method signature matches the parent | George 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 regression | lawnjelly | |
Minimal approach to fixing regression whereby static areas where not detect dynamic areas. | |||
2022-03-06 | Improve some DirAccess usage | kobewi | |
2022-03-06 | Add a UniformSet cache | reduz | |
* 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-06 | Merge pull request #58757 from strank/parent-signals | Rémi Verschelde | |
Add test cases for accessing parent elements from child class | |||
2022-03-06 | Merge pull request #58800 from rcorre/blender-nav | Rémi Verschelde | |
Disable blender-style transforms in freelook. | |||
2022-03-06 | Merge pull request #58783 from KoBeWi/change_in_peace | Rémi Verschelde | |
Fix color pickers closing in editor settings | |||
2022-03-06 | Merge 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-06 | Merge pull request #58805 from KoBeWi/meh_custom | Rémi Verschelde | |
Remove custom_* prefixes compatibility | |||
2022-03-06 | Implement `Deconstruct` methods for C# vectors | Berke Kocaoğlu | |
See https://docs.microsoft.com/en-us/dotnet/csharp/fundamentals/functional/deconstruct#user-defined-types | |||
2022-03-06 | Merge pull request #58813 from KoBeWi/reset_minsize | Rémi Verschelde | |
Remove set_as_minsize() | |||
2022-03-06 | Fixed issue where Extend Script option would show up even without script ↵ | Igor Kordiukiewicz | |
attached to the node | |||
2022-03-06 | Remove set_as_minsize() | kobewi | |
2022-03-06 | Merge pull request #58788 from reduz/rename-streamtexture | Rémi Verschelde | |
Rename StreamTexture* to CompressedTexture* | |||
2022-03-06 | Merge pull request #58803 from KoBeWi/a_bit_of_everything | Rémi Verschelde | |
Various code and documentation improvements | |||
2022-03-06 | Merge pull request #58806 from bruvzg/ts_multispace_word_brk | Rémi Verschelde | |
[TextServer] Improve word breaking when there are multiple spaces between words. | |||
2022-03-06 | Merge pull request #58799 from jmb462/fix-tab-disabled | Rémi Verschelde | |
Fix disabled tab can be enabled via rearranging inside TabContainer | |||
2022-03-06 | Merge pull request #58801 from KoBeWi/tabarrange | Rémi Verschelde | |
Change tabs_rearrange_group to property | |||
2022-03-05 | Various code and documentation improvements | kobewi | |
2022-03-05 | Remove custom_* prefixes compatibility | kobewi | |
2022-03-05 | [TextServer] Improve word breaking when there are multiple spaces between words. | bruvzg | |
2022-03-05 | Change tabs_rearrange_group to property | kobewi | |
2022-03-05 | Disable 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-05 | Fix disabled tab can be enabled via rearranging inside TabContainer | jmb462 | |
2022-03-05 | Rename 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-05 | Merge pull request #58785 from timothyqiu/ani-dup-nam | Rémi Verschelde | |
Fix animation resource name after duplication in editor | |||
2022-03-05 | Fix animation resource name after duplication | Haoyu Qiu | |
2022-03-05 | Fix color pickers closing in editor settings | kobewi | |
2022-03-05 | Merge pull request #53839 from EricEzaM/editor-settings-changed-settings | Rémi Verschelde | |
Added ability to get list of editor settings changed when saving editor settings. Optimised settings changed notification. | |||
2022-03-05 | Made use of EditorSettings 'settings changed' to optimise settings changed ↵ | Eric M | |
notifications. | |||
2022-03-05 | Added ability to retrieve array of changed settings changed when it is saved. | Eric M | |
2022-03-05 | Merge pull request #58773 from timothyqiu/file-dialog-filter-i18n | Rémi Verschelde | |
Make name of editor file dialog filters translatable | |||
2022-03-05 | Make name of editor file dialog filters translatable | Haoyu Qiu | |
2022-03-04 | Merge pull request #58770 from YeldhamDev/some_crumbles_left | Rémi Verschelde | |
Replace some bits of code left to work with the new `TabContainer` | |||
2022-03-04 | Merge pull request #58727 from fire-forge/EditorSpinSlider_label_color | Rémi Verschelde | |
Make EditorSpinSlider label color a theme property | |||
2022-03-04 | Merge pull request #58753 from YeldhamDev/tab_name_regression | Rémi Verschelde | |
Fix renaming `TabContainer` children not updating tab names when outside the tree | |||
2022-03-04 | Merge pull request #57630 from lawnjelly/bvh4_templated_checks | Rémi Verschelde | |
[4.x] BVH - Sync BVH with 3.x | |||
2022-03-04 | Replace some bits of code left to work with the new `TabContainer` | Michael Alexsander | |