Age | Commit message (Collapse) | Author |
|
Add the ability to drag the code completion scrollbar using the mouse click
|
|
to avoid potential hash collisions.
|
|
|
|
|
|
|
|
Add ability to export Node pointers as NodePaths
|
|
This PR implements:
* A new hint: PROPERTY_HINT_NODE_TYPE for variant type OBJECT, which can take specific node types as hint string.
* The editor will show it as a node path, but will set it as a pointer to a node from the current scene if you select a path.
* When scene is saved, the node path is saved, then restored as a pointer.
NOTE: This is a proof of concept and this approach will most likely not work. The reason if that, if the node referenced is deleted, then when trying to edit this the node will become invalid.
Potential workarounds: Since this uses the Variant API, it should obtain the pointer from the Variant object ID. Yet, this would either only really work in GDScript or it would need to be implemented with workarounds in every language.
Alternative ways to make this work: Nodes could export an additional property with a node path (like for which_node, it could be which_node_path).
Another alternative: Path editing could happen as a hidden metadata (ignoring the pointer).
|
|
Fix CapsuleMesh height/radius setters
|
|
Remake ResourceCache thread safety code and API
|
|
Make `Curve2D` and `Curve3D` more consistent with `Curve` and avoid
calling `notify_property_list_changed` when the list of points doesn't
change.
|
|
|
|
|
|
Document most of the Window's members
|
|
Adds two new properties to NavigationMesh resources to restrict the navmesh baking to an area enclosed by an AABB with volume.
|
|
|
|
|
|
Helps unblock #56597
|
|
|
|
|
|
|
|
|
|
Fix ResourceLoaderText::save_as_binary()
|
|
* 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
|
|
Previously, only ShaderMaterial overrides could be added.
|
|
Remove spaces in `SubResource()/ExtResource/Resource()` in text resources
|
|
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)
|
|
These spaces are not needed for the file to be successfully parsed.
Other types such as Vector3 are no longer serialized with spaces
after the opening parenthesis and before the closing parenthesis,
so this is also more consistent.
|
|
|
|
Used by resource loader, it would always add properties as both sync and
spawn, disregarding the actual option value.
|
|
Remove engine version from visual shader
|
|
TextServer.
|
|
`SurfaceTool.set_custom_format` Fixes and documentation.
|
|
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`.
|
|
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.
|
|
- Camera2D.zoom
- CanvasLayer.scale
- ParallaxBackground.scroll_base_scale
- ParallaxLayer.motion_scale
- Polygon2D.texture_scale
- BaseMaterial3D.uv1_scale
- BaseMaterial3D.uv2_scale
|
|
|
|
|
|
|
|
Fix type hints for AnimationLibrary's signals' arguments
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This property hint is identical to Node3D's `sky_rotation` property
and provides degree-based editing.
|
|
|
|
Remove slash delimiter from NavigationMesh properties.
|
|
Fix for regression of an ImageTexture being imported
|