summaryrefslogtreecommitdiff
path: root/scene
AgeCommit message (Collapse)Author
2020-04-20Merge pull request #37947 from clayjohn/DOCS-rendering-updateRémi Verschelde
Update many docs with recent rendering changes
2020-04-17Update many docs with recent rendering changesclayjohn
2020-04-17Merge pull request #37949 from reduz/implement-global-shader-uniformsRémi Verschelde
Implement global and per instance shader uniforms.
2020-04-17Merge pull request #37953 from clayjohn/VULKAN-sky-sun-sizeRémi Verschelde
Add light size to Sky Shaders
2020-04-17Add light size to Sky Shadersclayjohn
2020-04-17Merge pull request #37964 from AndreaCatania/AndreaCatania-patch-2Rémi Verschelde
Activate Physics Process in SpringArm3D.
2020-04-17Implement global and per instance shader uniforms.Juan Linietsky
Adds two keywords to shader language for uniforms: -'global' -'instance' This allows them to reference values outside the material.
2020-04-17Activate Physics Process in SpringArm3D.Andrea Catania
2020-04-16Merge pull request #37047 from YeldhamDev/tabcontainer_doc_control_fixRémi Verschelde
Fix incorrect TabContainer documentation for 'get_tab_control()'
2020-04-15Merge pull request #37914 from clayjohn/VULKAN-decal-fixRémi Verschelde
Fix texture check in decal setup
2020-04-15Merge pull request #37911 from madmiraal/fix-32876Rémi Verschelde
Run SpringArm3D's process within physics.
2020-04-15Fix texture check in decal setupclayjohn
2020-04-15Run SpringArm3D's process within physics.Marcel Admiraal
2020-04-15Add "node_unselected" signal for GraphEditasheraryam
2020-04-15Merge pull request #37896 from NutmegStudio/decal-enum-constant-fixRémi Verschelde
Change DecalTexture bind from BIND_CONSTANT to BIND_ENUM_CONSTANT
2020-04-15Change DecalTexture bind from BIND_CONSTANT to BIND_ENUM_CONSTANTNutmegStudio
2020-04-15Fix typo in light3d (Texture -> Texture2D)NutmegStudio
2020-04-14Merge pull request #37887 from reduz/implement-projectorsRémi Verschelde
Add support for projectors in spot and omni lights.
2020-04-14Add support for projectors in spot and omni lights.Juan Linietsky
2020-04-14Merge pull request #37316 from nekomatata/physical-bone-settingsRémi Verschelde
Add PhysicalBone rotation, damping, axis lock & can sleep
2020-04-14Merge pull request #37861 from reduz/implement-decalsRémi Verschelde
Implement decals
2020-04-14Implement decalsJuan Linietsky
Also implemented decal atlas, so projectors and other stuff can be added. Sidenote: Had to make RID hashable, so some unrelated includes changed in order to include it in hashfuncs.h
2020-04-14Add PhysicalBone rotation, damping, axis lock & can sleepPouleyKetchoupp
2020-04-13Fixed 0 width issue of rich text labeljanglee
Fixes #37746
2020-04-13Handle huge offset values in Path2D and Path3D set_offsetMickeMakaron
2020-04-13Merge pull request #37749 from clayjohn/Vulkan-improved-ssRémi Verschelde
Add vogel filter and settings to soft shadows
2020-04-12Implement MSAAJuan Linietsky
2020-04-12Add screen space AA option, with FXAA implementation.Juan Linietsky
2020-04-10Add proper quality settings to soft shadowsclayjohn
2020-04-10Fix OptionButton docs godotengine#36803Zak Grumbles
* item_selected and item_focused docs incorrectly had 'id' as the parameter. Changed to 'index'. * Fix parameter name in ADD_SIGNAL callin code.
2020-04-10Merge pull request #37517 from nekomatata/slider-grab-area-highlightRémi Verschelde
Add style for highlighted Slider grab area
2020-04-10Merge pull request #37688 from theludovyc/devRémi Verschelde
Remove unused ofs variable in Tree::_draw
2020-04-10Merge pull request #37722 from reduz/implement-softshadowsRémi Verschelde
Support light size and soft shadows
2020-04-09Support light size and soft shadowsJuan Linietsky
2020-04-09Renaming all ARVR nodes to XRBastiaan Olij
2020-04-08Remove unused ofs variabletheludovyc
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