Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-08-03 | Merge pull request #61851 from Calinou/particles-default-global-coordinates | Rémi Verschelde | |
2022-08-03 | Merge pull request #51531 from Calinou/decal-projector-add-nearest-mipmap-aniso | Rémi Verschelde | |
2022-08-03 | Merge pull request #58611 from Calinou/ssr-fix-blend-margin | Rémi Verschelde | |
Fade screen-space reflection towards inner margin | |||
2022-08-03 | Merge pull request #63847 from Zylann/shader_switch_uint | Yuri Rubinsky | |
2022-08-03 | Add Nearest Mipmap Anisotropic filter option to decals and projectors | Hugo Locurcio | |
This is consistent with the BaseMaterial3D filtering options. It can be used for high-quality pixel art textures that remain sharp when viewed at oblique angles, but prevents them from becoming grainy thanks to mipmaps. | |||
2022-08-03 | Fade screen-space reflection towards inner margin | Hugo Locurcio | |
- Fade reflection towards inner margin and clip it at screen edges instead of external margin. - Round edges of the fade margin if both are being cut off to prevent sharp corners. Co-authored-by: puchik <puchik@users.noreply.github.com> | |||
2022-08-02 | Allow shading language to use `switch` statement with uints | Marc Gilleron | |
2022-08-02 | Use global coordinates for particles by default | Hugo Locurcio | |
Particles won't move or rotate anymore with the node (or its parents) by default. This new default behavior is generally more suited to most use cases. Local coordinates can still be enabled on a per-node basis. This affects both 2D and 3D particles, and both CPU and GPU-based particles. | |||
2022-08-02 | Merge pull request #62639 from Calinou/line-antialiasing-decrease-feather-width | Rémi Verschelde | |
2022-08-02 | Add spatial built-ins (camera-pos, object-pos, camera-eye etc.) | Patrick Exner | |
2022-08-02 | [TextServer] Add ICU Unicode security and spoofing detection. | bruvzg | |
2022-08-02 | Merge pull request #53956 from bruvzg/icu_uax_31 | Rémi Verschelde | |
2022-08-02 | [TextServer] Implement ICU/UAX 31 based `is_valid_identifier` function. | bruvzg | |
2022-08-02 | Merge pull request #51672 from Calinou/shader-add-hint-transparent-texture | Rémi Verschelde | |
Add `hint_transparent` to use a transparent black placeholder texture | |||
2022-08-02 | Merge pull request #63627 from and-rad/vector-field-attractor-fix | Rémi Verschelde | |
Fix vector field particle attractor texture sampling | |||
2022-08-02 | Merge pull request #63589 from RandomShaper/sdfgi_debug_pc | Rémi Verschelde | |
Keep SdfgiDebug shader's push constant size <= 128 | |||
2022-08-02 | Merge pull request #63793 from RandomShaper/fix_unbound_resource | Rémi Verschelde | |
Fix uniform set creation error due to null RID | |||
2022-08-01 | Add `hint_transparent` to use a transparent black placeholder texture | Hugo Locurcio | |
This can be used in shaders to avoid the need to supply a transparent placeholder texture manually. | |||
2022-08-01 | Merge pull request #63767 from kubecz3k/fix/headless-collision | Rémi Verschelde | |
2022-08-01 | Fix uniform set creation error due to null RID | Pedro J. Estébanez | |
2022-08-01 | Merge pull request #63766 from Chaosus/fix_shader_instance_uniform | Yuri Rubinsky | |
2022-08-01 | Fix passing values to the instance uniforms in the shader | Yuri Rubinsky | |
2022-08-01 | fix for headless collision shape generation | Jakub Grzesik | |
this commit implements just enough of dummy mesh_storage so collision shapes are still generated in the headless mode implementation was inspired by rasterizer_dummy.h from Godot3 | |||
2022-08-01 | Merge pull request #63754 from BastiaanOlij/storage_struct_private | Rémi Verschelde | |
Changed storage structs to private | |||
2022-08-01 | Merge pull request #55276 from Calinou/volumetric-fog-tweak-default-gi-inject | Rémi Verschelde | |
Tweak default fog settings for better appearance | |||
2022-08-01 | Merge pull request #63587 from clayjohn/specular-occlusion | Rémi Verschelde | |
Treat specular less than 0.02 as occlusion | |||
2022-08-01 | Changed storage structs to private | Bastiaan Olij | |
2022-08-01 | Tweak default fog settings for better appearance | Hugo Locurcio | |
- Increase the default non-volumetric fog density to 0.01 to make adjustments more visible. - Use a less saturated non-volumetric fog color by default (a mix of the sky and horizon colors of the new default ProceduralSkyMaterial). - Set Volumetric Fog Gi Inject to 1.0 by default. Injecting GI results in more realistic appearance of volumetric fog, at a very low performance cost. | |||
2022-07-31 | Treat specular less than 0.02 as occlusion | clayjohn | |
This is a very common hack used in almost all PBR renderers to allow removing specular contribution in dielectric materials | |||
2022-07-31 | Tweak VoxelGI defaults for better quality | Hugo Locurcio | |
Overall brightness is similar to the previous settings, but lighting now fades off more naturally and reflections feature indirect lighting. Performance is identical. - Enable Use Two Bounces by default. - Decrease Propagation to 0.5 to compensate for the second bounce. | |||
2022-07-31 | Fix Navigation Debug always enabled | smix8 | |
Fixes that Navigation Debug is always enabled in debug builds even while "Visible Navigation" is turned off. | |||
2022-07-30 | Make Decal's `modulate` property affect emission color as well | Hugo Locurcio | |
This can be used to recolor special effects such as fake area fog without having to create separate textures for each color. - Improve the Decal class documentation. | |||
2022-07-29 | fix 'Comparison result is always the same' warnings | LinuxUserGD | |
2022-07-29 | Merge pull request #63595 from reduz/remove-signal-connect-binds | Rémi Verschelde | |
Remove Signal connect binds | |||
2022-07-29 | Merge pull request #46557 from asmaloney/remove-impossible-condition | Rémi Verschelde | |
Remove impossible condition in RenderingServer::mesh_surface_make_offsets_from_format | |||
2022-07-29 | Fix vector field particle attractor texture sampling | Andreas Raddau | |
2022-07-29 | Remove Signal connect binds | Juan Linietsky | |
Remove the optional argument p_binds from `Object::connect` since it was deprecated by Callable.bind(). Changed all uses of it to Callable.bind() | |||
2022-07-29 | Keep SdfgiDebug shader's push constant size <= 128 | Pedro J. Estébanez | |
2022-07-29 | Merge pull request #62601 from smix8/navigation_3d_debug_4.x | Rémi Verschelde | |
2022-07-29 | Add more detailed Navigation Debug Visualization | smix8 | |
- Adds more customization options to ProjectSettings. - Displays navregion edge connections and navigation polygon edges in editor and at runtime. - Majority of debug code moved from SceneTree to NavigationServer. - Removes the irritating debug MeshInstance child node from NavigationRegion3D and replaces it with direct RenderingServer API. | |||
2022-07-29 | Merge pull request #63527 from BastiaanOlij/rework_environment | Rémi Verschelde | |
Restructure environment in render implementation | |||
2022-07-29 | Restructure environment in render implementation | Bastiaan Olij | |
2022-07-28 | Merge pull request #59840 from Calinou/renderingserver-global-uniform-rename | Rémi Verschelde | |
2022-07-28 | Merge pull request #60957 from DeeJayLSP/sample_pcm | Rémi Verschelde | |
2022-07-28 | Rename AudioStreamSample to a more discoverable name | DeeJayLSP | |
2022-07-28 | Rename RenderingServer global shader uniform methods to be more explicit | Hugo Locurcio | |
The `global_shader_uniform` name is longer, but it makes it much easier to find the methods when searching in the class reference. | |||
2022-07-28 | Allow changing mipmap LOD bias when FSR 1.0 scaling is not used | Hugo Locurcio | |
Mipmap LOD bias can be useful to improve the appearance of distant textures without increasing anisotropic filtering (or in situations where anisotropic filtering is not effective). `fsr_mipmap_bias` was renamed to `texture_mipmap_bias` accordingly. The property hint now allows for greater precision as well. | |||
2022-07-28 | Merge pull request #63571 from RandomShaper/conservative_validate_vrs | Rémi Verschelde | |
2022-07-28 | Improve handling of the format of the VRS image | Pedro J. Estébanez | |
- Validate format conservatively. (This is to have VRS images created regardless whether VRS attachments are supported, which avoids errors in places where the code assumes such images were created on low-spec GPUs.) - Create a non-layered default VRS image, which is what Vulkan (and D3D12, by the way) expect. | |||
2022-07-28 | Merge pull request #57698 from ↵ | Rémi Verschelde | |
bluenote10/feature/rename_translated_to_translated_local |