Age | Commit message (Collapse) | Author |
|
Spartan Engine has recently removed its own internal TAA in favor
of FSR 2.0. The link has been changed to point to a fixed commit,
so the link will keep working as long as the repository exists.
|
|
|
|
Rationalize certain cases of texture usage flags
|
|
|
|
|
|
Octree is no longer used in 4.x.
|
|
|
|
|
|
These methods weren't exposed to the scripting API.
Anisotropy was used in earlier iterations of VoxelGI, but it was
removed as it was too expensive.
|
|
|
|
|
|
This makes its organization consistent with MovieWriterMJPEG.
|
|
|
|
Use the Static global illumination mode in GeometryInstance3D by default
|
|
|
|
Consider uniform writability part of the interface of the set
|
|
raw render to the screen. Now, it commits
the fsr upscaled image
|
|
|
|
Split FOG
Split visibility notifier
Final cleanup of storage classes
|
|
|
|
- Check for exhaustive usage flags for depth buffer
- Remove uneeded storage flag from normal-roughness buffer
|
|
|
|
- Rename audio mix rate setting as the suffix is now part of the
property hint. This is also more consistent with existing mix rate
project settings.
- Improve the MovieWriter class reference.
- Tweak warning message about audio possibly going out of sync.
|
|
Moved cube_to_dp and cubemap logic into CopyEffects
|
|
|
|
|
|
Adds a helper function to check if a world space position is currently owned by a navigation region.
|
|
This makes VoxelGI and SDFGI work out of the box with primitive meshes,
loaded OBJ meshes and CSG nodes.
|
|
Adds map_force_update() function to NavigationServer. This function immediately flushes the Navigationserver command queue and recalculates all navigationmeshes and region connections for a specific map.
|
|
|
|
|
|
Fix ogg edge cases
|
|
Remove redundant thread sync counter draw_pending
|
|
|
|
|
|
Added new function that returns all created navigation map RIDs from the NavigationServer. The function returns both 2D and 3D created navigation maps as technically there is no distinction between them.
|
|
This makes it work consistently for motion vectors in all functions, including user-defined ones.
|
|
|
|
|
|
Implement a Movie Maker mode
|
|
* Allows running the game in "movie writer" mode.
* It ensures entirely stable framerate, so your run can be saved stable and with proper sound (which is impossible if your CPU/GPU can't sustain doing this in real-time).
* If disabling vsync, it can save movies faster than the game is run, but if you want to control the interaction it can get difficult.
* Implements a simple, default MJPEG writer.
This new features has two main use cases, which have high demand:
* Saving game videos in high quality and ensuring the frame rate is *completely* stable, always.
* Using Godot as a tool to make movies and animations (which is ideal if you want interaction, or creating them procedurally. No other software is as good for this).
**Note**: This feature **IS NOT** for capturing real-time footage. Use something like OBS, SimpleScreenRecorder or FRAPS to achieve that, as they do a much better job at intercepting the compositor than Godot can probably do using Vulkan or OpenGL natively. If your game runs near real-time when capturing, you can still use this feature but it will play no sound (sound will be saved directly).
Usage:
$ godot --write-movie movie.avi [scene_file.tscn]
Missing:
* Options for configuring video writing via GLOBAL_DEF
* UI Menu for launching with this mode from the editor.
* Add to list of command line options.
* Add a feature tag to override configurations when movie writing (fantastic for saving videos with highest quality settings).
|
|
Clean up and do fixes to hash functions and newly introduced murmur3 hashes in #61934
* Clean up usage of murmur3
* Fixed usages of binary murmur3 on floats (this is invalid)
* Changed DJB2 to use xor (which seems to be better)
|
|
This allows for previewing the effects of the various 3D scaling
project settings without having to restart the editor.
|
|
Introduce eye_offset for correcting stereoscopic reflections
|
|
Use view instead of vertex for reflections.
|
|
|
|
Fix glow in Mix mode not working correctly when FXAA is enabled
|
|
TextServer.
|
|
Glow must be performed after FXAA to ensure correct appearance.
|
|
Streamline Navigation layer function names.
|