Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-11-19 | Fix issues with environment mapping | clayjohn | |
2019-10-11 | only render depth with alpha prepass on prepass | clayjohn | |
2019-08-08 | Merge pull request #30714 from Calinou/invert-default-fog-height | Rémi Verschelde | |
Invert and adjust the default fog height values | |||
2019-08-07 | Invert and adjust the default fog height values | Hugo Locurcio | |
This makes height fog appear at the bottom of the scene (instead of the top), which is generally the expected result. This also tweaks the fog height setting hint to be more flexible. This closes #30709. | |||
2019-07-28 | add project setting for max lights and reflections in gles3 | clayjohn | |
2019-06-15 | Adding a new Camera Server implementation to Godot. | BastiaanOlij | |
This is a new singleton where camera sources such as webcams or cameras on a mobile phone can register themselves with the Server. Other parts of Godot can interact with this to obtain images from the camera as textures. This work includes additions to the Visual Server to use this functionality to present the camera image in the background. This is specifically targetted at AR applications. | |||
2019-03-26 | Fixed handling of depth texture so it's resolved and bound when needed | Daniel Rakos | |
- Cleaned up and improved the code determining when we need to use a depth prepass (previously it wasn't executed in certain cases even if it was needed) - Added code to prepare and bind the depth texture even when no depth prepass or MRTs (more precisely effect buffers) are used Fixes #25870, #25535, and #25387. | |||
2019-03-11 | Undo #25557 (was not right anyway), fixes #26258 | Juan Linietsky | |
2019-02-21 | Many fixes regarding depth buffer clearing, closes #25994, closes #25975 | Juan Linietsky | |
2019-02-01 | Allow usage of depth texture when contact shadows are disabled | KaadmY | |
2019-01-19 | Fix #19633 by proper store to &ubo_data.shadow_matrix[1234]. | marxin | |
It is not valid in C++ to store into shadow_matrix1[16] with shadow_matrix1[16 * j] (for j > 0). Even though there's a valid space in a struct after shadow_matrix1. Knowing that GCC performs aggressive optimizations that eventually lead to a wrong code. Code has been changed into union where one can either use shadow_matrix[4 * 16], or individual shadow_matrix1, shadow_matrix2, etc. GCC pragma is not needed any longer. | |||
2019-01-01 | Update copyright statements to 2019 | Rémi Verschelde | |
Happy new year to the wonderful Godot community! | |||
2018-12-15 | Adding option to re-orient our sky | Bastiaan Olij | |
2018-12-11 | Moved member variables to initializer list | Wilson E. Alvarez | |
2018-11-28 | Added luminance capping to avoid glitches on small dots. closes #17996 | Juan Linietsky | |
2018-11-13 | Add parameter for fog max depth and use alpha as density. | Dominique LaSalle | |
2018-10-07 | Baker fixes | Juan Linietsky | |
2018-09-12 | Removed unused function RasterizerSceneGLES3::_copy_to_front_buffer | Wilson E. Alvarez | |
2018-07-22 | transmission was broken, fix was made. Also fixed treshold. | Juan Linietsky | |
2018-07-22 | Fix opaque pre pass not casting shadows | Juan Linietsky | |
2018-07-02 | Added ability for SSAO to affect AO textures too | Juan Linietsky | |
2018-03-13 | Fixed several leaks in VisualServerScene, RasterizerSceneGLES3 and ↵ | Wilson E. Alvarez | |
RasterizerGLES3 | |||
2018-01-05 | Add missing copyright headers and fix formatting | Rémi Verschelde | |
Using `misc/scripts/fix_headers.py` on all Godot files. Some missing header guards were added, and the header inclusion order was fixed in the Bullet module. | |||
2018-01-01 | Update copyright statements to 2018 | Rémi Verschelde | |
Happy new year to the wonderful Godot community! | |||
2017-12-14 | -Add lightmapper | Juan Linietsky | |
-Fixes to unwrapper (remove degenerates), makes Thekla not crash -Added optional cancel button in EditorProgress -Added function to force processing of events (needed for cancel button) | |||
2017-12-07 | Style: Apply clang-format again on all files | Rémi Verschelde | |
Fixes issues introduced by newer clang-format versions or commits pushed directly without using the clang-format pre-commit hook. | |||
2017-12-01 | small fix so shadows dont need to use a separate material for world vertex ↵ | Juan Linietsky | |
coords (more perf) | |||
2017-12-01 | Properly take into consideration that VERTEX must be written to in opaque ↵ | Juan Linietsky | |
pre pass, does some speed up to scenes using triplanar. | |||
2017-10-30 | Merge pull request #12288 from tagcup/expose_viewport_size | Juan Linietsky | |
Expose VIEWPORT_SIZE in shader language. | |||
2017-10-26 | Expose VIEWPORT_SIZE in shader language. | Ferenc Arn | |
Fixes #11710. | |||
2017-10-22 | Many fixes to SSAO, should be good now. | Juan Linietsky | |
2017-09-29 | Ability to set a custom FOV makes it possible to use sky on orthogonal view. ↵ | Juan Linietsky | |
Closes #9186 | |||
2017-09-21 | Added proximity and distance fade to SpatialMaterial | Juan Linietsky | |
2017-09-14 | Renamed function arguments to keep them consistent between declaration and ↵ | Wilson E. Alvarez | |
implementation | |||
2017-09-04 | Fix opaque pre pass, closes #10472 | Juan Linietsky | |
2017-09-01 | Merge pull request #10846 from hpvb/fix-sign-compare | Rémi Verschelde | |
Fix signed and unsigned comparisons | |||
2017-09-01 | Fix some argument ordering, closes #10010 | Juan Linietsky | |
2017-09-01 | Removed ontop property, added a material rendering priority system. Fixes ↵ | Juan Linietsky | |
#9935, closes #10135 | |||
2017-09-01 | Fix signed and unsigned comparisons | Hein-Pieter van Braam | |
The first in my quest to make Godot 3.x compile with -Werror on GCC7 | |||
2017-08-29 | Changed bools to uint32_t as this may be a compiler bug.. | Juan Linietsky | |
2017-08-27 | Use HTTPS URL for Godot's website in the headers | Rémi Verschelde | |
2017-08-21 | Several fixes to subsurface scattering. Closes #9530 | Juan Linietsky | |
2017-08-19 | -Fix all shadow and culling related issues, fixes #9330 | Juan Linietsky | |
2017-08-16 | Synchronize parameter names in definition and declaration | TwistedTwigleg | |
Fixes #10244. | |||
2017-08-11 | Some fixes for shaders and WebGL2 | Fabio Alessandrelli | |
Add padding to UBO data to be multiple of 16 bytes Add precision definition for samplers Replace texture2D (deprecated) with texture in shaders | |||
2017-07-22 | Several changes to better run in mobile. | Juan Linietsky | |
2017-07-15 | Lots of work on Audio & Physics engine: | Juan Linietsky | |
-Added new 3D stream player node -Added ability for Area to capture sound from streams -Added small features in physics to be able to properly guess distance to areas for sound -Fixed 3D CollisionObject so shapes are added the same as in 2D, directly from children -Fixed KinematicBody API to make it the same as 2D. | |||
2017-07-08 | Merge pull request #9564 from Noshyaar/pr-threshold | Rémi Verschelde | |
Refactor 'treshold' to 'threshold' | |||
2017-07-08 | Added triplanar mapping, toon mode, and more specular modes for materials. ↵ | Juan Linietsky | |
Added multipass support for materials. | |||
2017-07-08 | Refactor 'treshold' to 'threshold' | Poommetee Ketson | |