Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-11-14 | Ability to toggle flipping of tangent and binormal in depth parallax ↵ | Juan Linietsky | |
materials. Fixes #15934. | |||
2018-11-04 | Remove animation loop from ParticlesMaterial + improvements to CPUParticles2D | JFonS | |
Remove animation loop from ParticlesMaterial and move it to SpatialMaterial for 3D particles and Particles2D for the 2D case. Added animation to CPUParticles2D as well as the "Convert to CPUParticles2D" to the PAarticles2D menu. | |||
2018-10-03 | Fix some warnings raised by MSVC 2017 | Rémi Verschelde | |
Disabled signed/unsigned warnings like for GCC/Clang (warning C4018: '>=': signed/unsigned mismatch). Fixes the following MSVC 2017 warnings: ``` core\image.cpp(999): warning C4804: '>': unsafe use of type 'bool' in operation core\io\compression.cpp(178): warning C4334: '<<': result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) editor\doc\doc_dump.cpp(226): warning C4334: '<<': result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) scene/resources/material.h(289): warning C4334: '<<': result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) scene/resources/material.h(298): warning C4334: '<<': result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) editor\editor_themes.cpp(379): warning C4805: '==': unsafe mix of type 'int' and type 'bool' in operation ``` | |||
2018-09-28 | -Lightmap and lightmap capture support for GLES2 | Juan Linietsky | |
-Added hint to not show some properties when running on low end gfx | |||
2018-09-13 | Set uniform default values in inspector | JFonS | |
2018-09-12 | Make core/ includes absolute, remove subfolders from include path | Rémi Verschelde | |
This allows more consistency in the manner we include core headers, where previously there would be a mix of absolute, relative and include path-dependent includes. | |||
2018-08-22 | Add distance based dithering to the default material. | Juan Linietsky | |
2018-07-26 | Added keep scale flag to billboard materials | JFonS | |
2018-07-17 | Add disable ambient light flag to shaders and materials | Alex Roman | |
2018-07-14 | Visual Shaders are back. | Juan Linietsky | |
2018-06-21 | Add render mode to ensure correct normals when using non-uniform scaling | JFonS | |
2018-03-29 | Added flag on SpatialMaterial to disable shadows | JFonS | |
2018-02-21 | Fix typos with codespell | luz.paz | |
Found via `codespell -q 3 --skip="./thirdparty,./editor/translations" -I ../godot-word-whitelist.txt` Whitelist consists of: ``` ang doubleclick lod nd que te unselect ``` | |||
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-06 | -Fix particles with size==0, closes #13931 | Juan Linietsky | |
-Fixed material previews (dont show sphere unless for spatial) | |||
2017-12-04 | -Implemented Proxy Textures (needed to solve the problem with ViewportTexture) | Juan Linietsky | |
-Properly use hierarchy to initialize resources local to scene (solves problem of GUI in 3D) | |||
2017-11-15 | -Ability to choose operator for emission, closes #10441 | Juan Linietsky | |
-Ability to use proper operator for GI Probe, closes #10534 -Closes #12938 as it's no longer needed (thanks for the work though) | |||
2017-10-23 | Revert "Rename Schlick GGX to GGX." | Rémi Verschelde | |
2017-10-21 | Rename Schlick GGX to GGX. | Ferenc Arn | |
Schlick's approximation and GGX are orthogonal concepts. Furthermore, it's usage so far has been inconsistent: we don't even use it with anisotropic SchlickGGX, and Burley (Disney) diffuse does use it while its name doesn't indicate it. The use of Schlick's approximation in Burley and GGX is an implementation detail and doesn't need to be reflected to the namig. | |||
2017-10-19 | Fix spatial shader conversion with texture | Hiroshi Ogawa | |
2017-10-01 | Switched Burley/Lambert, and restored diffuse term to 0-1 range for ↵ | Juan Linietsky | |
compatibility. | |||
2017-09-23 | Added light affect parameter to baked AO | Juan Linietsky | |
2017-09-22 | Ability to convert from SpatialMaterial to ShaderMaterial | Juan Linietsky | |
2017-09-21 | Added proximity and distance fade to SpatialMaterial | Juan Linietsky | |
2017-09-05 | hide next pass for material types that make it pointless, closes #10686 | Juan Linietsky | |
2017-09-03 | Added transmission shader parameter. | Juan Linietsky | |
2017-09-02 | Made triplanar local space by default, world space optionally, closes #10159 | Juan Linietsky | |
2017-09-01 | Removed ontop property, added a material rendering priority system. Fixes ↵ | Juan Linietsky | |
#9935, closes #10135 | |||
2017-08-31 | Merge pull request #10401 from maxim-sheronov/fix_particles_spritesheet | Rémi Verschelde | |
Fix UV calculation for spritesheet in particles | |||
2017-08-27 | Use HTTPS URL for Godot's website in the headers | Rémi Verschelde | |
2017-08-23 | Fix UV calculation for spritesheet in particles | Maxim Sheronov | |
Fix names of uniforms and make correct uv offset calculation | |||
2017-08-16 | Synchronize parameter names in definition and declaration | TwistedTwigleg | |
Fixes #10244. | |||
2017-08-08 | -Restored Sprite3D to working function, fixes #2061, fixes #9738 | Juan Linietsky | |
-Restored an alpha scissor property in Material | |||
2017-08-02 | -Added GLTF scene support (still missing animations and .glb extension) | Juan Linietsky | |
-Fixed bugs regarding tangent generation in SurfaceTool | |||
2017-07-22 | Several changes to better run in mobile. | Juan Linietsky | |
2017-07-08 | Some adjustments to toon material to make it more flexible | Juan Linietsky | |
Ability to also disable specular | |||
2017-07-08 | Added triplanar mapping, toon mode, and more specular modes for materials. ↵ | Juan Linietsky | |
Added multipass support for materials. | |||
2017-07-08 | -Added triplanar mapping modes | Juan Linietsky | |
-Some fixes to shader lang | |||
2017-06-28 | Reworked translation system | Juan Linietsky | |
-Label and Button reload translation on the fly -Resources are loaded and reload depending on locale | |||
2017-06-15 | Rename Godot-specific resource extensions | George Marques | |
2017-06-05 | -working SCREEN_TEXTURE, SCREEN_UV shader variables | Juan Linietsky | |
-Added refraction support for default material -Enabled BCS adjustments, as well as color correction. | |||
2017-06-04 | Added depth texture support (using parallax) to default material. | Juan Linietsky | |
2017-06-01 | Rework shading modes and change location of light shader | Juan Linietsky | |
2017-05-31 | rewritten PBR implementation to make it friendlier with Blender | Juan Linietsky | |
2017-04-08 | Add "Godot Engine contributors" copyright line | Rémi Verschelde | |
2017-04-06 | New particle system, mostly working, some small features missing. | Juan Linietsky | |
2017-03-05 | A Whole New World (clang-format edition) | Rémi Verschelde | |
I can show you the code Pretty, with proper whitespace Tell me, coder, now when did You last write readable code? I can open your eyes Make you see your bad indent Force you to respect the style The core devs agreed upon A whole new world A new fantastic code format A de facto standard With some sugar Enforced with clang-format A whole new world A dazzling style we all dreamed of And when we read it through It's crystal clear That now we're in a whole new world of code | |||
2017-01-02 | ObjectTypeDB was renamed to ClassDB. Types are meant to be more generic to ↵ | Juan Linietsky | |
Variant. All usages of "type" to refer to classes were renamed to "class" ClassDB has been exposed to GDScript. OBJ_TYPE() macro is now GDCLASS() |