Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-08-09 | Replace 'ERR_EXPLAIN' with 'ERR_FAIL_*_MSG' in "main" and "servers" directories | Michael Alexsander Silva Dias | |
2019-07-23 | Fix some code found by Coverity Scan and PVS Studio | qarmin | |
2019-06-26 | Some code changed with Clang-Tidy | qarmin | |
2019-06-16 | Merge pull request #29764 from Calinou/boot-splash-no-filter-option | Rémi Verschelde | |
Add an option to disable boot splash filtering | |||
2019-06-15 | Add an option to disable boot splash filtering | Hugo Locurcio | |
Disabling filtering is usually desired in projects using a pixel art style. This closes #19415. | |||
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-05-13 | Implement ability to render viewports directly to screen | clayjohn | |
2019-04-30 | Merge pull request #25670 from aqnuep/bake_mode_affect_gi_prove | Rémi Verschelde | |
Disable GI probe capturing lights with bake mode disabled | |||
2019-04-23 | Disable GI probe capturing lights with bake mode disabled | Daniel Rakos | |
The bake mode property of lights previously didn't affect GI probes. This change makes the GI probe ignore lights that have their bake mode set to disabled. | |||
2019-04-23 | Merge pull request #26064 from JFonS/add_frustum_camera_mode | Hein-Pieter van Braam | |
Add FRUSTUM camera mode, allowing tilted frustums | |||
2019-03-14 | Fix bone aabb calculation, which caused a skeletal mesh culling issue | Windy Darian | |
There was a bug that could result in most bone aabb boxes ending up with tiny size upon import and mess up with culling of skeletal meshes. This fixes it. | |||
2019-02-26 | -Properly handle missing ETC support on export | Juan Linietsky | |
-Added ability for resource importers to save metadata -Added ability for resource importers to validate depending on project settings | |||
2019-02-20 | Add -Wshadow=local to warnings and fix reported issues. | marxin | |
Fixes #25316. | |||
2019-02-19 | Add FRUSTUM camera mode, allowing tilted frustums | JFonS | |
This new camera mode makes it easy to create tilted frustums for mirror or portal effects. This work was kindly sponsored by IMVU. | |||
2019-01-25 | Add "Apple" to the list of GPU vendors where depth prepass is disabled. | Juan Linietsky | |
2019-01-07 | doc: Fix wrong references found by Sphinx and new makerst.py | Rémi Verschelde | |
2019-01-01 | Update copyright statements to 2019 | Rémi Verschelde | |
Happy new year to the wonderful Godot community! | |||
2018-12-27 | doc: Sync classref with current source | Rémi Verschelde | |
Fix various code formatting issues and argument names. | |||
2018-12-15 | Adding option to re-orient our sky | Bastiaan Olij | |
2018-12-04 | doc: Sync classref with current source | Rémi Verschelde | |
2018-11-19 | Ensure bone AABBs are properly transformed to affect mesh AABB, fixes #19281 | Juan Linietsky | |
2018-11-14 | Merge pull request #23248 from dlasalle/fog | Juan Linietsky | |
Add parameters for fog end depth and use alpha as density. | |||
2018-11-13 | Add parameter for fog max depth and use alpha as density. | Dominique LaSalle | |
2018-11-12 | Merge pull request #23254 from ibrahn/gles2-var-init-cleanup | Rémi Verschelde | |
Cleaning up some uninitialised variables in GLES2 stuff. | |||
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-11-02 | Cleaning up some uninitialised variables in GLES2 stuff. | Ibrahn Sahir | |
Initialise keep_original_textures and use_fast_texture_filter in storage config. Removed any other variables from storage config that were both unused and uninitialised to avoid future confusion (if they're needed it's easier to spot an uninitialised variable problem in a PR that adds the variable again rather than just uses it). Copied storage Texture struct constructor from GLES3 implementation (except where variables were already initialised with different values). Gives us sensible tested defaults for previously uninitialised vars. Added assignments for state.current_main_tex based on same in GLES3. | |||
2018-10-30 | Fix canvas stacking not deterministic on same layer | Pedro J. Estébanez | |
Fixes #22687. | |||
2018-10-24 | Add some limits on the Editor Settings | Superwaitsum | |
2018-10-02 | Merge pull request #21436 from CptPotato/tonemap-fixes | Rémi Verschelde | |
tonemapping fixes | |||
2018-09-23 | -Rewrote GLES2 lighting and shadows and optimized state changes, did many ↵ | Juan Linietsky | |
optimizations, added vertex lighting. -Did some fixes to GLES3 too | |||
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-27 | fix reinhard tonemapper, modified filmic tonemapper, added internal exposure ↵ | alex-poe | |
bias | |||
2018-08-21 | BPTC support | elasota | |
2018-08-21 | Fix arg name in docs, some copy-paste errors | Poommetee Ketson | |
2018-07-30 | add 3D textures | Thomas Herzog | |
2018-07-27 | Rename flag to better name | Juan Linietsky | |
2018-07-26 | doc: Sync classref with current source | Rémi Verschelde | |
Fix various missing arguments in bindings. | |||
2018-07-26 | Reduce unnecessary COW on Vector by make writing explicit | Hein-Pieter van Braam | |
This commit makes operator[] on Vector const and adds a write proxy to it. From now on writes to Vectors need to happen through the .write proxy. So for instance: Vector<int> vec; vec.push_back(10); std::cout << vec[0] << std::endl; vec.write[0] = 20; Failing to use the .write proxy will cause a compilation error. In addition COWable datatypes can now embed a CowData pointer to their data. This means that String, CharString, and VMap no longer use or derive from Vector. _ALWAYS_INLINE_ and _FORCE_INLINE_ are now equivalent for debug and non-debug builds. This is a lot faster for Vector in the editor and while running tests. The reason why this difference used to exist is because force-inlined methods used to give a bad debugging experience. After extensive testing with modern compilers this is no longer the case. | |||
2018-07-25 | Merge pull request #18368 from Gamblify/RasterizerEngineSync | Rémi Verschelde | |
sync rasterizers with engine | |||
2018-07-24 | Removed unnecessary assignments | Wilson E. Alvarez | |
2018-07-23 | Merge pull request #12678 from AndreaCatania/soft | Juan Linietsky | |
Soft body | |||
2018-07-23 | Implemented Soft body | AndreaCatania | |
- Soft Body Physics node - Soft Body Rendering - Soft body Editor - Soft body importer | |||
2018-07-23 | Fix issues with CPUParticles and related conversion from Particles. Closes ↵ | Juan Linietsky | |
#20126 | |||
2018-07-23 | Added some API to visual server so from control VRAM buffer is more easy | AndreaCatania | |
2018-07-21 | -Fix disable_3d flag | Juan Linietsky | |
-Add extra flag optimize=[size,speed] to be able to prioritize size | |||
2018-07-17 | Revert "Fix #19507 Not emitted particles affects performance" | Max Hilbrunner | |
2018-07-17 | Merge pull request #19764 from malbach/godot_malbach | Max Hilbrunner | |
Fix #19507 Not emitted particles affects performance | |||
2018-07-06 | Support for CPU based particles, which aids compatibility with OpenGL ES 2.0 | Juan Linietsky | |
2018-06-25 | Fix #19507 Not emitted particles affects performance | malbach | |