summaryrefslogtreecommitdiffstats
path: root/doc/classes/RenderingServer.xml
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #65170 from KoBeWi/your_argument_is_TypedArrayRémi Verschelde2022-09-021-2/+2
|\
| * Change Array arguments to TypedArraykobewi2022-09-011-2/+2
| |
* | Merge pull request #64952 from Chaosus/vs_rename_uniform_to_paramRémi Verschelde2022-09-021-55/+55
|\ \
| * | Rename `uniform` to `parameter` across the engineYuri Rubinsky2022-09-011-55/+55
| |/
* | Merge pull request #60185 from Calinou/environment-fog-and-sky-affectRémi Verschelde2022-09-011-0/+2
|\ \
| * | Add Environment properties to control fog rendering on background skyHugo Locurcio2022-09-011-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Values lower than 1.0 can be used to make the fog rendering not fully obstruct the sky. This can be desired when using fog as a purely atmospheric effect, without intending to use fog for open world fog fading. When set to 0.0, fog rendering behavior will be similar to Godot 3.x where sky rendering was never affected by fog.
* | | Implement Physical Light Units as an optional setting.clayjohn2022-08-311-23/+59
| |/ |/| | | | | | | | | This allows light sources to be specified in physical light units in addition to the regular energy multiplier. In order to avoid loss of precision at high values, brightness values are premultiplied by an exposure normalization value. In support of Physical Light Units this PR also renames CameraEffects to CameraAttributes.
* | Add a per-light volumetric fog energy propertyHugo Locurcio2022-08-301-19/+20
|/ | | | | | | | | | | | | | Per-light energy gives more control to the user on the final result of volumetric fog. Specific lights can be fully excluded from volumetric fog by setting their volumetric fog energy to 0, which improves performance slightly. This can also be used to prevent short-lived dynamic effects from poorly interacting with volumetric fog, as it's updated over several frames by default unless temporal reprojection is disabled. Volumetric fog shadows now obey Light3D's Shadow Opacity property as well. The shadow fog fade property was removed as it had little visible impact on the final scene's rendering.
* Merge pull request #63003 from Geometror/msaa-2dRémi Verschelde2022-08-301-2/+10
|\
| * Implement MSAA for 2D [Vulkan only]Hendrik Brucker2022-08-131-2/+10
| |
* | Merge pull request #64422 from bruvzg/make_fonts_unbearably_ugly_2.0Rémi Verschelde2022-08-261-0/+10
|\ \
| * | Add font LCD sub-pixel anti-aliasing support.bruvzg2022-08-231-0/+10
| | |
* | | Replace Array return types with TypedArray 3kobewi2022-08-241-4/+4
| | |
* | | Replace Array return types with TypedArray 2kobewi2022-08-231-1/+1
|/ /
* / [doc] Fix grammar in class docs: amount vs. numberAndy Maloney2022-08-171-1/+1
|/ | | | | | Number is used for things that can be counted (discrete items - think "integer" in this context). Also fixes a couple of awkward phrases.
* [doc] Use "param" instead of "code" to refer to parameters (4)Andy Maloney2022-08-111-11/+11
|
* Rename the argument tag to param in XML documentationYuri Sizov2022-08-081-976/+976
|
* Add a shadow opacity property to Light3DHugo Locurcio2022-08-071-4/+8
| | | | | | | This can be used to make shadows translucent for a specific light. The light distance fade system also uses this to smoothly fade the shadow when the light fade transition distance is greater than 0.
* Rename shader parameter uniform setter/getter methods for consistencyHugo Locurcio2022-08-041-5/+5
| | | | | | `shader_uniform` is now consistenly used across both per-shader and per-instance shader uniform methods. This makes methods easier to find in the class reference when looking for them.
* Add Nearest Mipmap Anisotropic filter option to decals and projectorsHugo Locurcio2022-08-031-6/+22
| | | | | | | 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.
* Merge pull request #59840 from Calinou/renderingserver-global-uniform-renameRémi Verschelde2022-07-281-38/+38
|\
| * Rename RenderingServer global shader uniform methods to be more explicitHugo Locurcio2022-07-281-38/+38
| | | | | | | | | | The `global_shader_uniform` name is longer, but it makes it much easier to find the methods when searching in the class reference.
* | Allow changing mipmap LOD bias when FSR 1.0 scaling is not usedHugo Locurcio2022-07-281-8/+9
|/ | | | | | | | | 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.
* Clean up Shader Preprocessorreduz2022-07-221-0/+14
| | | | | | | | | * Moved preprocessor to Shader and ShaderInclude * Clean up RenderingServer side * Preprocessor is separate from parser now, but it emits tokens with include location hints. * Improved ShaderEditor validation code * Added include file code completion * Added notification for all files affected by a broken include.
* Adding Variable Rate Shading support to GodotBastiaan Olij2022-07-171-0/+28
| | | | | Improve GI renderer and add VRS support Implement render device has_feature and move subgroup settings to limit_get
* Rename soft shadow quality project settings for easier searchingHugo Locurcio2022-07-131-25/+26
| | | | | | | | | | | | `rendering/quality/shadows` is now `rendering/quality/positional_shadow` to explicitly denote that the settings only affect positional light shadows, not directional light shadows. Shadow atlas settings now contain the word "atlas" for easier searching. Soft shadow quality settings were renamed to contain the word "filter". This makes the settings appear when searching for "filter" in the project settings dialog, like in Godot 3.x.
* i18n: Misc fixes translation stringsRémi Verschelde2022-06-081-1/+1
| | | | Adds some translator comments to solve some questions raised on Weblate.
* Initial TAA implementationjfons2022-06-071-0/+10
| | | | | | Initial TAA support based on the implementation in Spartan Engine. Motion vectors are correctly generated for camera and mesh movement, but there is no support for other things like particles or skeleton deformations.
* Add Cone and Cylinder shapes to FogVolumeHugo Locurcio2022-05-251-5/+13
| | | | | | This complements the existing Ellipsoid and Box local fog shapes. This can be used to represent a light cone coming from a SpotLight.
* Add `get_video_adapter_api_version()` to RenderingServerHugo Locurcio2022-05-031-0/+7
| | | | | | This method can be used to get the graphics API version currently in use (such as Vulkan). It can be used by projects for troubleshooting or statistical purposes.
* Merge pull request #59411 from Calinou/doc-tonemapRémi Verschelde2022-04-291-4/+5
|\ | | | | Improve documentation for tonemapping operators
| * Improve documentation for tonemapping operatorsHugo Locurcio2022-03-221-4/+5
| |
* | Merge pull request #60171 from Chaosus/restore_aaYuri Rubinsky2022-04-121-0/+1
|\ \
| * | Restore antialiasing for `draw_line`Yuri Roubinsky2022-04-121-0/+1
| |/
* / Fix 3D scaling enum size in the editor and improve descriptionsHugo Locurcio2022-04-091-2/+2
|/
* Replace DirectionalLight3D's `use_in_sky_only` with `sky_mode` enumHugo Locurcio2022-03-171-2/+11
| | | | | | | | | | 3 options are available: - Light and Sky (default) - Light Only (new) - Sky Only (equivalent to `use_in_sky_only = true`) Co-authored by: clayjohn <claynjohn@gmail.com>
* Expose `RenderingServer::canvas_item_add_animation_slice` in GDScriptXavier Loh2022-03-131-0/+11
|
* Remove unused `shadow_color` property from Light3DHugo Locurcio2022-03-041-8/+0
| | | | | This shadow color property was no longer effective since the shaders were optimized to improve occupancy.
* Merge pull request #58512 from Calinou/light3d-add-distance-fadeRémi Verschelde2022-03-041-0/+11
|\
| * Implement distance fade properties in OmniLight3D and SpotLight3DHugo Locurcio2022-02-251-0/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | This can be used to fade lights and their shadows in the distance, similar to Decal nodes. This can bring significant performance improvements, especially for lights with shadows enabled and when using higher-than-default shadow quality settings. While lights can be smoothly faded out over distance, shadows are currently "all or nothing" since per-light shadow color is no longer customizable in the Vulkan renderer. This may result in noticeable pop-in when leaving the shadow cutoff distance, but depending on the scene, it may not always be that noticeable.
* | Fix typo in SSR roughness quality enum value namesHugo Locurcio2022-02-281-4/+8
|/
* Add an XML schema for documentationHugo Locurcio2022-02-151-1/+1
| | | | | | | | This makes it easier to spot syntax errors when editing the class reference. The schema is referenced locally so validation can still work offline. Each class XML's schema conformance is also checked on GitHub Actions.
* Improve documentation for `GeometryInstance3D.transparency`Hugo Locurcio2022-02-121-0/+3
|
* Merge pull request #39965 from Calinou/tweak-sdfgi-defaultsRémi Verschelde2022-02-101-2/+2
|\
| * Tweak default SDFGI settings for better qualityHugo Locurcio2022-02-061-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | - Enable Read Sky Light to get proper outdoors lighting out of the box. - Set bounce feedback to 0.5 by default to get a better quality result. - Higher values may cause infinite feedback with bright surfaces. - Increase the number of frames to converge to improve quality at the cost of latency. Most scenes are fairly static after all. - Use 75% Y scale by default as most scenes are not highly vertical. - Reorder the Y scale enum to go from the lowest Y scale to the highest. Also rename the "Disabled" setting to "100%" for clarity.
* | Fix BLEND_SHAPE_MASKreduz2022-02-081-1/+1
|/ | | | | * Should now be correct * Supersedes 53738
* Merge pull request #54574 from Ansraer/glow_mapRémi Verschelde2022-01-261-0/+2
|\
| * add support for glow mapsAnsraer2022-01-201-0/+2
| |
* | Merge pull request #55360 from Calinou/rename-bake-mode-propertiesRémi Verschelde2022-01-201-2/+2
|\ \ | |/ |/|
| * Rename and reorder bake mode properties for consistencyHugo Locurcio2021-12-141-2/+2
| | | | | | | | | | | | | | | | The order now goes from least to most computationally expensive: - Disabled - Static - Dynamic