summaryrefslogtreecommitdiff
path: root/editor
AgeCommit message (Collapse)Author
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-08Merge pull request #37644 from JFonS/gizmos_renameRémi Verschelde
Rename all gizmo classes, using the 4.0 node names.
2020-04-08Fix signal disconnection soon after connection in EditorQuickOpenunknown
2020-04-07Rename all gizmo classes, using the 4.0 node names.jfons
2020-04-07Merge pull request #37592 from Anutrix/dissolving_classRémi Verschelde
Dissolving class EditorLineEditFileChooser into EditorAutoloadSettings.
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-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-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-06TextureRegion: fixed Autoslice not created/updated properly.dankan1890
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-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-05Dissolving class EditorLineEditFileChooser into EditorAutoloadSettings.unknown
2020-04-05Remove unnecessary Panel in "Features" section in the Export dialogMichael Alexsander
2020-04-04Merge pull request #37570 from reduz/implement-sssRémi Verschelde
Re-implement subsurface scattering.
2020-04-04Re-implement subsurface scattering.Juan Linietsky
The size settings are more "just works", with default scale and depth scale values that don't need much tweaking. Additionally, a "skin" mode was added so skin looks better. EDIT: Cleaned up SSR filter shader a bit.
2020-04-04Take borders into account with floating dock initial position/sizeMichael Alexsander
2020-04-04Merge pull request #37391 from dreamsComeTrue/embedded-windows-modeRémi Verschelde
Expose 'Embedded Windows Mode' as Editor and Project Settings
2020-04-03Expose 'Embedded Windows Mode' as Editor and Project SettingsDominik 'dreamsComeTrue' Jasiński
2020-04-03Removed duplicated add_childqarmin
2020-04-03Merge pull request #37363 from YeldhamDev/floating_dock_enhancementsRémi Verschelde
General enhancements to floating docks
2020-04-03Merge pull request #37505 from YeldhamDev/viewcont_renameRémi Verschelde
Rename ViewportContainer to SubViewportContainer
2020-04-02Merge pull request #37521 from akien-mga/more-nullptrRémi Verschelde
Replace more occurrences of NULL with nullptr
2020-04-02Merge pull request #37512 from reduz/implement-ssrRémi Verschelde
Re-Added screen space reflection.
2020-04-02Merge pull request #35720 from Calinou/remove-request-docs-buttonRémi Verschelde
Remove Request Docs button in the script editor due to various issues
2020-04-02Re-Added screen space reflection.Juan Linietsky
2020-04-02Replace more occurrences of NULL with nullptrRémi Verschelde
2020-04-02Remove Request Docs button in the script editor due to various issuesHugo Locurcio
The Request Docs button is partly responsible for layout overflow issues on narrow displays, such as #31133. It also tended to attract spam and low-effort issues that were difficult to act upon. A "Send Docs Feedback" menu option has been added to replace it.
2020-04-02Replace NULL with nullptrlupoDharkael
2020-04-01Rename ViewportContainer to SubViewportContainerMichael Alexsander
2020-03-31Merge pull request #37442 from YeldhamDev/subviewport_registerRémi Verschelde
Register SubViewport class
2020-03-31Merge pull request #37153 from neikeq/mono_ios-4.0Rémi Verschelde
[master] Mono/C#: Add iOS support
2020-03-31Fix more -Wmaybe-uninitialized warnings with target=release_debugRémi Verschelde
I have no idea why those don't get triggered in target=debug builds. Fixes #37461.
2020-03-31Mono/C#: Add iOS supportIgnacio Etcheverry
Right now, games only work on devices when exported with FullAOT+Interpreter. There are some issues left that need to addressed for FullAOT alone. Right now, it's giving issues with the Godot.NativeCalls static constructor.
2020-03-30Register SubViewport classMichael Alexsander
2020-03-30Merge pull request #37436 from akien-mga/doc-node-renamesRémi Verschelde
doc: Update classref with node renames
2020-03-30doc: Update classref with node renamesRémi Verschelde
A few extra renames for classes which were missed in last week's PRs.
2020-03-30Move glow upscale quality to a global setting, for consistencyJuan Linietsky
2020-03-30SCons: Format buildsystem files with psf/blackRémi Verschelde
Configured for a max line length of 120 characters. psf/black is very opinionated and purposely doesn't leave much room for configuration. The output is mostly OK so that should be fine for us, but some things worth noting: - Manually wrapped strings will be reflowed, so by using a line length of 120 for the sake of preserving readability for our long command calls, it also means that some manually wrapped strings are back on the same line and should be manually merged again. - Code generators using string concatenation extensively look awful, since black puts each operand on a single line. We need to refactor these generators to use more pythonic string formatting, for which many options are available (`%`, `format` or f-strings). - CI checks and a pre-commit hook will be added to ensure that future buildsystem changes are well-formatted.
2020-03-29Properly handle node remove via undoTomasz Chabora
2020-03-27General enhancements to floating docksMichael Alexsander