summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-04-09Merge pull request #36919 from nekomatata/android-vulkan-renderingRémi Verschelde
Vulkan rendering support on Android
2020-04-08Merge pull request #37689 from Calinou/doc-improve-cameraserverRémi Verschelde
Improve the CameraServer and CameraFeed class documentations
2020-04-08Merge pull request #37678 from reduz/refactor-shadowmappingJuan Linietsky
Refactored shadowmapping.
2020-04-08Refactored shadowmapping.Juan Linietsky
- Made shadow bias size independent, so it will remain when changing light or camera size. - Implemented normal offset bias, which greatly enhances quality. - Added transmission to subsurface scattering - Reimplemented shadow filter modes Closes #17260
2020-04-08Improve the CameraServer and CameraFeed class documentationsHugo Locurcio
This closes https://github.com/godotengine/godot-docs/issues/3255.
2020-04-08Merge pull request #37682 from theludovyc/masterRémi Verschelde
Erase if ( i < offset ) { continue;} at start in for loops
2020-04-08erase : if ( i < offset ) { continue;} in for loopstheludovyc
2020-04-08Merge pull request #37644 from JFonS/gizmos_renameRémi Verschelde
Rename all gizmo classes, using the 4.0 node names.
2020-04-08Merge pull request #37681 from Anutrix/dont_disconnectRémi Verschelde
Fix signal disconnection soon after connection in EditorQuickOpen
2020-04-08Fix signal disconnection soon after connection in EditorQuickOpenunknown
2020-04-08Display Server supportPouleyKetchoupp
2020-04-07Merge pull request #37670 from Calinou/tweak-rendering-quality-hintsRémi Verschelde
Tweak rendering quality property hint strings for consistency
2020-04-07Merge pull request #37666 from clayjohn/GLES2-4-skeleton-rebindRémi Verschelde
Avoid material rebinds when using skeletons
2020-04-07Tweak rendering quality property hint strings for consistencyHugo Locurcio
- Include a performance indication for all hints, not just for non-default values. - Fix leading/trailing whitespace in some property hints.
2020-04-07Avoid material rebinds when using skeletonsclayjohn
2020-04-07Merge pull request #37656 from Janglee123/richtext-underline-fixRémi Verschelde
Fixed underlines and striketrough not respecting visible character
2020-04-07Fixed underlines and striketrough not respecting visible characterjanglee
2020-04-07Rename all gizmo classes, using the 4.0 node names.jfons
2020-04-07i18n: Sync translate template for class referenceRémi Verschelde
Adds initial fr.po translation for initialization on Weblate.
2020-04-07Merge pull request #37551 from KoBeWi/found_your_screenRémi Verschelde
Add the missing argument in files_dropped signal
2020-04-07Merge pull request #37579 from Calinou/improve-shader-error-outputRémi Verschelde
Improve the shader error console output
2020-04-07Merge pull request #37589 from Nannaquin/updatecolordocRémi Verschelde
Add reference of Color8 function to Color class documentation
2020-04-07Merge pull request #37586 from qarmin/vulkan_allocator_leakRémi Verschelde
Fix leak with Vulkan allocator
2020-04-07Merge pull request #37592 from Anutrix/dissolving_classRémi Verschelde
Dissolving class EditorLineEditFileChooser into EditorAutoloadSettings.
2020-04-07Merge pull request #37591 from Anutrix/remove_reduntant_classRémi Verschelde
Removed redundant class LineEditFileChooser from file_dialog
2020-04-07Merge pull request #37642 from dreamsComeTrue/rich-text-strike-fixRémi Verschelde
Calculate strike-through y-position correctly (RichTexteLabel)
2020-04-07Merge pull request #37615 from guilhermefelipecgs/fix_37526Rémi Verschelde
Fix TextureRect::flip_* when used with atlas texture
2020-04-07Merge pull request #37643 from YeldhamDev/help_tooltip_panelessRémi Verschelde
Remove unnecessary panel in EditorHelpBit
2020-04-06Remove unnecessary panel in EditorHelpBitMichael Alexsander
2020-04-06Calculate strike-through position correctlyDominik 'dreamsComeTrue' Jasiński
Fixes: #37637
2020-04-06Merge pull request #37635 from qarmin/leak_vertexRémi Verschelde
Fixed leak with vertex_formats
2020-04-06Merge pull request #37639 from qarmin/no_more_leaksRémi Verschelde
Fixes leaks when running editor
2020-04-06Fixes leaks when running editorqarmin
2020-04-06Fixed leak with vertex_formatsqarmin
2020-04-06Fix TextureRect::flip_* when used with atlas textureGuilherme Felipe
Fix #37526
2020-04-06Merge pull request #37623 from Chaosus/vs_fix_keyword_nameYuri Roubinsky
Adds warning to the uniform name in visual shader if its equal to keyword
2020-04-06Adds warning to the uniform name in visual shader if its equal to keywordYuri Roubinsky
2020-04-06Merge pull request #37447 from ThakeeNathees/text-replace-empty-string-fixRémi Verschelde
replace selected text with empty string bug fixed
2020-04-06Merge pull request #37621 from dankan1890/autoslice_fixRémi Verschelde
Fixed TextureRegion autoslice issue.
2020-04-06Merge pull request #37625 from akien-mga/vulkan-32bit-nullptr-handlesRémi Verschelde
Vulkan: Use VK_NULL_HANDLE for handles, fixes 32-bit builds
2020-04-06TextureRegion: fixed Autoslice not created/updated properly.dankan1890
2020-04-06Vulkan: Use VK_NULL_HANDLE for handles, fixes 32-bit buildsRémi Verschelde
Some Vulkan types are defined as "non dispatchable handles" and use a different typedef on 32-bit and 64-bit systems (struct pointer on 64-bit, `uint64_t` otherwise). https://github.com/KhronosGroup/Vulkan-Headers/blob/0e78ffd1dcfc3e9f14a966b9660dbc59bd967c5c/include/vulkan/vulkan_core.h#L59-L65 Contrarily to `NULL`, `nullptr` can't be converted to `uint64_t` so build was now failing on 32-bit after converting the codebase from using `NULL` to `nullptr`. Fixes #37620.
2020-04-06Merge pull request #37556 from KoBeWi/kill_get_indexRémi Verschelde
Remove Node.get_position_in_parent()
2020-04-06Merge pull request #37613 from pycbouh/linkbutton-missing-colorsRémi Verschelde
Add missing LinkButton colors in Editor Theme
2020-04-06Merge pull request #37610 from YeldhamDev/multifile_import_change_fixRémi Verschelde
Fix changing the import type of multiple files at once
2020-04-06replace selected text with empty string bug fixedThakee Nathees
Fix: #37416
2020-04-06Remove Node.get_position_in_parent()Tomasz Chabora
2020-04-05Added missing LinkButton colors in Editor ThemeYuri Sizov
2020-04-05Fix changing the import type of multiple files at onceMichael Alexsander
2020-04-05Add reference of Color8 function to Color class documentationNannaquin