Age | Commit message (Collapse) | Author |
|
Found via `codespell -q 3 -S ./thirdparty,*.po,./DONORS.md -L ackward,ang,ans,ba,beng,cas,childs,childrens,dof,doubleclick,fave,findn,hist,inout,leapyear,lod,nd,numer,ois,ony,paket,seeked,sinc,switchs,te,uint`
|
|
Fix check for the first key in JSON stringify from Dictionary code
|
|
|
|
Fix documentation in StringExtensions
|
|
Fix typo in CollisionObject documentation
|
|
Improve select tool's tooltip for 2D and 3D
|
|
|
|
|
|
Change in PackedByteArray decode api and docs
|
|
Add a simple C# `.editorconfig`
|
|
Fix scene import following List iterator changes
|
|
Documentation for new PackedByteArray::to_***_array methods
Documentation for to_byte_array method for PackedInt32/Int64/Float32/Float64Array
|
|
|
|
Implement Resource UIDs
|
|
Use C++ range iterators for Lists in many situations
|
|
* Most resource types now have unique identifiers.
* Applies to text, binary and imported resources.
* File formats reference both by text and UID (when available). UID always has priority.
* Resource UIDs are 64 bits for better compatibility with the engine.
* Can be represented and used textually, example `uuid://dapwmgsmnl28u`.
* A special binary cache file is used and exported, containing the mappings.
Example of how it looks:
```GDScript
[gd_scene load_steps=2 format=3 uid="uid://dw86wq31afig2"]
[ext_resource type="PackedScene" uid="uid://bt36ojelx8q6c" path="res://subscene.scn" id="1_t56hs"]
```
GDScript, shaders and other special resource files can't currently provide UIDs, but this should be doable with special keywords on the files.
This will be reserved for future PRs.
|
|
Add a tooltip for Inclusive and Self in the editor profiler
|
|
This also changes the display mode tooltips to reflect the fact that
times are now displayed in milliseconds instead of seconds.
|
|
|
|
- Makes tips clearer and more consistent.
- Removes outdated "shift+v" that doesn't work
- Adds Ctrl+RMB for adding nodes at position
- Removes tip for non-existent Alt+Drag in 3D select tool
|
|
|
|
Fix Input get_action_raw_strength binding
|
|
Fix Popup submenu in single-window mode
|
|
|
|
Node3D gizmo improvements
|
|
Revert unnecessary changes to VisualScriptEmitSignal
|
|
* Clean-up of node_3d_editor_plugin.{h,cpp}: removed unused code, fixed some bugs.
* Moved node_3d_editor_gizmos.{h,cpp} to editor/plugins.
* Added support for multiple gizmos per node. This means custom gizmos will no longer override the built-in ones and that multiple gizmos can be used in more complex nodes.
* Added support for handle IDs. When adding handles to a gizmo, an ID can be specified for each one, making it easier to work with gizmos that have a variable number of handles.
* Added support for subgizmos, selectable elements that can be transformed without needing a node of their own. By overriding _subgizmo_intersect_frustum() and/or _subgizmo_intersect_ray() gizmos can define which subgizmos should be selected on a region or click selection. Subgizmo transformations are applied using get/set/commit virtual methods, similar to how handles work.
|
|
The internal processing code only works for OS windows, since it takes
the mouse position relative to the window and not the viewport. Now we
make sure it's not called in single-window mode.
|
|
Revert unnecessary changes to VisualScriptEmitSignal, commit 2032b56005b2f6add6b105a00f04c05f9b292eec
|
|
Expose an ImportOrder enum in ResourceImporter
|
|
Fix UndoRedo crash when clearing history
|
|
Move `alert` function from `DisplayServer` to `OS`.
|
|
|
|
Show tooltips even when paused or time_scale is 0
|
|
|
|
Don't set metadata_label font if it doesn't exist
|
|
This pull request fixes an assortment of typos and improves conciseness in `Animation`, `Area2D`, `Array`, `ArrayMesh`, `Control`, `Directory`, `EditorPlugin`, `Engine`, and `OS`.
|
|
|
|
|
|
Clarify the purpose of the default asset library URLs in the editor
|
|
Fix GLTF crash when the material is not set.
|
|
Allow for easier editing of rect CollisionShape2D
|
|
`localhost` was removed as it won't work out of the box. It can be added
by the user if they're working on the asset library itself.
This won't affect existing installations due to how the editor settings
are stored, but existing installations will keep working fine.
|
|
This avoids using magic numbers in code.
|
|
Sometimes there are meshes that doesn't have materials, so make sure to check this case before extracting the name.
|
|
|
|
This reverts commit 7d20d78847b24586b3f25beb23b41d015a25fb0a.
# Conflicts:
# editor/scene_tree_editor.cpp
|
|
|
|
Make Object "meta" functions take StringName.
|
|
Fix `TexturePreview` crashing
|