Age | Commit message (Collapse) | Author |
|
Sort unused palette commands alphabetically
|
|
Fix signature for `folder_moved` signal of `FileSystemDock`
|
|
|
|
Fixes #67039
`get_index` counts internal children by default but `move_child` ignores them therefore `move_child` had no effect.
The call to `set_current_tab` is not needed anymore in Godot 4 since the current tab will change when calling `move_child`.
|
|
|
|
change warnings=all to use /W4.
|
|
ColorPicker UX
|
|
Include inherited classes in Filter Nodes' "type:" filter & fix "group:"
|
|
Debugger: Fix fetching source to link C++ error on GitHub
|
|
Expose and warn about Node Filters in Scene Tree Dock
|
|
Split `action_map_editor` file into one file per class it contained.
|
|
Also fixes not all private, internal groups being skipped in the "group:" filter.
|
|
Adds "Filter by Type" and "Filter by Group" in the Scene Tree Dock's MenuButton.
Hovering on them displays an useful tooltip.
When selecting these items, the matching parameter is appended to the terms, and the caret is automatically brought to the end.
When typing a filter that cannot be identified, a warning icon is displayed. The reason is explained as a tooltip.
The same options are also quickly available by right-clicking or middle-clicking in the text field.
|
|
Fixes #66974.
|
|
* ActionMapEditor
* EventListenerLineEdit
* InputEventConfigurationDialog
|
|
Add Multi-caret support to TextEdit
|
|
|
|
Prevent unsaved inherited scenes from being detected as the 'placeholder' scene
|
|
Fix `hide_slider` vs `no_slider` inconsistency in editor property code
|
|
Rename Projection `matrix` to `columns`
|
|
Add searching by event in Editor Settings shortcuts and Project Settings input map.
|
|
Disconnect TileSet from source editor if no sources
|
|
Split script navigation state and edit state
|
|
|
|
|
|
Rename remaining "Spatial" in Plugins to "Node3D"
|
|
Allow multiple words in Docs Help Search filter
|
|
schme/66165-fix-shader-list-not-marking-shaders-as-saved
Fix Shader Editor not marking files saved
|
|
For EditorNode3DGizmo:
- `get_spatial_node` -> `get_node_3d`
- `set_spatial_node` -> `set_node_3d`
For EditorPlugin:
- `add_spatial_gizmo_plugin` -> `add_node_3d_gizmo_plugin`
- `remove_spatial_gizmo_plugin` -> `remove_node_3d_gizmo_plugin`
Also renames some internal methods for consistency (`forward_3d_draw_over_viewport` & `forward_3d_force_draw_over_viewport` ...). Basically, Spatial has been completely eradicated.
|
|
This is how most search filters behave.
Refactors the search's match_classes phase to reduce code duplication.
|
|
Fix creating Nodes by DoubleClick from Recent list
|
|
|
|
Implement `GDScriptTextDocument::willSaveWaitUntil` to clean up outdated documents before saving
|
|
Fix selection applying to hidden Nodes when filtering Scene Tree Editor
|
|
Define bold, italics and mono fonts in editor log for `print_rich()`
|
|
Move "Create Debug Tangents" on MeshInstance3D into an editor plugin
|
|
Remove unsupported `NO_SAFE_CAST`/`-fno-rtti` from Android build
|
|
documents before saving
Implement `GDScriptTextDocument::willSaveWaitUntil` to clean up outdated documents before saving,
then update the document in `GDScriptTextDocument::didSave`.
|
|
|
|
Instead of exporting the "create_debug_tangents" function via
METHOD_FLAG_EDITOR it gets executed by an editor plugin.
This moves it from the "Manage object properties" menu into a mesh menu. It also adds undo/redo functionality to the create debug tangents option.
|
|
|
|
|
|
Remember tile source sort between sessions
|
|
Fix the flickering of the line gutter icon when saving
|
|
Fix the file newer dialog that keeps popping up
|
|
akien-mga/editorspinslider-fix-grabber-action-area
EditorSpinSlider: Make sure grabber doesn't get hidden during grabbing
|
|
|
|
The focus is switching back and forth between the popup dialog and
the editor window, causing an infinite loop.
Fix #65824.
|
|
input map.
* Focus into the LineEdit, then perform input to search the list of events by the events assigned.
* New specialised editor-only control for this: EventListenerLineEdit. Line edit is a good candidate for such a control because you can focus it, override it's input handling, and show the event all in one control.
Update InputEventConfigurationDialog to use event listener line edit rather than the separate tabs.
* Cleaner look - no need for tabs.
* Simpler code.
|
|
Android was the last platform to still attempt to disable RTTI (for binary
size), but both the Android editor and now the ICU library used by templates
need RTTI.
There could still be the possibility to support this for non-ICU template
builds (i.e. without the TextServerAdvanced module), but since this isn't one
of the build configurations we test regularly it's pretty risky to keep this
option only for that specific use case. And our code is already littered with
`dynamic_cast`s which weren't guarded with `!defined(NO_SAFE_CAST)`.
|