Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-10-30 | Fix instance index in forward clustered shader | jfons | |
2021-10-29 | Fix crash when opening a converted `FogMaterial` | Yuri Roubinsky | |
2021-10-28 | Addition of FogVolumes, FogShaders, FogMaterial, and overhaul of VolumetricFog | clayjohn | |
Co-authored-by: Brian Semrau <brian.semrau@gmail.com> | |||
2021-10-28 | Merge pull request #54350 from akien-mga/clang-format-dont-align-operands | Rémi Verschelde | |
2021-10-28 | Merge pull request #54222 from JFonS/instance-fade | Rémi Verschelde | |
2021-10-28 | clang-format: Various fixes to comments alignment from `clang-format` 13 | Rémi Verschelde | |
All reviewed manually and occasionally rewritten to avoid bad auto formatting. | |||
2021-10-28 | clang-format: Disable alignment of operands, too unreliable | Rémi Verschelde | |
Sets `AlignOperands` to `DontAlign`. `clang-format` developers seem to mostly care about space-based indentation and every other version of clang-format breaks the bad mismatch of tabs and spaces that it seems to use for operand alignment. So it's better without, so that it respects our two-tabs `ContinuationIndentWidth`. | |||
2021-10-26 | Fix shadow disabling on mobile renderer | Joan Fons | |
2021-10-25 | Fix shadow disabling settings | jfons | |
Fixes the SHADOW_CASTING_SETTING_OFF setting in GeometryInstance3D and the "shadows_disabled" render mode in spatial materials, which were not working before. | |||
2021-10-25 | Implement distance fade and transparency | JFonS | |
The built-in ALPHA in spatial shaders comes pre-set with a per-instance transparency value. Multiply by it if you want to keep it. The transparency value of any given GeometryInstance3D is affected by: - Its new "transparency" property. - Its own visiblity range when the new "visibility_range_fade_mode" property is set to "Self". - Its parent visibility range when the parent's fade mode is set to "Dependencies". The "Self" mode will fade-out the instance when reaching the visibility range limits, while the "Dependencies" mode will fade-in its dependencies. Per-instance transparency is only implemented in the forward clustered renderer, support for mobile should be added in the future. Co-authored-by: reduz <reduzio@gmail.com> | |||
2021-10-25 | Fix state inconsistencies in visibility dependencies. | jfons | |
2021-10-22 | Merge pull request #53992 from Calinou/hard-shadow-mapping-allow-dithering | Rémi Verschelde | |
2021-10-21 | Merge pull request #54082 from Chaosus/fix_shader_crash | Yuri Roubinsky | |
2021-10-21 | Prevent shader crash when passing constant expression to `textureGather` | Yuri Roubinsky | |
2021-10-21 | Add Soft Very Low shadow quality mode for 3D | Hugo Locurcio | |
This can be used to improve 3D shadow rendering quality at little performance cost. Unlike the existing Hard setting which is limited to variable shadow blur only, it works with both fixed blur and variable blur. | |||
2021-10-21 | Fix built-in texture samplers passing for spatial shader mode | Yuri Roubinsky | |
2021-10-20 | Prevent a rendering crash and error spam for uniform texture array | Yuri Roubinsky | |
2021-10-19 | Merge pull request #53972 from zedutch/fix-shader-time-update | Rémi Verschelde | |
Fix shaders using `TIME` not continuously updating | |||
2021-10-19 | Merge pull request #53790 from briansemrau/remove-distant-shadowy-void | Rémi Verschelde | |
2021-10-19 | Merge pull request #52940 from groud/toast_notification | Rémi Verschelde | |
2021-10-19 | Merge pull request #52210 from BastiaanOlij/enhance_xr_trackers | Rémi Verschelde | |
2021-10-18 | Fix shaders that use TIME do not force editor to continuously update | Robin Arys | |
2021-10-18 | Validate enum range in RendererViewport::viewport_get_render_info | Haoyu Qiu | |
2021-10-17 | Rework XR positional trackers | Bastiaan Olij | |
2021-10-15 | Swap args of Plane(point, normal) constructor | mennomax | |
Now (normal, point) | |||
2021-10-15 | Merge pull request #53815 from Chaosus/fix_wireframe_render_mode | Rémi Verschelde | |
2021-10-15 | Fix `wireframe` render mode | Yuri Roubinsky | |
2021-10-14 | Remove incorrect fog height density remapping | Brian Semrau | |
2021-10-14 | Fix several issues with directional shadows | Brian Semrau | |
- Internally disable blend splits in orthogonal directional shadow mode - Fix soft shadows ignoring fade and blend_splits - Fix soft shadow edge stability | |||
2021-10-14 | Implement toast notifications in the editor | Gilles Roudière | |
2021-10-14 | Fix the height fog effect | Brian Semrau | |
2021-10-13 | Added few more built-ins to shader language | Yuri Roubinsky | |
2021-10-12 | Merge pull request #53712 from CakHuri/nullptr | Rémi Verschelde | |
Replace NULL with nullptr | |||
2021-10-12 | Replaced NULL with nullptr | M. Huri | |
2021-10-12 | Fix some LGTM errors of "Multiplication result converted to larger type" | Aaron Franke | |
2021-10-11 | Fix shader crash on using METALLIC and ROUGHNESS built-ins in light func | Yuri Roubinsky | |
2021-10-10 | Merge pull request #53066 from Chaosus/shader_funcs | Rémi Verschelde | |
2021-10-09 | Fix missing argument names in bindings | Rémi Verschelde | |
While at it, tweak some boolean setters to use `p_enabled` for the bool. Also renames `draw_minimap()` to `set_draw_minimap()`. | |||
2021-10-08 | Allow any floating-point value as a 3D rendering scale option | Hugo Locurcio | |
This allows for finer control over 3D rendering resolution. Supersampling can also be performed by setting a 3D rendering resolution above 1.0, which is useful for offline rendering or for very high-end GPUs. | |||
2021-10-08 | Merge pull request #53527 from Chaosus/shader_array | Rémi Verschelde | |
2021-10-08 | Allow declare the shader arrays with a size defined before identifier | Yuri Roubinsky | |
2021-10-07 | Merge pull request #53523 from Calinou/remove-occlusion-color | Rémi Verschelde | |
2021-10-07 | Remove unimplemented `Environment.ambient_light_occlusion_color` property | Hugo Locurcio | |
This property was intended to provide a way to have SSAO or VoxelGI ambient occlusion with a color other than black. However, it was dropped during the Vulkan renderer development due to the performance overhead it caused when the feature wasn't used. | |||
2021-10-07 | Replace references to VisualServer in code comments with RenderingServer | Hugo Locurcio | |
VisualServer no longer exists in the `master` branch. | |||
2021-10-07 | Fix shader crash when passing array to index expression | Yuri Roubinsky | |
2021-10-07 | Merge pull request #53491 from Chaosus/shader_fix_texture_array_uniforms | Yuri Roubinsky | |
2021-10-07 | Merge pull request #53504 from clayjohn/VULKAN-sky-bug | Rémi Verschelde | |
Remove bogus sky error check | |||
2021-10-07 | Merge pull request #51115 from clayjohn/VULKAN-SSAO-radius | Rémi Verschelde | |
Move assignment of SSAO radius push constant | |||
2021-10-06 | Remove bogus sky error check | clayjohn | |
2021-10-06 | Fix regression which prevents using texture array uniforms | Yuri Roubinsky | |