Age | Commit message (Collapse) | Author |
|
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.
|
|
|
|
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).
|
|
|
|
|
|
|
|
The name was confusing as this signal is emitted around the same time as
`tree_exiting` and `NOTIFICATION_EXIT_TREE`, i.e. while the child node is
still in tree.
Fixes #59210.
|
|
|
|
|
|
(cherry picked from commit 5478afdb1e16ab3eda7b316dee28f14890085026)
|
|
Adds helper functions to work with the navigation layer bitmask.
|
|
Add NavigationAgent desired path distance
|
|
Disable VRAM compression by default for small textures in Detect 3D
|
|
Expose panning strength parameters
|
|
|
|
|
|
|
|
|
|
|
|
Clarify `all` and `any` documentation for empty arrays
|
|
(cherry picked from commit e047c50068955c3ffa1dddcdd85222dd87564724)
|
|
|
|
OSX supports everything by default,
Linux is also capable of supporting every function key,
Windows as I know support only up to F24
|
|
Remove engine version from visual shader
|
|
|
|
TextServer.
|
|
|
|
AStar2D bidirectional
|
|
Calinou/crash-handler-message-tweak-exported-project
|
|
|
|
`SurfaceTool.set_custom_format` Fixes and documentation.
|
|
- Renames setter from set_item_h_offset()
- Adds getter
|
|
Streamline Navigation layer function names.
|
|
Fix mistake making `set_custom_format` impossible to use.
Automatically forward custom flags in `SurfaceTool.commit`.
Add documentation in `SurfaceTool` and `Mesh` for custom channels.
Deprecate `SurfaceTool.generate_lod` and expose `ImporterMesh.generate_lods`.
|
|
Add NavigationAgent2D/3D set_navigation_map() function
|
|
Add NavigationAgent set_navigation_map() and get_navigation_map() function.
|
|
Calinou/basematerial3d-nearest-height-always-linear
Always sample the heightmap with linear filtering in BaseMaterial3D
|
|
Nearest-neighbor filtering of the heightmap results in a broken
appearance, with and without Deep Parallax enabled on the material.
Linear filtering results in a more expected appearance. This does
not affect other texture maps such as albedo, normal or roughness.
|
|
|
|
|
|
Document NavigationServer API navigation agent callbacks.
|
|
|
|
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).
|
|
|
|
|
|
|
|
This documents those 3 classes with 100% completion, while also
documenting the relevant project settings.
|
|
|