summaryrefslogtreecommitdiff
path: root/scene
AgeCommit message (Collapse)Author
2020-04-09Renaming all ARVR nodes to XRBastiaan Olij
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-08erase : if ( i < offset ) { continue;} in for loopstheludovyc
2020-04-07Fixed underlines and striketrough not respecting visible characterjanglee
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 #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-06Calculate strike-through position correctlyDominik 'dreamsComeTrue' Jasiński
Fixes: #37637
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-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 #37556 from KoBeWi/kill_get_indexRémi Verschelde
Remove Node.get_position_in_parent()
2020-04-06Remove Node.get_position_in_parent()Tomasz Chabora
2020-04-05Merge pull request #37397 from Eoin-ONeill-Yokai/Bug37081Rémi Verschelde
Correction to RichTextLabel Tabulation (Bug 37081)
2020-04-05Removed reduntant class LineEditFileChooser.unknown
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-04Fix file dialog not showing iconsunknown
2020-04-04Remove redundant vbx variable in FileDialogunknown
2020-04-03Re-expose a simplified version of the stretch properties in SubViewportMichael Alexsander
2020-04-03Add the missing argument in files_dropped signalTomasz Chabora
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-02Re-Added screen space reflection.Juan Linietsky
2020-04-02Replace more occurrences of NULL with nullptrRémi Verschelde
2020-04-02Replace NULL with nullptrlupoDharkael
2020-04-02Merge pull request #37504 from qarmin/out_of_bound_cursorRémi Verschelde
Fix array out of bounds access caused by uninitialised variables
2020-04-01Rename ViewportContainer to SubViewportContainerMichael Alexsander
2020-04-01Fix out of bound array access caused by unassigned variableRafał Mikrut
2020-04-01Merge pull request #37443 from Leleat/masterRémi Verschelde
Fix PopupMenu's letter jumping on any InputEventKey (instead of just a press)
2020-04-01Merge pull request #37481 from ThakeeNathees/bind-method-typoRémi Verschelde
some typo in method binds fixed
2020-04-01some typo in method binds fixedThakee Nathees
2020-03-31Merge pull request #35765 from clayjohn/masterRémi Verschelde
Add a method to retrieve active material from MeshInstance
2020-03-31Merge pull request #37442 from YeldhamDev/subviewport_registerRémi Verschelde
Register SubViewport class
2020-03-31doc: Sync classref with DisplayServer/Window changesRémi Verschelde
2020-03-30Add a method to retrieve active material from MeshInstanceclayjohn
2020-03-30fixed PopupMenus letterjumping on any InputEventLeleat
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-30Merge pull request #37356 from akien-mga/scons-enable-werrorRémi Verschelde
SCons: Treat all warnings as errors
2020-03-30Fix another batch of -Wmaybe-uninitialized warningsRémi Verschelde
And simplify code in CSGShape.
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-29Correction to RichTextLabel TabulationEoin O'Neill
Correct backtrack assignment to prevent excessive tabulation. Worth noting that tabulation is treated differently in RichTextLabel because of custom user-asignable tab variable which creates problems with dynamic fonts specifically.