summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-09-13C#: Fix csproj not synced on file move/removal from FS dockIgnacio Etcheverry
When NormalizePath was called with an absolute path (with drive letter) on Windows, it would prepend a file path separator to the path, e.g.: '\C:\Program Files\'. Apparently this was still accepted as a valid path by DotNetGlob and it stopped working when we switched to MSBuildGlob.
2020-09-12Merge pull request #41995 from Rubonnek/disconnect-item-rect-changedRémi Verschelde
Disconnect item_rect_changed removing a child of GraphEdit
2020-09-12Merge pull request #41841 from madmiraal/fix-bit-fieldsRémi Verschelde
Remove bit fields and use fixed width integers instead.
2020-09-12Merge pull request #42003 from Chaosus/vs_fix_modeYuri Roubinsky
Update shader graph if mode is changed
2020-09-12Update shader graph if mode is changedYuri Roubinsky
2020-09-11Disconnect item_rect_changed when removing a child of GraphEditWilson E. Alvarez
2020-09-11Merge pull request #41988 from ebrahimebrahim/masterRémi Verschelde
Clarify get_data Image method
2020-09-11Merge pull request #41986 from Chaosus/vs_fix_triplanar_textureYuri Roubinsky
Fix triplanar texture code generation in visual shaders
2020-09-11Fix triplanar texture code generation in visual shadersYuri Roubinsky
2020-09-11Clarify get_data Image methodEbrahim Ebrahim
2020-09-11Merge pull request #41976 from Xrayez/gdnative-tests-stringRémi Verschelde
Move GDNative `String` tests to respective module
2020-09-11Merge pull request #41955 from Chaosus/vs_performance_fix3Yuri Roubinsky
Improve performance of Add/Remove/Connect/Change nodes in visual shader
2020-09-11Merge pull request #41977 from madmiraal/fix-vector_hRémi Verschelde
Add missing reference to const T Vector::get().
2020-09-11Improve performance of Add/Remove/Connect/Change nodes in visual shaderYuri Roubinsky
2020-09-11Move GDNative `String` tests to respective moduleAndrii Doroshenko (Xrayez)
GDNative-specific tests moved out of main `tests/` folder into `modules/gdnative/tests`. Include path for GDNative headers are still hardcoded in `tests/SCsub`, but made conditional now. Also fixed test case tag typos. Co-authored-by: bruvzg <7645683+bruvzg@users.noreply.github.com>
2020-09-11Merge pull request #41965 from lyuma/shadow_attenuationRémi Verschelde
Fix ATTENUATION and implement SHADOW_ATTENUATION.
2020-09-11Merge pull request #41975 from madmiraal/remove-unused-variablesRémi Verschelde
Remove unused Python local variables.
2020-09-11Add missing reference to const T Vector::get().Marcel Admiraal
2020-09-11Remove unused Python local variables.Marcel Admiraal
2020-09-11doc: Sync classref with current sourceRémi Verschelde
Bind missing enums.
2020-09-11Remove bit fields and use fixed width integers instead.Marcel Admiraal
2020-09-11Merge pull request #41971 from nekomatata/richtextlabel-align-pointerRémi Verschelde
Fix RichTextLabel alignment for clickable regions
2020-09-11Fix RichTextLabel alignment for clickable regionsPouleyKetchoupp
Fixes #41006 (regression from #39164). The original alignment fix was limited to PROCESS_DRAW mode, which caused some discrepancies with PROCESS_POINTER mode. Now only PROCESS_CACHE is excluded with a condition a few lines above.
2020-09-10Fix ATTENUATION and implement SHADOW_ATTENUATION.Lyuma
2020-09-10Merge pull request #40973 from Paulb23/code_editRémi Verschelde
Add CodeEdit and TextEdit gutter system
2020-09-10Remove breakpoints from editor settingsPaulb23
2020-09-10Move safe line color into editorPaulb23
2020-09-10Move ConnectionGutter to editor code_editorPaulb23
2020-09-10Add folding gutter to code_editPaulb23
2020-09-10Add main_gutter (breakpoints, bookmarks, execution lines) to code_editPaulb23
2020-09-10Changed line_edited_from(from) to lines_edit_from(from, to)Paulb23
2020-09-10Added Line numbers to CodeEditPaulb23
2020-09-10Added gutter system to TextEditPaulb23
2020-09-10Add and convert editor to use CodeEditPaulb23
2020-09-10Merge pull request #41957 from skyace65/SpriteFramesRémi Verschelde
Improve SpriteFrames get_animation_loop description
2020-09-10Improve SpriteFrames get_animation_loop descriptionskyace65
2020-09-10Merge pull request #41954 from Calinou/raycast-rename-cast-toRémi Verschelde
Rename RayCast's `cast_to` property to `target_position`
2020-09-10Rename RayCast's `cast_to` property to `target_position`Hugo Locurcio
`cast_to` is sometimes mistaken as a method rather than a property. `target_position` makes it more obvious that it's a property.
2020-09-10Merge pull request #41806 from AndreaCatania/AndreaCatania-patch-4Rémi Verschelde
Avoid adding margin twice along capsule Y axis
2020-09-10Merge pull request #41951 from Yetizone/update_header_guardRémi Verschelde
scene_tree.h: Update header guard
2020-09-10scene_tree.h: Update header guardYetizone
2020-09-10Merge pull request #41945 from capnm/upstream-prsRémi Verschelde
git: Ignore clangd cache folder
2020-09-10Merge pull request #41944 from madmiraal/remove-unused-importsRémi Verschelde
Remove unused Python imports.
2020-09-10git: Ignore clangd cache folderMartin Capitanio
2020-09-10Remove unused Python imports.Marcel Admiraal
2020-09-10Merge pull request #41795 from Hassan-A/tilemap-rotate-fixRémi Verschelde
Fix tilemap tile preview on horizontal/vertical flips.
2020-09-10Merge pull request #41890 from YeldhamDev/tabs_previousRémi Verschelde
Add 'get_previous_tab()' to 'Tabs'
2020-09-10Merge pull request #41935 from Chaosus/vs_texture3dRémi Verschelde
Added Texture3D to visual shaders
2020-09-10Merge pull request #41940 from madmiraal/remove-duplicate-definitionsRémi Verschelde
Remove duplicate or unnecessary Python definitions.
2020-09-10Merge pull request #41920 from Chaosus/fix_colorpickerRémi Verschelde
Fix ColorPickerButton to apply changes after picker popup closed