Age | Commit message (Collapse) | Author |
|
Remake ResourceCache thread safety code and API
|
|
|
|
|
|
For in-engine processing allow saving openexr to a buffer.
|
|
piiertho/feature/add-core-types-enum-description-to-extention-api-json
Add core types enums description to extension api json
|
|
HashMap/HashSet optimization: fast modulo
|
|
Implement varargs in Methodinfo
|
|
|
|
|
|
|
|
|
|
Variadic templates are an awful thing. Implements #62233 using them in MethodInfo so less changes are required.
|
|
|
|
Helps unblock #56597
|
|
* Ensures thread safety when resources are destroyed.
* Simplified API by always forcing `ResourceCache::get_ref`, which needs less hacks and is fully thread safe.
* Removed RWLock for resources because its not possible to use for the new logic. Should not be a problem.
Supersedes #57533
|
|
|
|
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)
|
|
|
|
|
|
|
|
Ensure AudioFrame variables l and r are always initialised
|
|
Disable VRAM compression by default for small textures in Detect 3D
|
|
Make enum/constant binds 64-bit.
|
|
|
|
|
|
|
|
OSX supports everything by default,
Linux is also capable of supporting every function key,
Windows as I know support only up to F24
|
|
|
|
|
|
AStar2D bidirectional
|
|
|
|
|
|
Hash function improvements
|
|
|
|
|
|
|
|
Co-authored-by: redlamp <244062+redlamp@users.noreply.github.com>
|
|
This is done to prevent reducing texture quality when it doesn't save
much video memory, especially for pixel art.
The size threshold can be adjusted in the project settings.
To get the previous behavior where textures detected to be used in 3D
had their compression mode always set to VRAM, set this to the lowest value
(16).
|
|
|
|
touilleMan/native_extension_open_library_handle_initialization_error
Fix NativeExtension::open_library return value when the undelying lib fails to initialize
|
|
to initialize
|
|
|
|
|
|
I had an error while importing my GLB file from 32-bit precision
floating point,
I guess this was forgotten while implementing 64-bit precision floating
point.
I'm not sure if there's any other left to do though.
|
|
Adds some translator comments to solve some questions raised on Weblate.
|
|
Initial TAA implementation
|
|
Fix saving section-less keys in `ConfigFile`
|