Age | Commit message (Collapse) | Author |
|
Fix that Top Level CanvasItems are unselectable in editor
|
|
Previously the parent Transform2D was included in the calculation
|
|
Rename `--vk-layers` command line argument to `--gpu-validation`
|
|
The new name is independent of the graphics API in use.
This prepares Godot for implementations of graphics APIs other than Vulkan.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
enum conversion)
|
|
|
|
|
|
Adds missing class documentation for NavigationMeshGenerator bake() and clear() functions.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
direction
|
|
|
|
|
|
|
|
While default ReCast library has support for 0.0 'sample_distance' the Godot implementation does not an crashes.
Previously Godot would set all sample_distance values below 0.9 to 0 which causes the crashes.
This limits the sample_distance range selection to 0.1 - 16.0 and also clamps sample_distance that are below 0.1 before ReCast receives them.
|
|
|
|
Implement TextMesh.
|
|
|
|
|
|
|
|
Calinou/editor-gpuparticles3d-tweak-attractor-gizmo
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Map is unnecessary and inefficient in almost every case.
* Replaced by the new HashMap.
* Renamed Map to RBMap and Set to RBSet for cases that still make sense
(order matters) but use is discouraged.
There were very few cases where replacing by HashMap was undesired because
keeping the key order was intended.
I tried to keep those (as RBMap) as much as possible, but might have missed
some. Review appreciated!
|
|
Fixes #61063
|
|
|
|
|
|
|
|
This makes attractor gizmos (orange) distinguishable from
collision gizmos (blue).
|
|
This makes documentation for the Performance class 100% complete.
|
|
Automatically disables threaded NavigationMesh bake when OS does not support threads.
|