Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #98039 from aaronfranke/button-icon | Thaddeus Crews | 2024-10-29 | 1 | -15/+15 |
|\ | | | | | | | Rename internal Button `*_icon` functions to `*_button_icon` to match exposed methods | ||||
| * | Rename internal Button icon to button_icon to match exposed methods | Aaron Franke | 2024-10-29 | 1 | -15/+15 |
| | | |||||
* | | Add icon for Inspector dock context menu Show in FileSystem item | ev13bird | 2024-10-08 | 1 | -0/+1 |
|/ | |||||
* | Merge pull request #96542 from Maran23/inspector-scrolls-away | Rémi Verschelde | 2024-10-01 | 1 | -1/+1 |
|\ | | | | | | | Fix Inspector may scroll away when editing a property that adds or removes sub properties | ||||
| * | Fix Inspector may scrolls away when editing a property that adds or removes ↵ | Marius Hanl | 2024-09-04 | 1 | -1/+1 |
| | | | | | | | | sub properties | ||||
* | | Extract editor main screen | kit | 2024-09-09 | 1 | -1/+2 |
|/ | |||||
* | Expose EditorUndoRedoManager's clear_history() | kobewi | 2024-08-29 | 1 | -1/+1 |
| | |||||
* | Remove references to deleted capitalize_properties setting | kobewi | 2024-08-21 | 1 | -4/+5 |
| | |||||
* | Tweak property name style selector in the editor inspector | Hugo Locurcio | 2024-06-20 | 1 | -3/+4 |
| | | | | | | | | | A preview is now displayed in the options' text: - Raw (e.g. "z_index") - Capitalized (e.g. "Z Index") - Localized (e.g. "Z Index") - "Z Index" is localized in the user's language. | ||||
* | [Scene] Add `SceneStringNames::confirmed` | A Thousand Ships | 2024-06-19 | 1 | -1/+1 |
| | |||||
* | [Scene] Add `SceneStringNames::font(_size/_color)` | A Thousand Ships | 2024-06-18 | 1 | -4/+4 |
| | |||||
* | [Scene] Add `SceneStringNames::id_pressed` | A Thousand Ships | 2024-05-30 | 1 | -4/+4 |
| | |||||
* | [Scene] Add SceneStringNames::pressed | A Thousand Ships | 2024-05-14 | 1 | -6/+6 |
| | |||||
* | Editor: Fix categories and tooltips in `TileSet` editor | Danil Alexeev | 2024-05-14 | 1 | -1/+1 |
| | |||||
* | Reduce and prevent unnecessary random-access to `List` | A Thousand Ships | 2024-05-04 | 1 | -3/+3 |
| | | | | | | | | | Random-access access to `List` when iterating is `O(n^2)` (`O(n)` when accessing a single element) * Removed subscript operator, in favor of a more explicit `get` * Added conversion from `Iterator` to `ConstIterator` * Remade existing operations into other solutions when applicable | ||||
* | Fix unexpected auto-translation of more editor components | Haoyu Qiu | 2024-03-28 | 1 | -0/+1 |
| | |||||
* | Fix unexpected auto translation of Tree content | Haoyu Qiu | 2024-03-18 | 1 | -0/+1 |
| | |||||
* | Add const lvalue ref to editor/* container parameters | Muller-Castro | 2024-02-26 | 1 | -1/+1 |
| | |||||
* | Add hover highlight to main editor buttons | Matt Enad | 2024-02-16 | 1 | -3/+11 |
| | | | | Updates styling of the editor run bar, plugin, bottom panel, icon buttons, and main menu buttons for accessibility. | ||||
* | Add support for search shortcut to all docks | passivestar | 2024-01-22 | 1 | -0/+22 |
| | |||||
* | Reorganize code related to editor theming | Yuri Sizov | 2024-01-16 | 1 | -1/+1 |
| | | | | | | | | | | | | | This change introduces a new EditorThemeManager class to abstract theme generatio and its subroutines. Logic related to EditorTheme, EditorColorMap, and editor icons has been extracted into their respective files with includes cleaned up. All related files have been moved to a separate folder to better scope them in the project. This includes relevant generated files as well. | ||||
* | Update deferred calls to use Callables | kobewi | 2024-01-09 | 1 | -9/+0 |
| | |||||
* | Clear sub-resources list when no sub-resource exists | Haoyu Qiu | 2023-12-21 | 1 | -1/+1 |
| | |||||
* | Limit custom icons size in various editor widgets | Yuri Sizov | 2023-10-26 | 1 | -0/+3 |
| | |||||
* | [Editor] Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicable | A Thousand Ships | 2023-09-15 | 1 | -2/+2 |
| | |||||
* | Add EditorStringNames singleton | kobewi | 2023-09-03 | 1 | -24/+25 |
| | |||||
* | Allow EditorInspector to change its property name style when necessary | Haoyu Qiu | 2023-04-29 | 1 | -1/+2 |
| | | | | | | | | | | Previously, an EditorInspector's property name can only be set from outside. Inspectors used for settings needs to respond to changes in editor settings. So a few boilerplate code is almost always needed, including watching for a certain editor setting in `_notification()`. This commit adds a `set_use_settings_style()` function to tell the inspector to watch for editor settings changes on its own. | ||||
* | Improve includes of EditorNode (and everything else) | Yuri Sizov | 2023-04-07 | 1 | -7/+8 |
| | | | | | | Also start organizing editor-specific GUI components into a dedicated folder, `editor/gui`. Also move `editor_file_server` next to the rest of debugger classes. | ||||
* | Fix premature theme item access in editor tools | Yuri Sizov | 2023-04-03 | 1 | -7/+4 |
| | |||||
* | Fix error when opening Inspector's dots menu | Haoyu Qiu | 2023-03-16 | 1 | -2/+1 |
| | | | | | | | | | | When the inspector is empty, opening the "extra resource options" menu produces a error: > Condition "current_res.is_null()" is true. Opening the mneu with no current resource is valid use case, so `ERR_FAIL_COND` should not be used. | ||||
* | Fix corrupt undo after making sub-resources unique | kobewi | 2023-02-13 | 1 | -1/+1 |
| | |||||
* | Rework EditorPlugin editing logic | kobewi | 2023-01-22 | 1 | -2/+1 |
| | |||||
* | Add EditorUndoRedoManager singleton | kobewi | 2023-01-16 | 1 | -2/+2 |
| | |||||
* | Add Show in FileSystem option in the inspector | kobewi | 2023-01-08 | 1 | -0/+11 |
| | |||||
* | Merge pull request #70923 from KoBeWi/actual_resource | Rémi Verschelde | 2023-01-08 | 1 | -19/+12 |
|\ | | | | | | | Refactor inspector code for getting resource | ||||
| * | Refactor inspector code for getting resource | kobewi | 2023-01-04 | 1 | -19/+12 |
| | | |||||
* | | Fix unreadable text in Make Sub-Resources Unique window | Haoyu Qiu | 2023-01-06 | 1 | -4/+4 |
| | | |||||
* | | One Copyright Update to rule them all | Rémi Verschelde | 2023-01-05 | 1 | -29/+29 |
|/ | | | | | | | | | | | | | | | | | | | | As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see". | ||||
* | Merge pull request #63601 from YeldhamDev/tooltip_stuff | Rémi Verschelde | 2022-11-17 | 1 | -2/+2 |
|\ | | | | | | | Small changes to some tooltips | ||||
| * | Small changes to some tooltips | Michael Alexsander | 2022-11-12 | 1 | -2/+2 |
| | | |||||
* | | Remove more instances of 'instance' being used as a verb | VolTer | 2022-11-16 | 1 | -1/+1 |
|/ | |||||
* | Unify usage of undo_redo in editor | kobewi | 2022-11-02 | 1 | -1/+1 |
| | |||||
* | Unify usage of GLOBAL/EDITOR_GET | kobewi | 2022-10-18 | 1 | -2/+2 |
| | |||||
* | Fix MSVC warnings, rename shadowed variables, fix uninitialized values, ↵ | bruvzg | 2022-10-07 | 1 | -8/+8 |
| | | | | change warnings=all to use /W4. | ||||
* | Improvements to multi-node editing | FireForge | 2022-09-05 | 1 | -8/+6 |
| | | | | | | | | - Show revert button for properties that are not default for all selected nodes - Show property documentation tooltips - Show common class name and icon and number of selected nodes in EditorPath, e.g. "Node2D (4 Selected)" - Hide metadata for MultiNodeEdit and AnimationMultiTrackKeyEdit - Hide script for MultiNodeEdit | ||||
* | Rename `hint_tooltip` to `tooltip_text` & setget | Micky | 2022-08-27 | 1 | -9/+9 |
| | | | | | | | | `hint_tooltip` -> `tooltip_text` `set_tooltip` -> `set_tooltip_text` `_get_tooltip` -> `get_tooltip_text` Updates documentation, too. | ||||
* | Disable editing properties in foreign resources | SaracenOne | 2022-08-23 | 1 | -19/+34 |
| | | | | | | from imported scenes or objects returning true from a function named '_is_read_only' and disable resaving imported resources. | ||||
* | Add per-scene UndoRedo | kobewi | 2022-08-22 | 1 | -2/+3 |
| | |||||
* | Merge pull request #63429 from RandomShaper/indicate_overridden | Rémi Verschelde | 2022-07-31 | 1 | -0/+9 |
|\ | |||||
| * | Improve usability of non-default values in the property inspector | Pedro J. Estébanez | 2022-07-30 | 1 | -0/+9 |
| | | | | | | | | | | - Provide a visual indication that a (sub)group contains non-default (revertable) values when it's collapsed. - Add a new option to the inspector's tools menu for expanding only (sub)groups containing properties with non-default values. |